Contact Form by BestWebSoft - Version 3.28

Version Description

  • 11.12.2012 =
  • NEW : Galician language file is added to the plugin.
  • NEW : Multilanguage labels for fields is added to the plugin.
  • Update : The shortcode structure was changed.
Download this release

Release Info

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

Code changes from version 3.27 to 3.28

Files changed (56) hide show
  1. contact_form.php +374 -135
  2. css/style.css +33 -20
  3. images/gray-grad.png +0 -0
  4. js/script.js +108 -19
  5. languages/contact_form-ar.mo +0 -0
  6. languages/contact_form-ar.po +183 -109
  7. languages/contact_form-bg_BG.mo +0 -0
  8. languages/contact_form-bg_BG.po +183 -109
  9. languages/contact_form-cs_CZ.mo +0 -0
  10. languages/contact_form-cs_CZ.po +183 -109
  11. languages/contact_form-da_DK.mo +0 -0
  12. languages/contact_form-da_DK.po +184 -109
  13. languages/contact_form-de_DE.mo +0 -0
  14. languages/contact_form-de_DE.po +186 -110
  15. languages/contact_form-el_GR.mo +0 -0
  16. languages/contact_form-el_GR.po +185 -109
  17. languages/contact_form-es_ES.mo +0 -0
  18. languages/contact_form-es_ES.po +184 -109
  19. languages/contact_form-fa_IR.mo +0 -0
  20. languages/contact_form-fa_IR.po +183 -109
  21. languages/contact_form-fr_FR.mo +0 -0
  22. languages/contact_form-fr_FR.po +185 -109
  23. languages/contact_form-gl_ES.mo +0 -0
  24. languages/contact_form-gl_ES.po +442 -0
  25. languages/contact_form-he_IL.mo +0 -0
  26. languages/contact_form-he_IL.po +194 -119
  27. languages/contact_form-hi_IN.mo +0 -0
  28. languages/contact_form-hi_IN.po +183 -109
  29. languages/contact_form-it_IT.mo +0 -0
  30. languages/contact_form-it_IT.po +183 -109
  31. languages/contact_form-ja.mo +0 -0
  32. languages/contact_form-ja.po +182 -109
  33. languages/contact_form-lt_LT.mo +0 -0
  34. languages/contact_form-lt_LT.po +183 -109
  35. languages/contact_form-nb_NO.mo +0 -0
  36. languages/contact_form-nb_NO.po +184 -109
  37. languages/contact_form-nl_NL.mo +0 -0
  38. languages/contact_form-nl_NL.po +183 -109
  39. languages/contact_form-pl_PL.mo +0 -0
  40. languages/contact_form-pl_PL.po +194 -119
  41. languages/contact_form-pt_BR.mo +0 -0
  42. languages/contact_form-pt_BR.po +184 -110
  43. languages/contact_form-pt_PT.mo +0 -0
  44. languages/contact_form-pt_PT.po +184 -110
  45. languages/contact_form-ro_RO.mo +0 -0
  46. languages/contact_form-ro_RO.po +183 -109
  47. languages/contact_form-ru_RU.mo +0 -0
  48. languages/contact_form-ru_RU.po +183 -109
  49. languages/contact_form-sr_RS.mo +0 -0
  50. languages/contact_form-sr_RS.po +183 -109
  51. languages/contact_form-sv_SE.mo +0 -0
  52. languages/contact_form-sv_SE.po +184 -109
  53. languages/contact_form-tr_TR.mo +0 -0
  54. languages/contact_form-tr_TR.po +183 -109
  55. readme.txt +10 -1
  56. screenshot-4.jpg +0 -0
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.27
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -115,12 +115,14 @@ if( ! function_exists( 'cntctfrm_admin_menu' ) ) {
115
  // Register settings for plugin
116
  if( ! function_exists( 'cntctfrm_settings' ) ) {
117
  function cntctfrm_settings() {
118
- global $cntctfrm_options;
119
 
120
  $cntctfrm_option_defaults = array(
121
  'cntctfrm_user_email' => 'admin',
122
  'cntctfrm_custom_email' => '',
123
  'cntctfrm_select_email' => 'user',
 
 
124
  'cntctfrm_additions_options' => 0,
125
  'cntctfrm_attachment' => 0,
126
  'cntctfrm_attachment_explanations' => 1,
@@ -138,21 +140,49 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
138
  'cntctfrm_mail_method' => 'wp-mail',
139
  'cntctfrm_display_coming_from' => 1,
140
  'cntctfrm_display_user_agent' => 1,
 
141
  'cntctfrm_change_label' => 0,
142
- 'cntctfrm_name_label' => __( "Name:", 'contact_form' ),
143
- 'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
144
- 'cntctfrm_phone_label' => __( "Phone:", 'contact_form' ),
145
- 'cntctfrm_subject_label' => __( "Subject:", 'contact_form' ),
146
- 'cntctfrm_message_label' => __( "Message:", 'contact_form' ),
147
- 'cntctfrm_attachment_label' => __( "Attachment:", 'contact_form' ),
 
 
 
 
 
 
 
 
 
148
  'cntctfrm_action_after_send' => 1,
149
- 'cntctfrm_thank_text' => __( "Thank you for contacting us.", 'contact_form' ),
150
  'cntctfrm_redirect_url' => ''
151
  );
152
  if( ! get_option( 'cntctfrm_options' ) )
153
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults, '', 'yes' );
154
 
155
  $cntctfrm_options = get_option( 'cntctfrm_options' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  $cntctfrm_options = array_merge( $cntctfrm_option_defaults, $cntctfrm_options );
157
  update_option( 'cntctfrm_options', $cntctfrm_options );
158
  }
@@ -171,6 +201,8 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
171
  $cntctfrm_options_submit['cntctfrm_user_email'] = $_REQUEST['cntctfrm_user_email'];
172
  $cntctfrm_options_submit['cntctfrm_custom_email'] = stripslashes( $_REQUEST['cntctfrm_custom_email'] );
173
  $cntctfrm_options_submit['cntctfrm_select_email'] = $_REQUEST['cntctfrm_select_email'];
 
 
174
  $cntctfrm_options_submit['cntctfrm_additions_options'] = isset( $_REQUEST['cntctfrm_additions_options']) ? $_REQUEST['cntctfrm_additions_options'] : 0;
175
  if($cntctfrm_options_submit['cntctfrm_additions_options'] == 0) {
176
  $cntctfrm_options_submit['cntctfrm_attachment'] = 0;
@@ -190,29 +222,59 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
190
  $cntctfrm_options_submit['cntctfrm_display_coming_from'] = 1;
191
  $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
192
  $cntctfrm_options_submit['cntctfrm_change_label'] = 0;
193
- $cntctfrm_options_submit['cntctfrm_name_label'] = __( "Name:", 'contact_form' );
194
- $cntctfrm_options_submit['cntctfrm_email_label'] = __( "E-Mail Address:", 'contact_form' );
195
- $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
196
- $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
197
- $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
198
  $cntctfrm_options_submit['cntctfrm_action_after_send'] = 1;
199
- $cntctfrm_options_submit['cntctfrm_thank_text'] = __( "Thank you for contacting us.", 'contact_form' );
200
- $cntctfrm_options_submit['cntctfrm_redirect_url'] = '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  } else {
202
- $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
203
- $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
204
- $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_REQUEST['cntctfrm_send_copy']) ? $_REQUEST['cntctfrm_send_copy'] : 0;
205
- $cntctfrm_options_submit['cntctfrm_from_field'] = $_REQUEST['cntctfrm_from_field'];
206
- $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
207
- $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
208
- $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_REQUEST['cntctfrm_display_add_info']) ? 1 : 0;
209
- $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_REQUEST['cntctfrm_change_label']) ? 1 : 0;
210
  $cntctfrm_options_submit['cntctfrm_display_phone_field'] = isset( $_REQUEST['cntctfrm_display_phone_field']) ? 1 : 0;
211
  $cntctfrm_options_submit['cntctfrm_required_name_field'] = isset( $_REQUEST['cntctfrm_required_name_field']) ? 1 : 0;
212
  $cntctfrm_options_submit['cntctfrm_required_email_field'] = isset( $_REQUEST['cntctfrm_required_email_field']) ? 1 : 0;
213
  $cntctfrm_options_submit['cntctfrm_required_phone_field'] = isset( $_REQUEST['cntctfrm_required_phone_field']) ? 1 : 0;
214
- $cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_REQUEST['cntctfrm_required_subject_field']) ? 1 : 0;
215
- $cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_REQUEST['cntctfrm_required_message_field']) ? 1 : 0;
216
 
217
  if( $cntctfrm_options_submit['cntctfrm_display_add_info'] == 1 ) {
218
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_REQUEST['cntctfrm_display_sent_from']) ? 1 : 0;
@@ -227,25 +289,66 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
227
  $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
228
  }
229
  if( $cntctfrm_options_submit['cntctfrm_change_label'] == 1 ) {
230
- $cntctfrm_options_submit['cntctfrm_name_label'] = isset( $_REQUEST['cntctfrm_name_label']) ? $_REQUEST['cntctfrm_name_label'] : $cntctfrm_options_submit['cntctfrm_name_label'];
231
- $cntctfrm_options_submit['cntctfrm_email_label'] = isset( $_REQUEST['cntctfrm_email_label']) ? $_REQUEST['cntctfrm_email_label'] : $cntctfrm_options_submit['cntctfrm_email_label'];
232
- $cntctfrm_options_submit['cntctfrm_phone_label'] = isset( $_REQUEST['cntctfrm_phone_label']) ? $_REQUEST['cntctfrm_phone_label'] : $cntctfrm_options_submit['cntctfrm_phone_label'];
233
- $cntctfrm_options_submit['cntctfrm_subject_label'] = isset( $_REQUEST['cntctfrm_subject_label']) ? $_REQUEST['cntctfrm_subject_label'] : $cntctfrm_options_submit['cntctfrm_subject_label'];
234
- $cntctfrm_options_submit['cntctfrm_message_label'] = isset( $_REQUEST['cntctfrm_message_label']) ? $_REQUEST['cntctfrm_message_label'] : $cntctfrm_options_submit['cntctfrm_message_label'];
235
- $cntctfrm_options_submit['cntctfrm_attachment_label'] = isset( $_REQUEST['cntctfrm_attachment_label']) ? $_REQUEST['cntctfrm_attachment_label'] : $cntctfrm_options_submit['cntctfrm_attachment_label'];
 
 
 
 
 
 
 
 
 
 
 
 
236
  }
237
  else {
238
- $cntctfrm_options_submit['cntctfrm_name_label'] = __( "Name:", 'contact_form' );
239
- $cntctfrm_options_submit['cntctfrm_email_label'] = __( "E-Mail Address:", 'contact_form' );
240
- $cntctfrm_options_submit['cntctfrm_phone_label'] = __( "Phone:", 'contact_form' );
241
- $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
242
- $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
243
- $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  }
245
  $cntctfrm_options_submit['cntctfrm_action_after_send'] = $_REQUEST['cntctfrm_action_after_send'];
246
- $cntctfrm_options_submit['cntctfrm_thank_text'] = $_REQUEST['cntctfrm_thank_text'];
247
- $cntctfrm_options_submit['cntctfrm_redirect_url'] = $_REQUEST['cntctfrm_redirect_url'];
248
- }
249
  $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
250
  if( $cntctfrm_options_submit['cntctfrm_action_after_send'] == 0
251
  && ( trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] ) == ""
@@ -254,32 +357,44 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
254
  $cntctfrm_options['cntctfrm_action_after_send'] = 1;
255
  }
256
  if( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
257
- if( function_exists('get_userdatabylogin') && false !== get_userdatabylogin( $cntctfrm_options_submit['cntctfrm_user_email'] ) )
258
- {
259
- update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
260
- $message = __( "Options saved.", 'contact_form' );
261
  }
262
- else if( false !== get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
263
- {
264
- update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
265
- $message = __( "Options saved.", 'contact_form' );
266
  }
267
  else {
268
  $error .=__( "Such user is not exist. Settings are not saved.", 'contact_form' );
269
  }
270
  }
271
  else {
272
- 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'] ) ) ) {
273
- update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
274
- $message = __( "Options saved.", 'contact_form' );
275
- }
276
- else {
277
- var_dump($cntctfrm_options_submit['cntctfrm_custom_email']);
278
  $error .= __( "Please input correct email. Settings are not saved.", 'contact_form' );
279
  }
280
  }
 
 
 
 
 
 
 
 
 
 
281
  }
282
  // Display form on the setting page
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  ?>
284
  <div class="wrap">
285
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
@@ -288,16 +403,14 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
288
  <div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
289
  <form method="post" action="admin.php?page=contact_form.php">
290
  <span style="margin-bottom:15px;">
291
- <p><?php _e( "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:", 'contact_form' ); ?> [contact_form]</p>
292
  <?php _e( "If information in the below fields are empty then the message will be send to an address which was specified during registration.", 'contact_form' ); ?>
293
  </span>
294
  <table class="form-table">
295
  <tr valign="top">
296
  <th scope="row" style="width:195px;"><?php _e( "Use email of wordpress user:", 'contact_form' ); ?> </th>
297
- <td style="width:15px;">
298
  <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if($cntctfrm_options['cntctfrm_select_email'] == 'user') echo "checked=\"checked\" "; ?>/>
299
- </td>
300
- <td>
301
  <select name="cntctfrm_user_email">
302
  <option disabled><?php _e( "Select user name", 'contact_form' ); ?></option>
303
  <?php while( list( $key, $value ) = each( $userslogin ) ) { ?>
@@ -309,11 +422,8 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
309
  </tr>
310
  <tr valign="top">
311
  <th scope="row" style="width:195px;"><?php _e( "Use this email:", 'contact_form' ); ?> </th>
312
- <td>
313
- <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if($cntctfrm_options['cntctfrm_select_email'] == 'custom') echo "checked=\"checked\" "; ?>/>
314
- </td>
315
- <td>
316
- <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" onfocus="document.getElementById('cntctfrm_select_email_custom').checked = true;" />
317
  <span class="cntctfrm_info"><?php _e( "Set an email address which will be used for messages receiving.", 'contact_form' ); ?></span>
318
  </td>
319
  </tr>
@@ -322,20 +432,14 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
322
  </tr>
323
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
324
  <th scope="row" style="width:195px;"><?php _e( "Display Attachment block", 'contact_form' ); ?></th>
325
- <td>
326
- <input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if($cntctfrm_options['cntctfrm_attachment'] == '1') echo "checked=\"checked\" "; ?>/>
327
- </td>
328
- <td>
329
- <span class="cntctfrm_info"><?php echo __( "Users can attach files of the following types", 'contact_form' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, xls, zip, rar, wav, mp3, ppt"; ?></span>
330
  </td>
331
  </tr>
332
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
333
  <th scope="row" style="width:195px;"><?php _e( "Display Attachment explanations", 'contact_form' ); ?></th>
334
- <td>
335
- <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if( $cntctfrm_options['cntctfrm_attachment_explanations'] == '1' && $cntctfrm_options['cntctfrm_attachment'] == '1' ) echo "checked=\"checked\" "; ?>/>
336
- </td>
337
- <td>
338
- <span class="cntctfrm_info"><?php echo __( "Display explanations after Attachment block", 'contact_form' ); ?></span>
339
  </td>
340
  </tr>
341
  <tr valign="top" class="cntctfrm_additions_block <?php if( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
@@ -346,84 +450,155 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
346
  </tr>
347
  <tr class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
348
  <th rowspan="2"><?php _e( 'What use?', 'contact_form' ); ?></th>
349
- <td>
350
  <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php if( $cntctfrm_options['cntctfrm_mail_method'] == 'wp-mail' ) echo "checked=\"checked\" "; ?>/>
351
- </td>
352
- <td>
353
  <?php _e( 'Wp-mail', 'mail-send' ); ?>
354
  <span class="cntctfrm_info">(<?php _e( 'To send mail you can use the wordpress wp_mail function', 'mail_send' ); ?>)</span>
355
  </td>
356
  </tr>
357
  <tr class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
358
- <td>
359
  <input type='radio' name='cntctfrm_mail_method' value='mail' <?php if($cntctfrm_options['cntctfrm_mail_method'] == 'mail') echo "checked=\"checked\" "; ?>/>
360
- </td>
361
- <td>
362
  <?php _e( 'Mail', 'mail-send' ); ?>
363
  <span class="cntctfrm_info">(<?php _e( 'To send mail you can use the php mail function', 'mail_send' ); ?>)</span>
364
  </td>
365
  </tr>
366
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
367
- <th scope="row" style="width:195px;"><?php _e( "Change FROM fields of the contact form", 'contact_form' ); ?></th>
368
  <td colspan="2">
369
  <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" /><br />
370
  </td>
371
  </tr>
 
 
 
 
 
 
 
 
372
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
373
  <th scope="row" style="width:195px;"><?php _e( "Display phone field", 'contact_form' ); ?></th>
374
- <td>
375
  <input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/>
376
  </td>
377
  </tr>
378
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
379
  <th scope="row" style="width:195px;"><?php _e( "Required field", 'contact_form' ); ?></th>
380
- <td>
381
- <input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_name_field'] == '1') echo "checked=\"checked\" "; ?>/><br />
382
- <input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_email_field'] == '1') echo "checked=\"checked\" "; ?>/><br />
383
- <input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_phone_field'] == '1') echo "checked=\"checked\" "; ?>/><br />
384
- <input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_subject_field'] == '1') echo "checked=\"checked\" "; ?>/><br />
385
- <input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_message_field'] == '1') echo "checked=\"checked\" "; ?>/>
386
- </td>
387
- <td>
388
- <span class="cntctfrm_info"><?php _e( "Name", 'contact_form' ); ?></span><br />
389
- <span class="cntctfrm_info"><?php _e( "E-Mail Address", 'contact_form' ); ?></span><br />
390
- <span class="cntctfrm_info"><?php _e( "Phone", 'contact_form' ); ?></span><br />
391
- <span class="cntctfrm_info"><?php _e( "Subject", 'contact_form' ); ?></span><br />
392
- <span class="cntctfrm_info"><?php _e( "Message", 'contact_form' ); ?></span>
393
  </td>
394
  </tr>
395
- <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
396
  <th scope="row" style="width:195px;"><?php _e( "Display additional info in email", 'contact_form' ); ?></th>
397
- <td>
398
  <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '1') echo "checked=\"checked\" "; ?>/>
399
  </td>
400
- <td class="cntctfrm_display_add_info_block <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '0') echo "cntctfrm_hidden"; ?>">
401
- <input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php if($cntctfrm_options['cntctfrm_display_sent_from'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Sent from (ip address)", 'contact_form' ); ?></span><br />
402
- <input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php if($cntctfrm_options['cntctfrm_display_date_time'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Date/Time", 'contact_form' ); ?></span><br />
403
- <input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php if($cntctfrm_options['cntctfrm_display_coming_from'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Coming from (referer)", 'contact_form' ); ?></span><br />
404
- <input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php if($cntctfrm_options['cntctfrm_display_user_agent'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Using (user agent)", 'contact_form' ); ?></span><br />
405
  </td>
406
  </tr>
407
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
408
- <th scope="row" style="width:195px;"><?php _e( "Change label for fields of the contact form", 'contact_form' ); ?></th>
409
- <td>
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if($cntctfrm_options['cntctfrm_change_label'] == '1') echo "checked=\"checked\" "; ?>/>
411
  </td>
412
  <td class="cntctfrm_change_label_block <?php if($cntctfrm_options['cntctfrm_change_label'] == '0') echo "cntctfrm_hidden"; ?>">
413
- <input type="text" name="cntctfrm_name_label" value="<?php echo $cntctfrm_options['cntctfrm_name_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", 'contact_form' ); ?></span><br />
414
- <input type="text" name="cntctfrm_email_label" value="<?php echo $cntctfrm_options['cntctfrm_email_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "E-Mail Address:", 'contact_form' ); ?></span><br />
415
- <input type="text" name="cntctfrm_phone_label" value="<?php echo $cntctfrm_options['cntctfrm_phone_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Phone:", 'contact_form' ); ?></span><br />
416
- <input type="text" name="cntctfrm_subject_label" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", 'contact_form' ); ?></span><br />
417
- <input type="text" name="cntctfrm_message_label" value="<?php echo $cntctfrm_options['cntctfrm_message_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", 'contact_form' ); ?></span><br />
418
- <input type="text" name="cntctfrm_attachment_label" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  </td>
420
  </tr>
421
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
422
  <th scope="row" style="width:195px;"><?php _e( "Action after the send mail", 'contact_form' ); ?></th>
423
  <td colspan="2" class="cntctfrm_action_after_send_block">
424
- <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Display text", 'contact_form' ); ?></span><br />
425
- <input type="text" name="cntctfrm_thank_text" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", 'contact_form' ); ?></span><br />
426
- <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="0" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '0') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Redirect to page", 'contact_form' ); ?></span><br />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  <input type="text" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" /> <span class="cntctfrm_info"><?php _e( "Url", 'contact_form' ); ?></span><br />
428
  </td>
429
  </table>
@@ -440,8 +615,9 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
440
 
441
  // Display contact form in front end - page or post
442
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
443
- function cntctfrm_display_form() {
444
  global $error_message, $cntctfrm_options, $cntctfrm_result;
 
445
  $cntctfrm_options = get_option( 'cntctfrm_options' );
446
  $content = "";
447
 
@@ -460,7 +636,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
460
  if( true === $cntctfrm_result ) {
461
  $_SESSION['cntctfrm_send_mail'] = true;
462
  if( $cntctfrm_options['cntctfrm_action_after_send'] == 1 )
463
- $content .= $cntctfrm_options['cntctfrm_thank_text'];
464
  else
465
  $content .= "<script type='text/javascript'>window.location.href = '".$cntctfrm_options['cntctfrm_redirect_url']."';</script>";
466
  }
@@ -477,7 +653,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
477
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_form'].'</div>';
478
  }
479
  $content .= '<div style="text-align: left; padding-top: 5px;">
480
- <label for="cntctfrm_contact_name">'. $cntctfrm_options['cntctfrm_name_label'] . ( $cntctfrm_options['cntctfrm_required_name_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
481
  </div>';
482
  if( isset( $error_message['error_name'] ) ) {
483
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_name'].'</div>';
@@ -487,7 +663,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
487
  </div>
488
 
489
  <div style="text-align: left;">
490
- <label for="cntctfrm_contact_email">'. $cntctfrm_options['cntctfrm_email_label'] . ( $cntctfrm_options['cntctfrm_required_email_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
491
  </div>';
492
  if( isset( $error_message['error_email'] ) ) {
493
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_email'].'</div>';
@@ -498,7 +674,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
498
  ';
499
  if( $cntctfrm_options['cntctfrm_display_phone_field'] == 1 ) {
500
  $content .= '<div style="text-align: left;">
501
- <label for="cntctfrm_contact_phone">'. $cntctfrm_options['cntctfrm_phone_label'] . ( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
502
  </div>';
503
  if( isset( $error_message['error_phone'] ) ) {
504
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_phone'].'</div>';
@@ -509,7 +685,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
509
  ';
510
  }
511
  $content .= '<div style="text-align: left;">
512
- <label for="cntctfrm_contact_subject">'. $cntctfrm_options['cntctfrm_subject_label'] . ( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
513
  </div>';
514
  if( isset( $error_message['error_subject'] ) ) {
515
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_subject'].'</div>';
@@ -519,7 +695,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
519
  </div>
520
 
521
  <div style="text-align: left;">
522
- <label for="cntctfrm_contact_message">'. $cntctfrm_options['cntctfrm_message_label'] . ( $cntctfrm_options['cntctfrm_required_message_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
523
  </div>';
524
  if( isset( $error_message['error_message'] ) ) {
525
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_message'].'</div>';
@@ -529,7 +705,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
529
  </div>';
530
  if($cntctfrm_options['cntctfrm_attachment'] == 1 ) {
531
  $content .= '<div style="text-align: left;">
532
- <label for="cntctfrm_contact_attachment">'. $cntctfrm_options['cntctfrm_attachment_label'] . '</label>
533
  </div>';
534
  if( isset( $error_message['error_attachment'] ) ) {
535
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_attachment'].'</div>';
@@ -555,7 +731,8 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
555
 
556
  $content .= '<div style="text-align: left; padding-top: 8px;">
557
  <input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.26" />
558
- <input type="submit" value="'. __( "Submit", 'contact_form' ). '" style="cursor: pointer; margin: 0pt; text-align: center;margin-bottom:10px;" />
 
559
  </div>
560
  </form>';
561
  }
@@ -567,8 +744,7 @@ if( ! function_exists( 'cntctfrm_check_and_send' ) ) {
567
  function cntctfrm_check_and_send() {
568
  global $cntctfrm_result;
569
  $cntctfrm_options = get_option( 'cntctfrm_options' );
570
- if( isset( $_REQUEST['cntctfrm_contact_action'] ) )
571
- {
572
  // Check all input data
573
  $cntctfrm_result = cntctfrm_check_form();
574
  }
@@ -588,6 +764,8 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
588
  function cntctfrm_check_form() {
589
  global $error_message;
590
  global $cntctfrm_options;
 
 
591
  $path_of_uploaded_file = '';
592
  if( empty( $cntctfrm_options ) )
593
  $cntctfrm_options = get_option( 'cntctfrm_options' );
@@ -595,16 +773,16 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
595
  // Error messages array
596
  $error_message = array();
597
  if( $cntctfrm_options['cntctfrm_required_name_field'] == 1 )
598
- $error_message['error_name'] = __( "Your name is required.", 'contact_form' );
599
  if( $cntctfrm_options['cntctfrm_required_email_field'] == 1 )
600
- $error_message['error_email'] = __( "A proper e-mail address is required.", 'contact_form' );
601
  if( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 )
602
- $error_message['error_subject'] = __( "Subject text is required.", 'contact_form' );
603
  if( $cntctfrm_options['cntctfrm_required_message_field'] == 1 )
604
- $error_message['error_message'] = __( "Message text is required.", 'contact_form' );
605
  if( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 )
606
- $error_message['error_phone'] = __( "Phone is required field.", 'contact_form' );
607
- $error_message['error_form'] = __( "Please make corrections below and try again.", 'contact_form' );
608
  if( $cntctfrm_options['cntctfrm_attachment'] == 1 ) {
609
  global $path_of_uploaded_file;
610
  global $mime_type;
@@ -636,7 +814,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
636
  'wav'=>'audio/wav',
637
  'mp3'=>'audio/mp3',
638
  'ppt'=>'application/vnd.ms-powerpoint');
639
- $error_message['error_attachment'] = __( "Attachment is broken.", "contact_form" );
640
  }
641
  // Check information wich was input in fields
642
  if( $cntctfrm_options['cntctfrm_required_name_field'] == 1 && "" != $_REQUEST['cntctfrm_contact_name'] )
@@ -651,7 +829,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
651
  unset( $error_message['error_phone'] );
652
  // If captcha plugin exists
653
  if( ! apply_filters( 'cntctfrm_check_form', $_REQUEST ) )
654
- $error_message['error_captcha'] = __( "Please complete the CAPTCHA.", 'contact_form' );
655
  if( isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
656
  if( is_multisite() ){
657
  if( defined('UPLOADS') ) {
@@ -805,7 +983,10 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
805
  $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
806
 
807
  // Additional headers
808
- $headers .= 'From: '.stripslashes( $_REQUEST['cntctfrm_contact_email'] ). "\r\n";
 
 
 
809
  if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
810
  $attachments = array( $path_of_uploaded_file );
811
  }
@@ -823,7 +1004,10 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
823
  $message_block = $message;
824
 
825
  // Additional headers
826
- $headers .= 'From: '.stripslashes( $_REQUEST['cntctfrm_contact_email'] ). "\r\n";
 
 
 
827
 
828
  $bound_text = "jimmyP123";
829
 
@@ -859,7 +1043,10 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
859
  $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
860
 
861
  // Additional headers
862
- $headers .= 'From: '.stripslashes( $_REQUEST['cntctfrm_contact_email'] ). "\r\n";
 
 
 
863
  }
864
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
865
  @mail( stripslashes( $_REQUEST['cntctfrm_contact_email'] ), stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
@@ -935,6 +1122,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
935
  function cntctfrm_admin_head() {
936
  wp_enqueue_style( 'cntctfrmStylesheet', plugins_url( 'css/style.css', __FILE__ ) );
937
  wp_enqueue_script( 'cntctfrmScript', plugins_url( 'js/script.js', __FILE__ ) );
 
938
  }
939
  }
940
 
@@ -952,6 +1140,53 @@ function cntctfrm_email_name_filter( $data ){
952
  return $data;
953
  }
954
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
955
  add_action( 'init', 'cntctfrm_plugin_init' );
956
 
957
  add_action( 'init', 'cntctfrm_check_and_send' );
@@ -973,4 +1208,8 @@ add_action( 'admin_menu', 'cntctfrm_admin_menu' );
973
  add_filter( 'widget_text', 'do_shortcode' );
974
 
975
  add_filter( 'wp_mail_from_name', 'cntctfrm_email_name_filter', 10, 1);
 
 
 
 
976
  ?>
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.28
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
115
  // Register settings for plugin
116
  if( ! function_exists( 'cntctfrm_settings' ) ) {
117
  function cntctfrm_settings() {
118
+ global $cntctfrm_options, $cntctfrm_option_defaults;
119
 
120
  $cntctfrm_option_defaults = array(
121
  'cntctfrm_user_email' => 'admin',
122
  'cntctfrm_custom_email' => '',
123
  'cntctfrm_select_email' => 'user',
124
+ 'cntctfrm_from_email' => 'user',
125
+ 'cntctfrm_custom_from_email' => '',
126
  'cntctfrm_additions_options' => 0,
127
  'cntctfrm_attachment' => 0,
128
  'cntctfrm_attachment_explanations' => 1,
140
  'cntctfrm_mail_method' => 'wp-mail',
141
  'cntctfrm_display_coming_from' => 1,
142
  'cntctfrm_display_user_agent' => 1,
143
+ 'cntctfrm_language' => array(),
144
  'cntctfrm_change_label' => 0,
145
+ 'cntctfrm_name_label' => array( 'en' => __( "Name:", 'contact_form' ) ),
146
+ 'cntctfrm_email_label' => array( 'en' => __( "E-Mail Address:", 'contact_form' ) ),
147
+ 'cntctfrm_phone_label' => array( 'en' => __( "Phone:", 'contact_form' ) ),
148
+ 'cntctfrm_subject_label' => array( 'en' => __( "Subject:", 'contact_form' ) ),
149
+ 'cntctfrm_message_label' => array( 'en' => __( "Message:", 'contact_form' ) ),
150
+ 'cntctfrm_attachment_label' => array( 'en' => __( "Attachment:", 'contact_form' ) ),
151
+ 'cntctfrm_submit_label' => array( 'en' => __( "Submit", 'contact_form' ) ),
152
+ 'cntctfrm_name_error' => array( 'en' => __( "Your name is required.", 'contact_form' ) ),
153
+ 'cntctfrm_email_error' => array( 'en' => __( "A proper e-mail address is required.", 'contact_form' ) ),
154
+ 'cntctfrm_phone_error' => array( 'en' => __( "Subject text is required.", 'contact_form' ) ),
155
+ 'cntctfrm_subject_error' => array( 'en' => __( "Message text is required.", 'contact_form' ) ),
156
+ 'cntctfrm_message_error' => array( 'en' => __( "Phone is required field.", 'contact_form' ) ),
157
+ 'cntctfrm_attachment_error' => array( 'en' => __( "Attachment is broken.", 'contact_form' ) ),
158
+ 'cntctfrm_captcha_error' => array( 'en' => __( "Please complete the CAPTCHA.", 'contact_form' ) ),
159
+ 'cntctfrm_form_error' => array( 'en' => __( "Please make corrections below and try again.", 'contact_form' ) ),
160
  'cntctfrm_action_after_send' => 1,
161
+ 'cntctfrm_thank_text' => array( 'en' => __( "Thank you for contacting us.", 'contact_form' ) ),
162
  'cntctfrm_redirect_url' => ''
163
  );
164
  if( ! get_option( 'cntctfrm_options' ) )
165
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults, '', 'yes' );
166
 
167
  $cntctfrm_options = get_option( 'cntctfrm_options' );
168
+ if( empty( $cntctfrm_options['cntctfrm_language'] ) && ! is_array( $cntctfrm_options['cntctfrm_name_label'] ) ) {
169
+ $cntctfrm_options['cntctfrm_name_label'] = array( 'en' => $cntctfrm_options['cntctfrm_name_label'] );
170
+ $cntctfrm_options['cntctfrm_email_label'] = array( 'en' => $cntctfrm_options['cntctfrm_email_label'] );
171
+ $cntctfrm_options['cntctfrm_phone_label'] = array( 'en' => $cntctfrm_options['cntctfrm_phone_label'] );
172
+ $cntctfrm_options['cntctfrm_subject_label'] = array( 'en' => $cntctfrm_options['cntctfrm_subject_label'] );
173
+ $cntctfrm_options['cntctfrm_message_label'] = array( 'en' => $cntctfrm_options['cntctfrm_message_label'] );
174
+ $cntctfrm_options['cntctfrm_attachment_label'] = array( 'en' => $cntctfrm_options['cntctfrm_attachment_label'] );
175
+ $cntctfrm_options['cntctfrm_thank_text'] = array( 'en' => $cntctfrm_options['cntctfrm_thank_text'] );
176
+ $cntctfrm_options['cntctfrm_submit_label'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_submit_label']['en'] );
177
+ $cntctfrm_options['cntctfrm_name_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_name_error']['en'] );
178
+ $cntctfrm_options['cntctfrm_email_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_email_error']['en'] );
179
+ $cntctfrm_options['cntctfrm_phone_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_phone_error']['en'] );
180
+ $cntctfrm_options['cntctfrm_subject_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_subject_error']['en'] );
181
+ $cntctfrm_options['cntctfrm_message_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_message_error']['en'] );
182
+ $cntctfrm_options['cntctfrm_attachment_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_attachment_error']['en'] );
183
+ $cntctfrm_options['cntctfrm_captcha_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_captcha_error']['en'] );
184
+ $cntctfrm_options['cntctfrm_form_error'] = array( 'en' => $cntctfrm_option_defaults['cntctfrm_form_error']['en'] );
185
+ }
186
  $cntctfrm_options = array_merge( $cntctfrm_option_defaults, $cntctfrm_options );
187
  update_option( 'cntctfrm_options', $cntctfrm_options );
188
  }
201
  $cntctfrm_options_submit['cntctfrm_user_email'] = $_REQUEST['cntctfrm_user_email'];
202
  $cntctfrm_options_submit['cntctfrm_custom_email'] = stripslashes( $_REQUEST['cntctfrm_custom_email'] );
203
  $cntctfrm_options_submit['cntctfrm_select_email'] = $_REQUEST['cntctfrm_select_email'];
204
+ $cntctfrm_options_submit['cntctfrm_from_email'] = $_REQUEST['cntctfrm_from_email'];
205
+ $cntctfrm_options_submit['cntctfrm_custom_from_email'] = stripslashes( $_REQUEST['cntctfrm_custom_from_email'] );
206
  $cntctfrm_options_submit['cntctfrm_additions_options'] = isset( $_REQUEST['cntctfrm_additions_options']) ? $_REQUEST['cntctfrm_additions_options'] : 0;
207
  if($cntctfrm_options_submit['cntctfrm_additions_options'] == 0) {
208
  $cntctfrm_options_submit['cntctfrm_attachment'] = 0;
222
  $cntctfrm_options_submit['cntctfrm_display_coming_from'] = 1;
223
  $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
224
  $cntctfrm_options_submit['cntctfrm_change_label'] = 0;
 
 
 
 
 
225
  $cntctfrm_options_submit['cntctfrm_action_after_send'] = 1;
226
+ if( empty( $cntctfrm_options['cntctfrm_language'] ) ) {
227
+ $cntctfrm_options_submit['cntctfrm_name_label'] = $cntctfrm_option_defaults['cntctfrm_name_label'];
228
+ $cntctfrm_options_submit['cntctfrm_email_label'] = $cntctfrm_option_defaults['cntctfrm_email_label'];
229
+ $cntctfrm_options_submit['cntctfrm_phone_label'] = $cntctfrm_option_defaults['cntctfrm_phone_label'];
230
+ $cntctfrm_options_submit['cntctfrm_subject_label'] = $cntctfrm_option_defaults['cntctfrm_subject_label'];
231
+ $cntctfrm_options_submit['cntctfrm_message_label'] = $cntctfrm_option_defaults['cntctfrm_message_label'];
232
+ $cntctfrm_options_submit['cntctfrm_attachment_label'] = $cntctfrm_option_defaults['cntctfrm_attachment_label'];
233
+ $cntctfrm_options_submit['cntctfrm_thank_text'] = $cntctfrm_option_defaults['cntctfrm_thank_text'];
234
+ $cntctfrm_options_submit['cntctfrm_submit_label'] = $cntctfrm_option_defaults['cntctfrm_submit_label'];
235
+ $cntctfrm_options_submit['cntctfrm_name_error'] = $cntctfrm_option_defaults['cntctfrm_name_error'];
236
+ $cntctfrm_options_submit['cntctfrm_email_error'] = $cntctfrm_option_defaults['cntctfrm_email_error'];
237
+ $cntctfrm_options_submit['cntctfrm_phone_error'] = $cntctfrm_option_defaults['cntctfrm_phone_error'];
238
+ $cntctfrm_options_submit['cntctfrm_subject_error'] = $cntctfrm_option_defaults['cntctfrm_subject_error'];
239
+ $cntctfrm_options_submit['cntctfrm_message_error'] = $cntctfrm_option_defaults['cntctfrm_message_error'];
240
+ $cntctfrm_options_submit['cntctfrm_attachment_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_error'];
241
+ $cntctfrm_options_submit['cntctfrm_captcha_error'] = $cntctfrm_option_defaults['cntctfrm_captcha_error'];
242
+ $cntctfrm_options_submit['cntctfrm_form_error'] = $cntctfrm_option_defaults['cntctfrm_form_error'];
243
+ }
244
+ else{
245
+ $cntctfrm_options_submit['cntctfrm_name_label']['en'] = $cntctfrm_option_defaults['cntctfrm_name_label']['en'];
246
+ $cntctfrm_options_submit['cntctfrm_email_label']['en'] = $cntctfrm_option_defaults['cntctfrm_email_label']['en'];
247
+ $cntctfrm_options_submit['cntctfrm_phone_label']['en'] = $cntctfrm_option_defaults['cntctfrm_phone_label']['en'];
248
+ $cntctfrm_options_submit['cntctfrm_subject_label']['en'] = $cntctfrm_option_defaults['cntctfrm_subject_label']['en'];
249
+ $cntctfrm_options_submit['cntctfrm_message_label']['en'] = $cntctfrm_option_defaults['cntctfrm_message_label']['en'];
250
+ $cntctfrm_options_submit['cntctfrm_attachment_label']['en'] = $cntctfrm_option_defaults['cntctfrm_attachment_label']['en'];
251
+ $cntctfrm_options_submit['cntctfrm_thank_text']['en'] = $cntctfrm_option_defaults['cntctfrm_thank_text']['en'];
252
+ $cntctfrm_options_submit['cntctfrm_submit_label']['en'] = $cntctfrm_option_defaults['cntctfrm_submit_label']['en'];
253
+ $cntctfrm_options_submit['cntctfrm_name_error']['en'] = $cntctfrm_option_defaults['cntctfrm_name_error']['en'];
254
+ $cntctfrm_options_submit['cntctfrm_email_error']['en'] = $cntctfrm_option_defaults['cntctfrm_email_error']['en'];
255
+ $cntctfrm_options_submit['cntctfrm_phone_error']['en'] = $cntctfrm_option_defaults['cntctfrm_phone_error']['en'];
256
+ $cntctfrm_options_submit['cntctfrm_subject_error']['en'] = $cntctfrm_option_defaults['cntctfrm_subject_error']['en'];
257
+ $cntctfrm_options_submit['cntctfrm_message_error']['en'] = $cntctfrm_option_defaults['cntctfrm_message_error']['en'];
258
+ $cntctfrm_options_submit['cntctfrm_attachment_error']['en'] = $cntctfrm_option_defaults['cntctfrm_attachment_error']['en'];
259
+ $cntctfrm_options_submit['cntctfrm_captcha_error']['en'] = $cntctfrm_option_defaults['cntctfrm_captcha_error']['en'];
260
+ $cntctfrm_options_submit['cntctfrm_form_error']['en'] = $cntctfrm_option_defaults['cntctfrm_form_error']['en'];
261
+ }
262
+ $cntctfrm_options_submit['cntctfrm_redirect_url'] = '';
263
  } else {
264
+ $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
265
+ $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
266
+ $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_REQUEST['cntctfrm_send_copy']) ? $_REQUEST['cntctfrm_send_copy'] : 0;
267
+ $cntctfrm_options_submit['cntctfrm_from_field'] = $_REQUEST['cntctfrm_from_field'];
268
+ $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
269
+ $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
270
+ $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_REQUEST['cntctfrm_display_add_info']) ? 1 : 0;
271
+ $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_REQUEST['cntctfrm_change_label']) ? 1 : 0;
272
  $cntctfrm_options_submit['cntctfrm_display_phone_field'] = isset( $_REQUEST['cntctfrm_display_phone_field']) ? 1 : 0;
273
  $cntctfrm_options_submit['cntctfrm_required_name_field'] = isset( $_REQUEST['cntctfrm_required_name_field']) ? 1 : 0;
274
  $cntctfrm_options_submit['cntctfrm_required_email_field'] = isset( $_REQUEST['cntctfrm_required_email_field']) ? 1 : 0;
275
  $cntctfrm_options_submit['cntctfrm_required_phone_field'] = isset( $_REQUEST['cntctfrm_required_phone_field']) ? 1 : 0;
276
+ $cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_REQUEST['cntctfrm_required_subject_field']) ? 1 : 0;
277
+ $cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_REQUEST['cntctfrm_required_message_field']) ? 1 : 0;
278
 
279
  if( $cntctfrm_options_submit['cntctfrm_display_add_info'] == 1 ) {
280
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_REQUEST['cntctfrm_display_sent_from']) ? 1 : 0;
289
  $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
290
  }
291
  if( $cntctfrm_options_submit['cntctfrm_change_label'] == 1 ) {
292
+ foreach( $_REQUEST['cntctfrm_name_label'] as $key=>$val ){
293
+ $cntctfrm_options_submit['cntctfrm_name_label'][$key] = $_REQUEST['cntctfrm_name_label'][$key];
294
+ $cntctfrm_options_submit['cntctfrm_email_label'][$key] = $_REQUEST['cntctfrm_email_label'][$key];
295
+ $cntctfrm_options_submit['cntctfrm_phone_label'][$key] = $_REQUEST['cntctfrm_phone_label'][$key];
296
+ $cntctfrm_options_submit['cntctfrm_subject_label'][$key] = $_REQUEST['cntctfrm_subject_label'][$key];
297
+ $cntctfrm_options_submit['cntctfrm_message_label'][$key] = $_REQUEST['cntctfrm_message_label'][$key];
298
+ $cntctfrm_options_submit['cntctfrm_attachment_label'][$key] = $_REQUEST['cntctfrm_attachment_label'][$key];
299
+ $cntctfrm_options_submit['cntctfrm_thank_text'][$key] = $_REQUEST['cntctfrm_thank_text'][$key];
300
+ $cntctfrm_options_submit['cntctfrm_submit_label'][$key] = $_REQUEST['cntctfrm_submit_label'][$key];
301
+ $cntctfrm_options_submit['cntctfrm_name_error'][$key] = $_REQUEST['cntctfrm_name_error'][$key];
302
+ $cntctfrm_options_submit['cntctfrm_email_error'][$key] = $_REQUEST['cntctfrm_email_error'][$key];
303
+ $cntctfrm_options_submit['cntctfrm_phone_error'][$key] = $_REQUEST['cntctfrm_phone_error'][$key];
304
+ $cntctfrm_options_submit['cntctfrm_subject_error'][$key] = $_REQUEST['cntctfrm_subject_error'][$key];
305
+ $cntctfrm_options_submit['cntctfrm_message_error'][$key] = $_REQUEST['cntctfrm_message_error'][$key];
306
+ $cntctfrm_options_submit['cntctfrm_attachment_error'][$key] = $_REQUEST['cntctfrm_attachment_error'][$key];
307
+ $cntctfrm_options_submit['cntctfrm_captcha_error'][$key] = $_REQUEST['cntctfrm_captcha_error'][$key];
308
+ $cntctfrm_options_submit['cntctfrm_form_error'][$key] = $_REQUEST['cntctfrm_form_error'][$key];
309
+ }
310
  }
311
  else {
312
+ if( empty( $cntctfrm_options['cntctfrm_language'] ) ) {
313
+ $cntctfrm_options_submit['cntctfrm_name_label'] = $cntctfrm_option_defaults['cntctfrm_name_label'];
314
+ $cntctfrm_options_submit['cntctfrm_email_label'] = $cntctfrm_option_defaults['cntctfrm_email_label'];
315
+ $cntctfrm_options_submit['cntctfrm_phone_label'] = $cntctfrm_option_defaults['cntctfrm_phone_label'];
316
+ $cntctfrm_options_submit['cntctfrm_subject_label'] = $cntctfrm_option_defaults['cntctfrm_subject_label'];
317
+ $cntctfrm_options_submit['cntctfrm_message_label'] = $cntctfrm_option_defaults['cntctfrm_message_label'];
318
+ $cntctfrm_options_submit['cntctfrm_attachment_label'] = $cntctfrm_option_defaults['cntctfrm_attachment_label'];
319
+ $cntctfrm_options_submit['cntctfrm_thank_text'] = $cntctfrm_option_defaults['cntctfrm_thank_text'];
320
+ $cntctfrm_options_submit['cntctfrm_submit_label'] = $cntctfrm_option_defaults['cntctfrm_submit_label'];
321
+ $cntctfrm_options_submit['cntctfrm_name_error'] = $cntctfrm_option_defaults['cntctfrm_name_error'];
322
+ $cntctfrm_options_submit['cntctfrm_email_error'] = $cntctfrm_option_defaults['cntctfrm_email_error'];
323
+ $cntctfrm_options_submit['cntctfrm_phone_error'] = $cntctfrm_option_defaults['cntctfrm_phone_error'];
324
+ $cntctfrm_options_submit['cntctfrm_subject_error'] = $cntctfrm_option_defaults['cntctfrm_subject_error'];
325
+ $cntctfrm_options_submit['cntctfrm_message_error'] = $cntctfrm_option_defaults['cntctfrm_message_error'];
326
+ $cntctfrm_options_submit['cntctfrm_attachment_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_error'];
327
+ $cntctfrm_options_submit['cntctfrm_captcha_error'] = $cntctfrm_option_defaults['cntctfrm_captcha_error'];
328
+ $cntctfrm_options_submit['cntctfrm_form_error'] = $cntctfrm_option_defaults['cntctfrm_form_error'];
329
+ }
330
+ else{
331
+ $cntctfrm_options_submit['cntctfrm_name_label']['en'] = $cntctfrm_option_defaults['cntctfrm_name_label']['en'];
332
+ $cntctfrm_options_submit['cntctfrm_email_label']['en'] = $cntctfrm_option_defaults['cntctfrm_email_label']['en'];
333
+ $cntctfrm_options_submit['cntctfrm_phone_label']['en'] = $cntctfrm_option_defaults['cntctfrm_phone_label']['en'];
334
+ $cntctfrm_options_submit['cntctfrm_subject_label']['en'] = $cntctfrm_option_defaults['cntctfrm_subject_label']['en'];
335
+ $cntctfrm_options_submit['cntctfrm_message_label']['en'] = $cntctfrm_option_defaults['cntctfrm_message_label']['en'];
336
+ $cntctfrm_options_submit['cntctfrm_attachment_label']['en'] = $cntctfrm_option_defaults['cntctfrm_attachment_label']['en'];
337
+ $cntctfrm_options_submit['cntctfrm_thank_text']['en'] = $cntctfrm_option_defaults['cntctfrm_thank_text']['en'];
338
+ $cntctfrm_options_submit['cntctfrm_submit_label']['en'] = $cntctfrm_option_defaults['cntctfrm_submit_label']['en'];
339
+ $cntctfrm_options_submit['cntctfrm_name_error']['en'] = $cntctfrm_option_defaults['cntctfrm_name_error']['en'];
340
+ $cntctfrm_options_submit['cntctfrm_email_error']['en'] = $cntctfrm_option_defaults['cntctfrm_email_error']['en'];
341
+ $cntctfrm_options_submit['cntctfrm_phone_error']['en'] = $cntctfrm_option_defaults['cntctfrm_phone_error']['en'];
342
+ $cntctfrm_options_submit['cntctfrm_subject_error']['en'] = $cntctfrm_option_defaults['cntctfrm_subject_error']['en'];
343
+ $cntctfrm_options_submit['cntctfrm_message_error']['en'] = $cntctfrm_option_defaults['cntctfrm_message_error']['en'];
344
+ $cntctfrm_options_submit['cntctfrm_attachment_error']['en'] = $cntctfrm_option_defaults['cntctfrm_attachment_error']['en'];
345
+ $cntctfrm_options_submit['cntctfrm_captcha_error']['en'] = $cntctfrm_option_defaults['cntctfrm_captcha_error']['en'];
346
+ $cntctfrm_options_submit['cntctfrm_form_error']['en'] = $cntctfrm_option_defaults['cntctfrm_form_error']['en'];
347
+ }
348
  }
349
  $cntctfrm_options_submit['cntctfrm_action_after_send'] = $_REQUEST['cntctfrm_action_after_send'];
350
+ $cntctfrm_options_submit['cntctfrm_redirect_url'] = $_REQUEST['cntctfrm_redirect_url'];
351
+ }
 
352
  $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
353
  if( $cntctfrm_options_submit['cntctfrm_action_after_send'] == 0
354
  && ( trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] ) == ""
357
  $cntctfrm_options['cntctfrm_action_after_send'] = 1;
358
  }
359
  if( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
360
+ if( function_exists('get_userdatabylogin') && false !== get_userdatabylogin( $cntctfrm_options_submit['cntctfrm_user_email'] ) ){
 
 
 
361
  }
362
+ else if( false !== get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) ){
 
 
 
363
  }
364
  else {
365
  $error .=__( "Such user is not exist. Settings are not saved.", 'contact_form' );
366
  }
367
  }
368
  else {
369
+ 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'] ) ) ){
 
 
 
 
 
370
  $error .= __( "Please input correct email. Settings are not saved.", 'contact_form' );
371
  }
372
  }
373
+ if( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
374
+ if( $cntctfrm_options_submit['cntctfrm_custom_from_email'] == ""
375
+ && !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_from_email'] ) ) ) {
376
+ $error .= __( "Please input correct 'FROM' email. Settings are not saved.", 'contact_form' );
377
+ }
378
+ }
379
+ if( $error == '' ){
380
+ update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
381
+ $message = __( "Options saved.", 'contact_form' );
382
+ }
383
  }
384
  // Display form on the setting page
385
+ $lang_codes = array(
386
+ 'aa' => 'Afar', 'ab' => 'Abkhazian', 'af' => 'Afrikaans', 'ak' => 'Akan', 'sq' => 'Albanian', 'am' => 'Amharic', 'ar' => 'Arabic', 'an' => 'Aragonese', 'hy' => 'Armenian', 'as' => 'Assamese', 'av' => 'Avaric', 'ae' => 'Avestan', 'ay' => 'Aymara', 'az' => 'Azerbaijani', 'ba' => 'Bashkir', 'bm' => 'Bambara', 'eu' => 'Basque', 'be' => 'Belarusian', 'bn' => 'Bengali',
387
+ 'bh' => 'Bihari', 'bi' => 'Bislama', 'bs' => 'Bosnian', 'br' => 'Breton', 'bg' => 'Bulgarian', 'my' => 'Burmese', 'ca' => 'Catalan; Valencian', 'ch' => 'Chamorro', 'ce' => 'Chechen', 'zh' => 'Chinese', 'cu' => 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', 'cv' => 'Chuvash', 'kw' => 'Cornish', 'co' => 'Corsican', 'cr' => 'Cree',
388
+ 'cs' => 'Czech', 'da' => 'Danish', 'dv' => 'Divehi; Dhivehi; Maldivian', 'nl' => 'Dutch; Flemish', 'dz' => 'Dzongkha', 'eo' => 'Esperanto', 'et' => 'Estonian', 'ee' => 'Ewe', 'fo' => 'Faroese', 'fj' => 'Fijjian', 'fi' => 'Finnish', 'fr' => 'French', 'fy' => 'Western Frisian', 'ff' => 'Fulah', 'ka' => 'Georgian', 'de' => 'German', 'gd' => 'Gaelic; Scottish Gaelic',
389
+ 'ga' => 'Irish', 'gl' => 'Galician', 'gv' => 'Manx', 'el' => 'Greek, Modern', 'gn' => 'Guarani', 'gu' => 'Gujarati', 'ht' => 'Haitian; Haitian Creole', 'ha' => 'Hausa', 'he' => 'Hebrew', 'hz' => 'Herero', 'hi' => 'Hindi', 'ho' => 'Hiri Motu', 'hu' => 'Hungarian', 'ig' => 'Igbo', 'is' => 'Icelandic', 'io' => 'Ido', 'ii' => 'Sichuan Yi', 'iu' => 'Inuktitut', 'ie' => 'Interlingue',
390
+ 'ia' => 'Interlingua (International Auxiliary Language Association)', 'id' => 'Indonesian', 'ik' => 'Inupiaq', 'it' => 'Italian', 'jv' => 'Javanese', 'ja' => 'Japanese', 'kl' => 'Kalaallisut; Greenlandic', 'kn' => 'Kannada', 'ks' => 'Kashmiri', 'kr' => 'Kanuri', 'kk' => 'Kazakh', 'km' => 'Central Khmer', 'ki' => 'Kikuyu; Gikuyu', 'rw' => 'Kinyarwanda', 'ky' => 'Kirghiz; Kyrgyz',
391
+ 'kv' => 'Komi', 'kg' => 'Kongo', 'ko' => 'Korean', 'kj' => 'Kuanyama; Kwanyama', 'ku' => 'Kurdish', 'lo' => 'Lao', 'la' => 'Latin', 'lv' => 'Latvian', 'li' => 'Limburgan; Limburger; Limburgish', 'ln' => 'Lingala', 'lt' => 'Lithuanian', 'lb' => 'Luxembourgish; Letzeburgesch', 'lu' => 'Luba-Katanga', 'lg' => 'Ganda', 'mk' => 'Macedonian', 'mh' => 'Marshallese', 'ml' => 'Malayalam',
392
+ 'mi' => 'Maori', 'mr' => 'Marathi', 'ms' => 'Malay', 'mg' => 'Malagasy', 'mt' => 'Maltese', 'mo' => 'Moldavian', 'mn' => 'Mongolian', 'na' => 'Nauru', 'nv' => 'Navajo; Navaho', 'nr' => 'Ndebele, South; South Ndebele', 'nd' => 'Ndebele, North; North Ndebele', 'ng' => 'Ndonga', 'ne' => 'Nepali', 'nn' => 'Norwegian Nynorsk; Nynorsk, Norwegian', 'nb' => 'Bokmål, Norwegian, Norwegian Bokmål',
393
+ 'no' => 'Norwegian', 'ny' => 'Chichewa; Chewa; Nyanja', 'oc' => 'Occitan, Provençal', 'oj' => 'Ojibwa', 'or' => 'Oriya', 'om' => 'Oromo', 'os' => 'Ossetian; Ossetic', 'pa' => 'Panjabi; Punjabi', 'fa' => 'Persian', 'pi' => 'Pali', 'pl' => 'Polish', 'pt' => 'Portuguese', 'ps' => 'Pushto', 'qu' => 'Quechua', 'rm' => 'Romansh', 'ro' => 'Romanian', 'rn' => 'Rundi', 'ru' => 'Russian',
394
+ 'sg' => 'Sango', 'sa' => 'Sanskrit', 'sr' => 'Serbian', 'hr' => 'Croatian', 'si' => 'Sinhala; Sinhalese', 'sk' => 'Slovak', 'sl' => 'Slovenian', 'se' => 'Northern Sami', 'sm' => 'Samoan', 'sn' => 'Shona', 'sd' => 'Sindhi', 'so' => 'Somali', 'st' => 'Sotho, Southern', 'es' => 'Spanish; Castilian', 'sc' => 'Sardinian', 'ss' => 'Swati', 'su' => 'Sundanese', 'sw' => 'Swahili',
395
+ 'sv' => 'Swedish', 'ty' => 'Tahitian', 'ta' => 'Tamil', 'tt' => 'Tatar', 'te' => 'Telugu', 'tg' => 'Tajik', 'tl' => 'Tagalog', 'th' => 'Thai', 'bo' => 'Tibetan', 'ti' => 'Tigrinya', 'to' => 'Tonga (Tonga Islands)', 'tn' => 'Tswana', 'ts' => 'Tsonga', 'tk' => 'Turkmen', 'tr' => 'Turkish', 'tw' => 'Twi', 'ug' => 'Uighur; Uyghur', 'uk' => 'Ukrainian', 'ur' => 'Urdu', 'uz' => 'Uzbek',
396
+ 've' => 'Venda', 'vi' => 'Vietnamese', 'vo' => 'Volapük', 'cy' => 'Welsh','wa' => 'Walloon','wo' => 'Wolof', 'xh' => 'Xhosa', 'yi' => 'Yiddish', 'yo' => 'Yoruba', 'za' => 'Zhuang; Chuang', 'zu' => 'Zulu' );
397
+
398
  ?>
399
  <div class="wrap">
400
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
403
  <div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
404
  <form method="post" action="admin.php?page=contact_form.php">
405
  <span style="margin-bottom:15px;">
406
+ <p><?php _e( "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:", 'contact_form' ); ?> [contact_form] or [contact_form lang=en]</p>
407
  <?php _e( "If information in the below fields are empty then the message will be send to an address which was specified during registration.", 'contact_form' ); ?>
408
  </span>
409
  <table class="form-table">
410
  <tr valign="top">
411
  <th scope="row" style="width:195px;"><?php _e( "Use email of wordpress user:", 'contact_form' ); ?> </th>
412
+ <td colspan="2">
413
  <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if($cntctfrm_options['cntctfrm_select_email'] == 'user') echo "checked=\"checked\" "; ?>/>
 
 
414
  <select name="cntctfrm_user_email">
415
  <option disabled><?php _e( "Select user name", 'contact_form' ); ?></option>
416
  <?php while( list( $key, $value ) = each( $userslogin ) ) { ?>
422
  </tr>
423
  <tr valign="top">
424
  <th scope="row" style="width:195px;"><?php _e( "Use this email:", 'contact_form' ); ?> </th>
425
+ <td colspan="2">
426
+ <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if($cntctfrm_options['cntctfrm_select_email'] == 'custom') echo "checked=\"checked\" "; ?>/> <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" onfocus="document.getElementById('cntctfrm_select_email_custom').checked = true;" />
 
 
 
427
  <span class="cntctfrm_info"><?php _e( "Set an email address which will be used for messages receiving.", 'contact_form' ); ?></span>
428
  </td>
429
  </tr>
432
  </tr>
433
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
434
  <th scope="row" style="width:195px;"><?php _e( "Display Attachment block", 'contact_form' ); ?></th>
435
+ <td colspan="2">
436
+ <input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if($cntctfrm_options['cntctfrm_attachment'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php echo __( "Users can attach files of the following types", 'contact_form' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, xls, zip, rar, wav, mp3, ppt"; ?></span>
 
 
 
437
  </td>
438
  </tr>
439
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
440
  <th scope="row" style="width:195px;"><?php _e( "Display Attachment explanations", 'contact_form' ); ?></th>
441
+ <td colspan="2">
442
+ <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if( $cntctfrm_options['cntctfrm_attachment_explanations'] == '1' && $cntctfrm_options['cntctfrm_attachment'] == '1' ) echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php echo __( "Display explanations after Attachment block", 'contact_form' ); ?></span>
 
 
 
443
  </td>
444
  </tr>
445
  <tr valign="top" class="cntctfrm_additions_block <?php if( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
450
  </tr>
451
  <tr class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
452
  <th rowspan="2"><?php _e( 'What use?', 'contact_form' ); ?></th>
453
+ <td colspan="2">
454
  <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php if( $cntctfrm_options['cntctfrm_mail_method'] == 'wp-mail' ) echo "checked=\"checked\" "; ?>/>
 
 
455
  <?php _e( 'Wp-mail', 'mail-send' ); ?>
456
  <span class="cntctfrm_info">(<?php _e( 'To send mail you can use the wordpress wp_mail function', 'mail_send' ); ?>)</span>
457
  </td>
458
  </tr>
459
  <tr class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
460
+ <td colspan="2">
461
  <input type='radio' name='cntctfrm_mail_method' value='mail' <?php if($cntctfrm_options['cntctfrm_mail_method'] == 'mail') echo "checked=\"checked\" "; ?>/>
 
 
462
  <?php _e( 'Mail', 'mail-send' ); ?>
463
  <span class="cntctfrm_info">(<?php _e( 'To send mail you can use the php mail function', 'mail_send' ); ?>)</span>
464
  </td>
465
  </tr>
466
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
467
+ <th scope="row" style="width:195px;"><?php _e( "Change text for 'FROM' field of the email", 'contact_form' ); ?></th>
468
  <td colspan="2">
469
  <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" /><br />
470
  </td>
471
  </tr>
472
+ <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
473
+ <th scope="row" style="width:195px;"><?php _e( "Select email for 'FROM' field of the email", 'contact_form' ); ?></th>
474
+ <td colspan="2">
475
+ <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if( $cntctfrm_options['cntctfrm_from_email'] == 'user' ) echo "checked=\"checked\" "; ?>/> User email <span class="cntctfrm_info">(<?php _e( "In the field 'From' in the mail it will use email of that user who fills the form.", 'contact_form' ); ?>)</span><br />
476
+ <input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if($cntctfrm_options['cntctfrm_from_email'] == 'custom') echo "checked=\"checked\" "; ?>/> <input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_from_email']; ?>" onfocus="document.getElementById('cntctfrm_from_custom_email').checked = true;" />
477
+ <span class="cntctfrm_info">(<?php _e( "In the field 'From' it will use this email.", 'contact_form' ); ?>)</span>
478
+ </td>
479
+ </tr>
480
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
481
  <th scope="row" style="width:195px;"><?php _e( "Display phone field", 'contact_form' ); ?></th>
482
+ <td colspan="2">
483
  <input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/>
484
  </td>
485
  </tr>
486
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
487
  <th scope="row" style="width:195px;"><?php _e( "Required field", 'contact_form' ); ?></th>
488
+ <td colspan="2">
489
+ <input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_name_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Name", 'contact_form' ); ?><br />
490
+ <input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_email_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "E-Mail Address", 'contact_form' ); ?><br />
491
+ <input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_phone_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Phone", 'contact_form' ); ?><br />
492
+ <input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_subject_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Subject", 'contact_form' ); ?><br />
493
+ <input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_message_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Message", 'contact_form' ); ?>
 
 
 
 
 
 
 
494
  </td>
495
  </tr>
496
+ <tr valign="top" class="cntctfrm_additions_block <?php if( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
497
  <th scope="row" style="width:195px;"><?php _e( "Display additional info in email", 'contact_form' ); ?></th>
498
+ <td style="width:15px;">
499
  <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '1') echo "checked=\"checked\" "; ?>/>
500
  </td>
501
+ <td class="cntctfrm_display_add_info_block <?php if( $cntctfrm_options['cntctfrm_display_add_info'] == '0' ) echo "cntctfrm_hidden"; ?>">
502
+ <input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php if($cntctfrm_options['cntctfrm_display_sent_from'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Sent from (ip address)", 'contact_form' ); ?><br />
503
+ <input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php if($cntctfrm_options['cntctfrm_display_date_time'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Date/Time", 'contact_form' ); ?><br />
504
+ <input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php if($cntctfrm_options['cntctfrm_display_coming_from'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Coming from (referer)", 'contact_form' ); ?><br />
505
+ <input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php if($cntctfrm_options['cntctfrm_display_user_agent'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Using (user agent)", 'contact_form' ); ?><br />
506
  </td>
507
  </tr>
508
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
509
+ <th scope="row" style="width:195px;"><?php _e( "Language settings for label fields", 'contact_form' ); ?></th>
510
+ <td colspan="2">
511
+ <select name="cntctfrm_languages" id="cntctfrm_languages" style="width:300px;">
512
+ <?php foreach ( $lang_codes as $key=>$val ) {
513
+ if( in_array( $key, $cntctfrm_options['cntctfrm_language'] ) )
514
+ continue;
515
+ echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html ( $val ) . '</option>';
516
+ } ?>
517
+ </select>
518
+ <input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e('Add language', 'contact_form'); ?>" />
519
+ </td>
520
+ </tr>
521
+ <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
522
+ <th scope="row" style="width:195px;"><?php _e( "Change label for fields of the contact form and error messages", 'contact_form' ); ?></th>
523
+ <td style="width:15px;">
524
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if($cntctfrm_options['cntctfrm_change_label'] == '1') echo "checked=\"checked\" "; ?>/>
525
  </td>
526
  <td class="cntctfrm_change_label_block <?php if($cntctfrm_options['cntctfrm_change_label'] == '0') echo "cntctfrm_hidden"; ?>">
527
+ <div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_label_en"><?php _e('English', 'contact_form'); ?></div>
528
+ <?php if( ! empty( $cntctfrm_options['cntctfrm_language'] ) ){
529
+ foreach( $cntctfrm_options['cntctfrm_language'] as $val ) {
530
+ echo '<div class="cntctfrm_label_language_tab" id="cntctfrm_label_'.$val.'">'.$lang_codes[$val].' <span class="cntctfrm_delete" rel="'.$val.'">X</span></div>';
531
+ }
532
+ } ?>
533
+ <div class="clear"></div>
534
+ <div class="cntctfrm_language_tab cntctfrm_tab_en">
535
+ <input type="text" name="cntctfrm_name_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_name_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", 'contact_form' ); ?></span><br />
536
+ <input type="text" name="cntctfrm_email_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_email_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "E-Mail Address:", 'contact_form' ); ?></span><br />
537
+ <input type="text" name="cntctfrm_phone_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_phone_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Phone:", 'contact_form' ); ?></span><br />
538
+ <input type="text" name="cntctfrm_subject_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", 'contact_form' ); ?></span><br />
539
+ <input type="text" name="cntctfrm_message_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_message_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", 'contact_form' ); ?></span><br />
540
+ <input type="text" name="cntctfrm_attachment_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
541
+ <input type="text" name="cntctfrm_submit_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_submit_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Submit", 'contact_form' ); ?></span><br />
542
+ <input type="text" name="cntctfrm_name_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_name_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for name field", 'contact_form' ); ?></span><br />
543
+ <input type="text" name="cntctfrm_email_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_email_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for email field", 'contact_form' ); ?></span><br />
544
+ <input type="text" name="cntctfrm_phone_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_phone_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for phone field", 'contact_form' ); ?></span><br />
545
+ <input type="text" name="cntctfrm_subject_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_subject_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for subject field", 'contact_form' ); ?></span><br />
546
+ <input type="text" name="cntctfrm_message_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_message_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for message field", 'contact_form' ); ?></span><br />
547
+ <input type="text" name="cntctfrm_attachment_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for attachment field", 'contact_form' ); ?></span><br />
548
+ <input type="text" name="cntctfrm_captcha_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_captcha_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for captcha", 'contact_form' ); ?></span><br />
549
+ <input type="text" name="cntctfrm_form_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for all form", 'contact_form' ); ?></span><br />
550
+ <span class="cntctfrm_info"><?php _e( "Use shortcode", 'contact_form' ); echo " [contact_form lang=en] or [contact_form] "; _e( "for this language", 'contact_form' ); ?></span>
551
+ </div>
552
+ <?php if( ! empty( $cntctfrm_options['cntctfrm_language'] ) ){
553
+ foreach( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
554
+ <div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>">
555
+ <input type="text" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_name_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_name_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", 'contact_form' ); ?></span><br />
556
+ <input type="text" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_email_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_email_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "E-Mail Address:", 'contact_form' ); ?></span><br />
557
+ <input type="text" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_phone_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_phone_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Phone:", 'contact_form' ); ?></span><br />
558
+ <input type="text" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_subject_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_subject_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", 'contact_form' ); ?></span><br />
559
+ <input type="text" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_message_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_message_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", 'contact_form' ); ?></span><br />
560
+ <input type="text" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_attachment_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_attachment_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
561
+ <input type="text" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_submit_label'][$val] ) ) echo $cntctfrm_options['cntctfrm_submit_label'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Submit", 'contact_form' ); ?></span><br />
562
+ <input type="text" name="cntctfrm_name_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_name_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_name_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for name field", 'contact_form' ); ?></span><br />
563
+ <input type="text" name="cntctfrm_email_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_email_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_email_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for email field", 'contact_form' ); ?></span><br />
564
+ <input type="text" name="cntctfrm_phone_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_phone_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_phone_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for phone field", 'contact_form' ); ?></span><br />
565
+ <input type="text" name="cntctfrm_subject_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_subject_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_subject_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for subject field", 'contact_form' ); ?></span><br />
566
+ <input type="text" name="cntctfrm_message_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_message_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_message_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for message field", 'contact_form' ); ?></span><br />
567
+ <input type="text" name="cntctfrm_attachment_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_attachment_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_attachment_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for attachment field", 'contact_form' ); ?></span><br />
568
+ <input type="text" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_captcha_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_captcha_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for captcha", 'contact_form' ); ?></span><br />
569
+ <input type="text" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_form_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_form_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for all form", 'contact_form' ); ?></span><br />
570
+ <span class="cntctfrm_info"><?php _e( "Use shortcode", 'contact_form' ); echo " [contact_form lang=".$val."] "; _e( "for this language", 'contact_form' ); ?></span>
571
+ </div>
572
+ <?php }
573
+ } ?>
574
  </td>
575
  </tr>
576
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
577
  <th scope="row" style="width:195px;"><?php _e( "Action after the send mail", 'contact_form' ); ?></th>
578
  <td colspan="2" class="cntctfrm_action_after_send_block">
579
+ <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Display text", 'contact_form' ); ?><br />
580
+ <div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_text_en"><?php _e('English', 'contact_form'); ?></div>
581
+ <?php if( ! empty( $cntctfrm_options['cntctfrm_language'] ) ){
582
+ foreach( $cntctfrm_options['cntctfrm_language'] as $val ) {
583
+ echo '<div class="cntctfrm_label_language_tab" id="cntctfrm_text_'.$val.'">'.$lang_codes[$val].' <span class="cntctfrm_delete" rel="'.$val.'">X</span></div>';
584
+ }
585
+ } ?>
586
+ <div class="clear"></div>
587
+ <div class="cntctfrm_language_tab cntctfrm_tab_en">
588
+ <input type="text" name="cntctfrm_thank_text[en]" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", 'contact_form' ); ?></span><br />
589
+ <span class="cntctfrm_info"><?php _e( "Use shortcode", 'contact_form' ); echo " [contact_form=en] or [contact_form] "; _e( "for this language", 'contact_form' ); ?></span>
590
+ </div>
591
+ <?php if( ! empty( $cntctfrm_options['cntctfrm_language'] ) ){
592
+ foreach( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
593
+ <div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>">
594
+ <input type="text" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_thank_text'][$val] ) ) echo $cntctfrm_options['cntctfrm_thank_text'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", 'contact_form' ); ?></span><br />
595
+ <span class="cntctfrm_info"><?php _e( "Use shortcode", 'contact_form' ); echo " [contact_form lang=".$val."] "; _e( "for this language", 'contact_form' ); ?></span>
596
+ </div>
597
+ <?php }
598
+ } ?>
599
+ <div id="cntctfrm_before"></div>
600
+ <br />
601
+ <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="0" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '0') echo "checked=\"checked\" "; ?>/> <?php _e( "Redirect to page", 'contact_form' ); ?><br />
602
  <input type="text" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" /> <span class="cntctfrm_info"><?php _e( "Url", 'contact_form' ); ?></span><br />
603
  </td>
604
  </table>
615
 
616
  // Display contact form in front end - page or post
617
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
618
+ function cntctfrm_display_form( $atts = array( 'lang' => 'en' ) ) {
619
  global $error_message, $cntctfrm_options, $cntctfrm_result;
620
+ extract( shortcode_atts( array( 'lang' => 'en' ), $atts ) );
621
  $cntctfrm_options = get_option( 'cntctfrm_options' );
622
  $content = "";
623
 
636
  if( true === $cntctfrm_result ) {
637
  $_SESSION['cntctfrm_send_mail'] = true;
638
  if( $cntctfrm_options['cntctfrm_action_after_send'] == 1 )
639
+ $content .= $cntctfrm_options['cntctfrm_thank_text'][$lang];
640
  else
641
  $content .= "<script type='text/javascript'>window.location.href = '".$cntctfrm_options['cntctfrm_redirect_url']."';</script>";
642
  }
653
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_form'].'</div>';
654
  }
655
  $content .= '<div style="text-align: left; padding-top: 5px;">
656
+ <label for="cntctfrm_contact_name">'. $cntctfrm_options['cntctfrm_name_label'][$lang] . ( $cntctfrm_options['cntctfrm_required_name_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
657
  </div>';
658
  if( isset( $error_message['error_name'] ) ) {
659
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_name'].'</div>';
663
  </div>
664
 
665
  <div style="text-align: left;">
666
+ <label for="cntctfrm_contact_email">'. $cntctfrm_options['cntctfrm_email_label'][$lang] . ( $cntctfrm_options['cntctfrm_required_email_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
667
  </div>';
668
  if( isset( $error_message['error_email'] ) ) {
669
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_email'].'</div>';
674
  ';
675
  if( $cntctfrm_options['cntctfrm_display_phone_field'] == 1 ) {
676
  $content .= '<div style="text-align: left;">
677
+ <label for="cntctfrm_contact_phone">'. $cntctfrm_options['cntctfrm_phone_label'][$lang] . ( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
678
  </div>';
679
  if( isset( $error_message['error_phone'] ) ) {
680
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_phone'].'</div>';
685
  ';
686
  }
687
  $content .= '<div style="text-align: left;">
688
+ <label for="cntctfrm_contact_subject">'. $cntctfrm_options['cntctfrm_subject_label'][$lang] . ( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
689
  </div>';
690
  if( isset( $error_message['error_subject'] ) ) {
691
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_subject'].'</div>';
695
  </div>
696
 
697
  <div style="text-align: left;">
698
+ <label for="cntctfrm_contact_message">'. $cntctfrm_options['cntctfrm_message_label'][$lang] . ( $cntctfrm_options['cntctfrm_required_message_field'] == 1 ? '<span class="required"> *</span></label>' : '</label>' ) . '
699
  </div>';
700
  if( isset( $error_message['error_message'] ) ) {
701
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_message'].'</div>';
705
  </div>';
706
  if($cntctfrm_options['cntctfrm_attachment'] == 1 ) {
707
  $content .= '<div style="text-align: left;">
708
+ <label for="cntctfrm_contact_attachment">'. $cntctfrm_options['cntctfrm_attachment_label'][$lang] . '</label>
709
  </div>';
710
  if( isset( $error_message['error_attachment'] ) ) {
711
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_attachment'].'</div>';
731
 
732
  $content .= '<div style="text-align: left; padding-top: 8px;">
733
  <input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.26" />
734
+ <input type="hidden" value="'.$lang.'" name="cntctfrm_language">
735
+ <input type="submit" value="'. $cntctfrm_options['cntctfrm_submit_label'][$lang]. '" style="cursor: pointer; margin: 0pt; text-align: center;margin-bottom:10px;" />
736
  </div>
737
  </form>';
738
  }
744
  function cntctfrm_check_and_send() {
745
  global $cntctfrm_result;
746
  $cntctfrm_options = get_option( 'cntctfrm_options' );
747
+ if( isset( $_REQUEST['cntctfrm_contact_action'] ) ){
 
748
  // Check all input data
749
  $cntctfrm_result = cntctfrm_check_form();
750
  }
764
  function cntctfrm_check_form() {
765
  global $error_message;
766
  global $cntctfrm_options;
767
+
768
+ $language = isset( $_REQUEST['cntctfrm_language'] ) ? $_REQUEST['cntctfrm_language'] : 'en';
769
  $path_of_uploaded_file = '';
770
  if( empty( $cntctfrm_options ) )
771
  $cntctfrm_options = get_option( 'cntctfrm_options' );
773
  // Error messages array
774
  $error_message = array();
775
  if( $cntctfrm_options['cntctfrm_required_name_field'] == 1 )
776
+ $error_message['error_name'] = $cntctfrm_options['cntctfrm_name_error'][$language];
777
  if( $cntctfrm_options['cntctfrm_required_email_field'] == 1 )
778
+ $error_message['error_email'] = $cntctfrm_options['cntctfrm_email_error'][$language];
779
  if( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 )
780
+ $error_message['error_subject'] = $cntctfrm_options['cntctfrm_subject_error'][$language];
781
  if( $cntctfrm_options['cntctfrm_required_message_field'] == 1 )
782
+ $error_message['error_message'] = $cntctfrm_options['cntctfrm_message_error'][$language];
783
  if( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 )
784
+ $error_message['error_phone'] = $cntctfrm_options['cntctfrm_phone_error'][$language];
785
+ $error_message['error_form'] = $cntctfrm_options['cntctfrm_form_error'][$language];
786
  if( $cntctfrm_options['cntctfrm_attachment'] == 1 ) {
787
  global $path_of_uploaded_file;
788
  global $mime_type;
814
  'wav'=>'audio/wav',
815
  'mp3'=>'audio/mp3',
816
  'ppt'=>'application/vnd.ms-powerpoint');
817
+ $error_message['error_attachment'] = $cntctfrm_options['cntctfrm_attachment_error'][$language];
818
  }
819
  // Check information wich was input in fields
820
  if( $cntctfrm_options['cntctfrm_required_name_field'] == 1 && "" != $_REQUEST['cntctfrm_contact_name'] )
829
  unset( $error_message['error_phone'] );
830
  // If captcha plugin exists
831
  if( ! apply_filters( 'cntctfrm_check_form', $_REQUEST ) )
832
+ $error_message['error_captcha'] = $cntctfrm_options['cntctfrm_captcha_error'][$language];
833
  if( isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
834
  if( is_multisite() ){
835
  if( defined('UPLOADS') ) {
983
  $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
984
 
985
  // Additional headers
986
+ if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
987
+ $headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '\r\n';
988
+ else
989
+ $headers .= 'From: '.stripslashes( $_REQUEST['cntctfrm_contact_email'] ). '\r\n';
990
  if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
991
  $attachments = array( $path_of_uploaded_file );
992
  }
1004
  $message_block = $message;
1005
 
1006
  // Additional headers
1007
+ if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
1008
+ $headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '>\r\n';
1009
+ else
1010
+ $headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $_REQUEST['cntctfrm_contact_email'] ). '>\r\n';
1011
 
1012
  $bound_text = "jimmyP123";
1013
 
1043
  $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
1044
 
1045
  // Additional headers
1046
+ if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
1047
+ $headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '>\r\n';
1048
+ else
1049
+ $headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $_REQUEST['cntctfrm_contact_email'] ). '>\r\n';
1050
  }
1051
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
1052
  @mail( stripslashes( $_REQUEST['cntctfrm_contact_email'] ), stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
1122
  function cntctfrm_admin_head() {
1123
  wp_enqueue_style( 'cntctfrmStylesheet', plugins_url( 'css/style.css', __FILE__ ) );
1124
  wp_enqueue_script( 'cntctfrmScript', plugins_url( 'js/script.js', __FILE__ ) );
1125
+ echo '<script type="text/javascript">var confirm_text = "'.__('Are you sure you want to delete this language?', 'contact_form').'"</script>';
1126
  }
1127
  }
1128
 
1140
  return $data;
1141
  }
1142
 
1143
+ function cntctfrm_add_language(){
1144
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
1145
+ $cntctfrm_options['cntctfrm_language'][] = $_REQUEST['lang'];
1146
+ update_option( 'cntctfrm_options', $cntctfrm_options, '', 'yes' );
1147
+ die();
1148
+ }
1149
+
1150
+ function cntctfrm_remove_language(){
1151
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
1152
+ if( $key = array_search( $_REQUEST['lang'], $cntctfrm_options['cntctfrm_language'] ) !== false )
1153
+ $cntctfrm_options['cntctfrm_language'] = array_diff( $cntctfrm_options['cntctfrm_language'], array( $_REQUEST['lang'] ) );
1154
+ if( isset( $cntctfrm_options['cntctfrm_name_label'][$_REQUEST['lang']] ) )
1155
+ unset( $cntctfrm_options['cntctfrm_name_label'][$_REQUEST['lang']]);
1156
+ if( isset( $cntctfrm_options['cntctfrm_email_label'][$_REQUEST['lang']] ) )
1157
+ unset( $cntctfrm_options['cntctfrm_email_label'][$_REQUEST['lang']]);
1158
+ if( isset( $cntctfrm_options['cntctfrm_phone_label'][$_REQUEST['lang']] ) )
1159
+ unset( $cntctfrm_options['cntctfrm_phone_label'][$_REQUEST['lang']]);
1160
+ if( isset( $cntctfrm_options['cntctfrm_subject_label'][$_REQUEST['lang']] ) )
1161
+ unset( $cntctfrm_options['cntctfrm_subject_label'][$_REQUEST['lang']]);
1162
+ if( isset( $cntctfrm_options['cntctfrm_message_label'][$_REQUEST['lang']] ) )
1163
+ unset( $cntctfrm_options['cntctfrm_message_label'][$_REQUEST['lang']]);
1164
+ if( isset( $cntctfrm_options['cntctfrm_attachment_label'][$_REQUEST['lang']] ) )
1165
+ unset( $cntctfrm_options['cntctfrm_attachment_label'][$_REQUEST['lang']]);
1166
+ if( isset( $cntctfrm_options['cntctfrm_thank_text'][$_REQUEST['lang']] ) )
1167
+ unset( $cntctfrm_options['cntctfrm_thank_text'][$_REQUEST['lang']]);
1168
+ if( isset( $cntctfrm_options['cntctfrm_submit_label'][$_REQUEST['lang']] ) )
1169
+ unset( $cntctfrm_options['cntctfrm_submit_label'][$_REQUEST['lang']]);
1170
+ if( isset( $cntctfrm_options['cntctfrm_name_error'][$_REQUEST['lang']] ) )
1171
+ unset( $cntctfrm_options['cntctfrm_name_error'][$_REQUEST['lang']]);
1172
+ if( isset( $cntctfrm_options['cntctfrm_email_error'][$_REQUEST['lang']] ) )
1173
+ unset( $cntctfrm_options['cntctfrm_email_error'][$_REQUEST['lang']]);
1174
+ if( isset( $cntctfrm_options['cntctfrm_phone_error'][$_REQUEST['lang']] ) )
1175
+ unset( $cntctfrm_options['cntctfrm_phone_error'][$_REQUEST['lang']]);
1176
+ if( isset( $cntctfrm_options['cntctfrm_subject_error'][$_REQUEST['lang']] ) )
1177
+ unset( $cntctfrm_options['cntctfrm_subject_error'][$_REQUEST['lang']]);
1178
+ if( isset( $cntctfrm_options['cntctfrm_message_error'][$_REQUEST['lang']] ) )
1179
+ unset( $cntctfrm_options['cntctfrm_message_error'][$_REQUEST['lang']]);
1180
+ if( isset( $cntctfrm_options['cntctfrm_attachment_error'][$_REQUEST['lang']] ) )
1181
+ unset( $cntctfrm_options['cntctfrm_attachment_error'][$_REQUEST['lang']]);
1182
+ if( isset( $cntctfrm_options['cntctfrm_captcha_error'][$_REQUEST['lang']] ) )
1183
+ unset( $cntctfrm_options['cntctfrm_captcha_error'][$_REQUEST['lang']]);
1184
+ if( isset( $cntctfrm_options['cntctfrm_form_error'][$_REQUEST['lang']] ) )
1185
+ unset( $cntctfrm_options['cntctfrm_form_error'][$_REQUEST['lang']]);
1186
+ update_option( 'cntctfrm_options', $cntctfrm_options );
1187
+ die();
1188
+ }
1189
+
1190
  add_action( 'init', 'cntctfrm_plugin_init' );
1191
 
1192
  add_action( 'init', 'cntctfrm_check_and_send' );
1208
  add_filter( 'widget_text', 'do_shortcode' );
1209
 
1210
  add_filter( 'wp_mail_from_name', 'cntctfrm_email_name_filter', 10, 1);
1211
+
1212
+ add_action( 'wp_ajax_cntctfrm_add_language', 'cntctfrm_add_language' );
1213
+ add_action( 'wp_ajax_cntctfrm_remove_language', 'cntctfrm_remove_language' );
1214
+
1215
  ?>
css/style.css CHANGED
@@ -6,12 +6,9 @@
6
  #cntctfrm_contact_subject {
7
  width:320px;
8
  }
9
- #cntctfrm_required_name_field,
10
- #cntctfrm_required_email_field,
11
- #cntctfrm_required_phone_field,
12
- #cntctfrm_required_subject_field,
13
- #cntctfrm_required_message_field {
14
- margin: 3px 0 4px;
15
  }
16
  #adminmenu #toplevel_page_bws_plugins div.wp-menu-image
17
  {
@@ -45,21 +42,13 @@
45
  #cntctfrm_contact_attachment {
46
  margin-bottom:0;
47
  }
48
- #cntctfrm_contact_send_copy, #cntctfrm_attachment, #cntctfrm_send_copy, #cntctfrm_change_label {
49
- position:relative;
50
- top:2px;
51
- }
52
- #cntctfrm_attachment, #cntctfrm_send_copy, #cntctfrm_change_label {
53
- position:relative;
54
- top:3px;
55
- }
56
- #cntctfrm_select_email_user, #cntctfrm_select_email_custom {
57
- position:relative;
58
- top:5px;
59
- }
60
  .cntctfrm_change_label_block input, .cntctfrm_action_after_send_block input {
61
  margin: 1px 0;
62
  }
 
 
 
63
 
64
  .cntctfrm_action_after_send_block input[type="text"] {
65
  width:250px;
@@ -80,6 +69,30 @@
80
  width: 200px !important;
81
  }
82
 
83
- .form-table td.cntctfrm_display_add_info_block {
84
- padding:4px 10px 8px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  }
6
  #cntctfrm_contact_subject {
7
  width:320px;
8
  }
9
+ .bws-plugins_page_contact_form input[type="checkbox"], .bws-plugins_page_contact_form input[type="radio"]{
10
+ position:relative;
11
+ top:-2px
 
 
 
12
  }
13
  #adminmenu #toplevel_page_bws_plugins div.wp-menu-image
14
  {
42
  #cntctfrm_contact_attachment {
43
  margin-bottom:0;
44
  }
45
+
 
 
 
 
 
 
 
 
 
 
 
46
  .cntctfrm_change_label_block input, .cntctfrm_action_after_send_block input {
47
  margin: 1px 0;
48
  }
49
+ .cntctfrm_change_label_block input[type="text"], .cntctfrm_action_after_send_block input[type="text"] {
50
+ width: 300px;
51
+ }
52
 
53
  .cntctfrm_action_after_send_block input[type="text"] {
54
  width:250px;
69
  width: 200px !important;
70
  }
71
 
72
+ .cntctfrm_label_language_tab{
73
+ float: left;
74
+ padding:2px 5px;
75
+ border-radius: 4px 4px 0px 0px;
76
+ border:1px solid #DFDFDF;
77
+ background: url("../images/gray-grad.png") repeat-x scroll left top #DFDFDF;
78
+ cursor: pointer;
79
+ margin-right:3px;
80
+ }
81
+
82
+ .cntctfrm_language_tab{
83
+ padding: 5px 10px 5px 5px;
84
+ border:1px solid #DFDFDF;
85
+ }
86
+
87
+ .cntctfrm_active{
88
+ color:#21759B;
89
+ }
90
+
91
+ .cntctfrm_delete{
92
+ color: red;
93
+ display: block;
94
+ float: right;
95
+ margin-left: 7px;
96
+ position: relative;
97
+ right: -3px;
98
  }
images/gray-grad.png ADDED
Binary file
js/script.js CHANGED
@@ -1,20 +1,109 @@
1
- jQuery(document).ready(function(){
2
- jQuery('#cntctfrm_additions_options').change( function() {
3
- if(jQuery(this).is(':checked') )
4
- jQuery('.cntctfrm_additions_block').removeClass('cntctfrm_hidden');
5
- else
6
- jQuery('.cntctfrm_additions_block').addClass('cntctfrm_hidden');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  });
8
- jQuery('#cntctfrm_change_label').change( function() {
9
- if(jQuery(this).is(':checked') )
10
- jQuery('.cntctfrm_change_label_block').removeClass('cntctfrm_hidden');
11
- else
12
- jQuery('.cntctfrm_change_label_block').addClass('cntctfrm_hidden');
13
- });
14
- jQuery('#cntctfrm_display_add_info').change( function() {
15
- if(jQuery(this).is(':checked') )
16
- jQuery('.cntctfrm_display_add_info_block').removeClass('cntctfrm_hidden');
17
- else
18
- jQuery('.cntctfrm_display_add_info_block').addClass('cntctfrm_hidden');
19
- });
20
- });
1
+ (function($){
2
+ $(document).ready(function(){
3
+ $('#cntctfrm_additions_options').change( function() {
4
+ if($(this).is(':checked') )
5
+ $('.cntctfrm_additions_block').removeClass('cntctfrm_hidden');
6
+ else
7
+ $('.cntctfrm_additions_block').addClass('cntctfrm_hidden');
8
+ });
9
+ $('#cntctfrm_change_label').change( function() {
10
+ if($(this).is(':checked') )
11
+ $('.cntctfrm_change_label_block').removeClass('cntctfrm_hidden');
12
+ else
13
+ $('.cntctfrm_change_label_block').addClass('cntctfrm_hidden');
14
+ });
15
+ $('#cntctfrm_display_add_info').change( function() {
16
+ if($(this).is(':checked') )
17
+ $('.cntctfrm_display_add_info_block').removeClass('cntctfrm_hidden');
18
+ else
19
+ $('.cntctfrm_display_add_info_block').addClass('cntctfrm_hidden');
20
+ });
21
+ $('#cntctfrm_add_language_button').click(function(){
22
+ $.ajax({
23
+ url: '../wp-admin/admin-ajax.php',//update_url,
24
+ type: "POST",
25
+ data: "action=cntctfrm_add_language&lang="+$('#cntctfrm_languages').val(),
26
+ success: function(result) {
27
+ var lang_val = $('#cntctfrm_languages').val();
28
+ $('.cntctfrm_change_label_block .cntctfrm_language_tab, .cntctfrm_action_after_send_block .cntctfrm_language_tab').each(function(){
29
+ $(this).addClass('hidden');
30
+ });
31
+ $('.cntctfrm_change_label_block .cntctfrm_language_tab').first().clone().appendTo(".cntctfrm_change_label_block").removeClass('hidden').removeClass('cntctfrm_tab_en').addClass('cntctfrm_tab_'+lang_val);
32
+ $('.cntctfrm_action_after_send_block .cntctfrm_language_tab').first().clone().insertBefore("#cntctfrm_before").removeClass('hidden').removeClass('cntctfrm_tab_en').addClass('cntctfrm_tab_'+lang_val);
33
+ $('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('input').each(function(){
34
+ $(this).val('');
35
+ $(this).attr('name', $(this).attr('name').replace('[en]', '['+lang_val+']'));
36
+ });
37
+ var text = $('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text();
38
+ text = text.replace('lang=en', 'lang='+lang_val);
39
+ text = text.replace(' or [contact_form]', '');
40
+ $('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text(text);
41
+ $('.cntctfrm_action_after_send_block .cntctfrm_language_tab').last().find('input').val('').attr('name', $('.cntctfrm_action_after_send_block .cntctfrm_language_tab').last().find('input').attr('name').replace('[en]', '['+lang_val+']'));
42
+ text = $('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text();
43
+ text = text.replace('lang=en', 'lang='+lang_val);
44
+ text = text.replace(' or [contact_form]', '');
45
+ $('.cntctfrm_action_after_send_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text(text);
46
+ $('.cntctfrm_change_label_block .cntctfrm_label_language_tab, .cntctfrm_action_after_send_block .cntctfrm_label_language_tab').each(function(){
47
+ $(this).removeClass('cntctfrm_active');
48
+ });
49
+ $('.cntctfrm_change_label_block .clear').prev().clone().attr('id','cntctfrm_label_'+lang_val).addClass('cntctfrm_active').html($('#cntctfrm_languages option:selected').text()+' <span class="cntctfrm_delete" rel="'+lang_val+'">X</span>').insertBefore('.cntctfrm_change_label_block .clear');
50
+ $('.cntctfrm_action_after_send_block .clear').prev().clone().attr('id','cntctfrm_label_'+lang_val).addClass('cntctfrm_active').html($('#cntctfrm_languages option:selected').text()+' <span class="cntctfrm_delete" rel="'+lang_val+'">X</span>').insertBefore('.cntctfrm_action_after_send_block .clear');
51
+ $('#cntctfrm_languages option:selected').remove();
52
+ },
53
+ error: function( request, status, error ) {
54
+ alert( error + request.status );
55
+ }
56
+ });
57
+ });
58
+ $('.cntctfrm_change_label_block .cntctfrm_label_language_tab').live('click', function(){
59
+ $('.cntctfrm_label_language_tab').each(function(){
60
+ $(this).removeClass('cntctfrm_active');
61
+ });
62
+ var index = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab').index($(this));
63
+ $(this).addClass('cntctfrm_active');
64
+ var blocks = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab');
65
+ $(blocks[index]).addClass('cntctfrm_active');
66
+ $('.cntctfrm_language_tab').each(function(){
67
+ $(this).addClass('hidden');
68
+ });
69
+ $('.'+this.id.replace('label', 'tab')).removeClass('hidden');
70
+ });
71
+ $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').live('click', function(){
72
+ $('.cntctfrm_label_language_tab').each(function(){
73
+ $(this).removeClass('cntctfrm_active');
74
+ });
75
+ var index = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').index($(this));
76
+ $(this).addClass('cntctfrm_active');
77
+ var blocks = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab')
78
+ $(blocks[index]).addClass('cntctfrm_active');
79
+ $('.cntctfrm_language_tab').each(function(){
80
+ $(this).addClass('hidden');
81
+ });
82
+ console.log(this.id.replace('text', 'tab'), index);
83
+ $('.'+this.id.replace('text', 'tab')).removeClass('hidden');
84
+ });
85
+ $('.cntctfrm_delete').live('click', function( event ){
86
+ event.stopPropagation();
87
+ if ( confirm( confirm_text ) ) {
88
+ var lang = $(this).attr('rel');
89
+ $.ajax({
90
+ url: '../wp-admin/admin-ajax.php',//update_url,
91
+ type: "POST",
92
+ data: "action=cntctfrm_remove_language&lang="+lang,
93
+ success: function(result) {
94
+ $('.cntctfrm_active, .cntctfrm_tab_'+lang).each(function(){
95
+ $(this).remove();
96
+ });
97
+ $('.cntctfrm_change_label_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
98
+ $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
99
+ $('.cntctfrm_change_label_block .cntctfrm_language_tab').first().removeClass('hidden');
100
+ $('.cntctfrm_action_after_send_block .cntctfrm_language_tab').first().removeClass('hidden');
101
+ },
102
+ error: function( request, status, error ) {
103
+ alert( error + request.status );
104
+ }
105
+ });
106
+ }
107
+ });
108
  });
109
+ })(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
languages/contact_form-ar.mo CHANGED
Binary file
languages/contact_form-ar.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-11-20 10:14+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:14+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz."
9
  "com@gmail.com>\n"
@@ -25,7 +25,7 @@ msgstr "تفعيل الإضافات"
25
  msgid "Read more"
26
  msgstr "اقرأ المزيد"
27
 
28
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
29
  msgid "Settings"
30
  msgstr "إعدادات"
31
 
@@ -58,7 +58,7 @@ msgstr ""
58
  "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء "
59
  "استمارة الاتصال على موقعنا"
60
 
61
- #: contact_form.php:108 contact_form.php:286
62
  msgid "Contact Form Options"
63
  msgstr "خيارات نموذج اتصل بنا"
64
 
@@ -66,58 +66,95 @@ msgstr "خيارات نموذج اتصل بنا"
66
  msgid "Contact Form"
67
  msgstr "نموذج الاتصال"
68
 
69
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
70
- #: contact_form.php:413
71
  msgid "Name:"
72
  msgstr "الأسم:"
73
 
74
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
75
- #: contact_form.php:414
76
  msgid "E-Mail Address:"
77
  msgstr "البريد الالكتروني:"
78
 
79
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
80
  msgid "Phone:"
81
  msgstr ""
82
 
83
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
84
- #: contact_form.php:416
85
  msgid "Subject:"
86
  msgstr "موضوع الرسالة:"
87
 
88
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
89
- #: contact_form.php:417
90
  msgid "Message:"
91
  msgstr "الرسالة:"
92
 
93
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
94
- #: contact_form.php:418
95
  msgid "Attachment:"
96
  msgstr "المرفقات:"
97
 
98
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Thank you for contacting us."
100
  msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
101
 
102
- #: contact_form.php:253
103
  msgid ""
104
  "If the option 'Redirect to page' is selected then url field should be "
105
  "fillied in the following format"
106
  msgstr ""
107
 
108
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
109
- msgid "Options saved."
110
- msgstr "الخيارات حُفظت."
111
-
112
- #: contact_form.php:268
113
  msgid "Such user is not exist. Settings are not saved."
114
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
115
 
116
- #: contact_form.php:278
117
  msgid "Please input correct email. Settings are not saved."
118
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
119
 
120
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
123
  "this shortcode onto your post or page or widget:"
@@ -125,7 +162,7 @@ msgstr ""
125
  "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق "
126
  "هذا الرمز القصير:"
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
@@ -133,227 +170,264 @@ msgstr ""
133
  "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي "
134
  "تم تحديده أثناء التسجيل."
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "أستخدم بريد العضو في وورد بريس:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "اختر اسم المستخدم"
143
 
144
- #: contact_form.php:307
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
147
 
148
- #: contact_form.php:311
149
  msgid "Use this email:"
150
  msgstr "استخدام هذا البريد الالكتروني:"
151
 
152
- #: contact_form.php:317
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
155
 
156
- #: contact_form.php:321
157
  msgid "Additional options"
158
  msgstr "خيارات إضافية"
159
 
160
- #: contact_form.php:324
161
  msgid "Display Attachment block"
162
  msgstr "عرض حقل المرفقات"
163
 
164
- #: contact_form.php:329
165
  msgid "Users can attach files of the following types"
166
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
167
 
168
- #: contact_form.php:333
169
  #, fuzzy
170
  msgid "Display Attachment explanations"
171
  msgstr "عرض حقل المرفقات"
172
 
173
- #: contact_form.php:338
174
  #, fuzzy
175
  msgid "Display explanations after Attachment block"
176
  msgstr "عرض حقل المرفقات"
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "عرض خيار (أرسل لي نسخة)"
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr "ماذا تستخدم؟"
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "تغيير من الحقول من نموذج الاتصال"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "الأسم"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "البريد الالكتروني:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "موضوع الرسالة"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "الرسالة"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "ارسلت من (عنوان IP)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "الوقت/التاريخ"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Coming from (referer)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "باستخدام (وكيل المستخدم)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "تغيير تسمية حقول نموذج الاتصال"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr ""
262
 
263
- #: contact_form.php:424
264
  #, fuzzy
265
  msgid "Display text"
266
  msgstr "عرض حقل المرفقات"
267
 
268
- #: contact_form.php:425
269
  msgid "Text"
270
  msgstr ""
271
 
272
- #: contact_form.php:426
273
  msgid "Redirect to page"
274
  msgstr ""
275
 
276
- #: contact_form.php:427
277
  msgid "Url"
278
  msgstr ""
279
 
280
- #: contact_form.php:432
281
  msgid "Save Changes"
282
  msgstr "حفظ التغييرات"
283
 
284
- #: contact_form.php:470
285
  msgid "Sorry, your e-mail could not be delivered."
286
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
287
 
288
- #: contact_form.php:540
289
  msgid "You can attach files of the following types"
290
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
291
 
292
- #: contact_form.php:548
293
  msgid "Send me a copy"
294
  msgstr "أرسل لي نسخة"
295
 
296
- #: contact_form.php:558
297
- msgid "Submit"
298
- msgstr "تقدم"
299
-
300
- #: contact_form.php:598
301
- msgid "Your name is required."
302
- msgstr "مطلوب اسمك."
303
-
304
- #: contact_form.php:600
305
- msgid "A proper e-mail address is required."
306
- msgstr "مطلوب بريد الكتروني صحيح."
307
-
308
- #: contact_form.php:602
309
- msgid "Subject text is required."
310
- msgstr "مطلوب نص الموضوع."
311
-
312
- #: contact_form.php:604
313
- msgid "Message text is required."
314
- msgstr "مطلوب نص الرسالة."
315
-
316
- #: contact_form.php:606
317
- #, fuzzy
318
- msgid "Phone is required field."
319
- msgstr "مطلوب اسمك."
320
-
321
- #: contact_form.php:607
322
- msgid "Please make corrections below and try again."
323
- msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
324
-
325
- #: contact_form.php:639
326
- msgid "Attachment is broken."
327
- msgstr "المرفق تعطل."
328
-
329
- #: contact_form.php:654
330
- msgid "Please complete the CAPTCHA."
331
- msgstr "يرجى استكمال رمز التحقق."
332
-
333
- #: contact_form.php:770
334
  msgid "Contact from"
335
  msgstr "اتصل من"
336
 
337
- #: contact_form.php:778
338
  msgid "Email"
339
  msgstr "البريد الألكتروني"
340
 
341
- #: contact_form.php:792
342
  msgid "Site"
343
  msgstr "الموقع"
344
 
345
- #: contact_form.php:837
346
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
347
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "أسئلة وأجوبة"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "دعم"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Indirizzo e-mail:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz."
9
  "com@gmail.com>\n"
25
  msgid "Read more"
26
  msgstr "اقرأ المزيد"
27
 
28
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
29
  msgid "Settings"
30
  msgstr "إعدادات"
31
 
58
  "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء "
59
  "استمارة الاتصال على موقعنا"
60
 
61
+ #: contact_form.php:108 contact_form.php:401
62
  msgid "Contact Form Options"
63
  msgstr "خيارات نموذج اتصل بنا"
64
 
66
  msgid "Contact Form"
67
  msgstr "نموذج الاتصال"
68
 
69
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
70
  msgid "Name:"
71
  msgstr "الأسم:"
72
 
73
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
74
  msgid "E-Mail Address:"
75
  msgstr "البريد الالكتروني:"
76
 
77
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
78
  msgid "Phone:"
79
  msgstr ""
80
 
81
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
82
  msgid "Subject:"
83
  msgstr "موضوع الرسالة:"
84
 
85
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
86
  msgid "Message:"
87
  msgstr "الرسالة:"
88
 
89
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
90
  msgid "Attachment:"
91
  msgstr "المرفقات:"
92
 
93
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
94
+ msgid "Submit"
95
+ msgstr "تقدم"
96
+
97
+ #: contact_form.php:152
98
+ msgid "Your name is required."
99
+ msgstr "مطلوب اسمك."
100
+
101
+ #: contact_form.php:153
102
+ msgid "A proper e-mail address is required."
103
+ msgstr "مطلوب بريد الكتروني صحيح."
104
+
105
+ #: contact_form.php:154
106
+ msgid "Subject text is required."
107
+ msgstr "مطلوب نص الموضوع."
108
+
109
+ #: contact_form.php:155
110
+ msgid "Message text is required."
111
+ msgstr "مطلوب نص الرسالة."
112
+
113
+ #: contact_form.php:156
114
+ #, fuzzy
115
+ msgid "Phone is required field."
116
+ msgstr "مطلوب اسمك."
117
+
118
+ #: contact_form.php:157
119
+ msgid "Attachment is broken."
120
+ msgstr "المرفق تعطل."
121
+
122
+ #: contact_form.php:158
123
+ msgid "Please complete the CAPTCHA."
124
+ msgstr "يرجى استكمال رمز التحقق."
125
+
126
+ #: contact_form.php:159
127
+ msgid "Please make corrections below and try again."
128
+ msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
129
+
130
+ #: contact_form.php:161
131
  msgid "Thank you for contacting us."
132
  msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
133
 
134
+ #: contact_form.php:356
135
  msgid ""
136
  "If the option 'Redirect to page' is selected then url field should be "
137
  "fillied in the following format"
138
  msgstr ""
139
 
140
+ #: contact_form.php:365
 
 
 
 
141
  msgid "Such user is not exist. Settings are not saved."
142
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
143
 
144
+ #: contact_form.php:370
145
  msgid "Please input correct email. Settings are not saved."
146
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
152
+
153
+ #: contact_form.php:381
154
+ msgid "Options saved."
155
+ msgstr "الخيارات حُفظت."
156
+
157
+ #: contact_form.php:406
158
  msgid ""
159
  "If you would like to add a Contact Form to your website, just copy and put "
160
  "this shortcode onto your post or page or widget:"
162
  "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق "
163
  "هذا الرمز القصير:"
164
 
165
+ #: contact_form.php:407
166
  msgid ""
167
  "If information in the below fields are empty then the message will be send "
168
  "to an address which was specified during registration."
170
  "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي "
171
  "تم تحديده أثناء التسجيل."
172
 
173
+ #: contact_form.php:411
174
  msgid "Use email of wordpress user:"
175
  msgstr "أستخدم بريد العضو في وورد بريس:"
176
 
177
+ #: contact_form.php:415
178
  msgid "Select user name"
179
  msgstr "اختر اسم المستخدم"
180
 
181
+ #: contact_form.php:420
182
  msgid "Set a name of user who will get messages from a contact form."
183
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
184
 
185
+ #: contact_form.php:424
186
  msgid "Use this email:"
187
  msgstr "استخدام هذا البريد الالكتروني:"
188
 
189
+ #: contact_form.php:427
190
  msgid "Set an email address which will be used for messages receiving."
191
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
192
 
193
+ #: contact_form.php:431
194
  msgid "Additional options"
195
  msgstr "خيارات إضافية"
196
 
197
+ #: contact_form.php:434
198
  msgid "Display Attachment block"
199
  msgstr "عرض حقل المرفقات"
200
 
201
+ #: contact_form.php:436
202
  msgid "Users can attach files of the following types"
203
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
204
 
205
+ #: contact_form.php:440
206
  #, fuzzy
207
  msgid "Display Attachment explanations"
208
  msgstr "عرض حقل المرفقات"
209
 
210
+ #: contact_form.php:442
211
  #, fuzzy
212
  msgid "Display explanations after Attachment block"
213
  msgstr "عرض حقل المرفقات"
214
 
215
+ #: contact_form.php:446
216
  msgid "Display Send me a copy block"
217
  msgstr "عرض خيار (أرسل لي نسخة)"
218
 
219
+ #: contact_form.php:452
220
  msgid "What use?"
221
  msgstr "ماذا تستخدم؟"
222
 
223
+ #: contact_form.php:455
224
  msgid "Wp-mail"
225
  msgstr "Wp-mail"
226
 
227
+ #: contact_form.php:456
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
230
 
231
+ #: contact_form.php:462
232
  msgid "Mail"
233
  msgstr "Mail"
234
 
235
+ #: contact_form.php:463
236
  msgid "To send mail you can use the php mail function"
237
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
238
 
239
+ #: contact_form.php:467
240
+ #, fuzzy
241
+ msgid "Change text for 'FROM' field of the email"
242
  msgstr "تغيير من الحقول من نموذج الاتصال"
243
 
244
+ #: contact_form.php:473
245
+ msgid "Select email for 'FROM' field of the email"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:475
249
+ msgid ""
250
+ "In the field 'From' in the mail it will use email of that user who fills the "
251
+ "form."
252
+ msgstr ""
253
+
254
+ #: contact_form.php:477
255
+ msgid "In the field 'From' it will use this email."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:481
259
  msgid "Display phone field"
260
  msgstr ""
261
 
262
+ #: contact_form.php:487
263
  msgid "Required field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:489 contact_form.php:953
267
  msgid "Name"
268
  msgstr "الأسم"
269
 
270
+ #: contact_form.php:490
271
  #, fuzzy
272
  msgid "E-Mail Address"
273
  msgstr "البريد الالكتروني:"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr ""
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "موضوع الرسالة"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "الرسالة"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "ارسلت من (عنوان IP)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "الوقت/التاريخ"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Coming from (referer)"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "باستخدام (وكيل المستخدم)"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "تغيير تسمية حقول نموذج الاتصال"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr ""
369
 
370
+ #: contact_form.php:579
371
  #, fuzzy
372
  msgid "Display text"
373
  msgstr "عرض حقل المرفقات"
374
 
375
+ #: contact_form.php:588 contact_form.php:594
376
  msgid "Text"
377
  msgstr ""
378
 
379
+ #: contact_form.php:601
380
  msgid "Redirect to page"
381
  msgstr ""
382
 
383
+ #: contact_form.php:602
384
  msgid "Url"
385
  msgstr ""
386
 
387
+ #: contact_form.php:607
388
  msgid "Save Changes"
389
  msgstr "حفظ التغييرات"
390
 
391
+ #: contact_form.php:646
392
  msgid "Sorry, your e-mail could not be delivered."
393
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
394
 
395
+ #: contact_form.php:716
396
  msgid "You can attach files of the following types"
397
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
398
 
399
+ #: contact_form.php:724
400
  msgid "Send me a copy"
401
  msgstr "أرسل لي نسخة"
402
 
403
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  msgid "Contact from"
405
  msgstr "اتصل من"
406
 
407
+ #: contact_form.php:956
408
  msgid "Email"
409
  msgstr "البريد الألكتروني"
410
 
411
+ #: contact_form.php:970
412
  msgid "Site"
413
  msgstr "الموقع"
414
 
415
+ #: contact_form.php:1021
416
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
417
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "أسئلة وأجوبة"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "دعم"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "Indirizzo e-mail:"
433
 
languages/contact_form-bg_BG.mo CHANGED
Binary file
languages/contact_form-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-20 10:14+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: bg_BG\n"
@@ -24,7 +24,7 @@ msgstr "Активиране на приложението"
24
  msgid "Read more"
25
  msgstr "Прочетете повече"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com "
58
  "или попълнете нашата форма за контакти на нашия сайт"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Настройки на Формата за контакт"
63
 
@@ -65,58 +65,95 @@ msgstr "Настройки на Формата за контакт"
65
  msgid "Contact Form"
66
  msgstr "Форма за контакт"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Име:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail адрес:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Тема:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Съобщение:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Прикачване на файл:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Благодарим Ви, че се свързахте с нас."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Опциите са запазени"
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,7 +161,7 @@ msgstr ""
124
  "Ако искате да добавите формата за контакт на своят сайт копирайте и "
125
  "поставете този код в страницата или публикацията или джаджа:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
@@ -132,230 +169,267 @@ msgstr ""
132
  "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено "
133
  "на Email адрес, който е определен по време на регистрацията"
134
 
135
- #: contact_form.php:296
136
  msgid "Use email of wordpress user:"
137
  msgstr "Използвайте Email на Wordpress потребител:"
138
 
139
- #: contact_form.php:302
140
  msgid "Select user name"
141
  msgstr "Избиране на потребител"
142
 
143
- #: contact_form.php:307
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr ""
146
  "Задайте името на потребителя, който ще получава съобщенията от формата за "
147
  "контакт."
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Използвайте този Email:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr ""
156
  "Задаване на Email адрес, който ще се използва за получаване на съобщения."
157
 
158
- #: contact_form.php:321
159
  msgid "Additional options"
160
  msgstr "Допълнителни настройки"
161
 
162
- #: contact_form.php:324
163
  msgid "Display Attachment block"
164
  msgstr "Покажи опция за прикачване на файл"
165
 
166
- #: contact_form.php:329
167
  msgid "Users can attach files of the following types"
168
  msgstr "Потребителите могат да прикачват файлове от следните видове"
169
 
170
- #: contact_form.php:333
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
- #: contact_form.php:338
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "Показване на опция за изпращане на копие"
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr ""
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "Промяна от полета на формата за контакт"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "Име"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "E-mail адрес:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Относно"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Съобщение"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr ""
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Изпратено от (ip адрес)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Дата/Час"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Идва от (referer)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "Използвайки (user agent)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Промяна на етикетите за полета във формата за контакт"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr ""
262
 
263
- #: contact_form.php:424
264
  #, fuzzy
265
  msgid "Display text"
266
  msgstr "Покажи опция за прикачване на файл"
267
 
268
- #: contact_form.php:425
269
  msgid "Text"
270
  msgstr ""
271
 
272
- #: contact_form.php:426
273
  msgid "Redirect to page"
274
  msgstr ""
275
 
276
- #: contact_form.php:427
277
  msgid "Url"
278
  msgstr ""
279
 
280
- #: contact_form.php:432
281
  msgid "Save Changes"
282
  msgstr "Запис на промените"
283
 
284
- #: contact_form.php:470
285
  msgid "Sorry, your e-mail could not be delivered."
286
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
287
 
288
- #: contact_form.php:540
289
  msgid "You can attach files of the following types"
290
  msgstr "Можете да прикачвате файлове от следните типове"
291
 
292
- #: contact_form.php:548
293
  msgid "Send me a copy"
294
  msgstr "Изпрати ми копие"
295
 
296
- #: contact_form.php:558
297
- msgid "Submit"
298
- msgstr "Изпрати"
299
-
300
- #: contact_form.php:598
301
- msgid "Your name is required."
302
- msgstr "Вашето име е задължително."
303
-
304
- #: contact_form.php:600
305
- msgid "A proper e-mail address is required."
306
- msgstr "Правилният Email адрес е задължителен."
307
-
308
- #: contact_form.php:602
309
- msgid "Subject text is required."
310
- msgstr "Заглавието е задължитено."
311
-
312
- #: contact_form.php:604
313
- msgid "Message text is required."
314
- msgstr "Текстовото съобщение е задължително."
315
-
316
- #: contact_form.php:606
317
- #, fuzzy
318
- msgid "Phone is required field."
319
- msgstr "Вашето име е задължително."
320
-
321
- #: contact_form.php:607
322
- msgid "Please make corrections below and try again."
323
- msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
324
-
325
- #: contact_form.php:639
326
- msgid "Attachment is broken."
327
- msgstr "Прикаченият файл не се поддържа"
328
-
329
- #: contact_form.php:654
330
- msgid "Please complete the CAPTCHA."
331
- msgstr "Моля попълнете CAPTCHA."
332
-
333
- #: contact_form.php:770
334
  msgid "Contact from"
335
  msgstr "Форма за контакт"
336
 
337
- #: contact_form.php:778
338
  msgid "Email"
339
  msgstr "Email"
340
 
341
- #: contact_form.php:792
342
  msgid "Site"
343
  msgstr "Сайт"
344
 
345
- #: contact_form.php:837
346
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
347
  msgstr ""
348
  "Ако видиждате това значи, че вашият MIME клиент за електронна поща не "
349
  "поддържа MIME тип!"
350
 
351
- #: contact_form.php:891
352
  msgid "FAQ"
353
  msgstr "FAQ"
354
 
355
- #: contact_form.php:892
356
  msgid "Support"
357
  msgstr "Поддръжка"
358
 
 
 
 
 
359
  #~ msgid "E-Mail Addresse:"
360
  #~ msgstr "E-mail адрес:"
361
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: bg_BG\n"
24
  msgid "Read more"
25
  msgstr "Прочетете повече"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
57
  "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com "
58
  "или попълнете нашата форма за контакти на нашия сайт"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Настройки на Формата за контакт"
63
 
65
  msgid "Contact Form"
66
  msgstr "Форма за контакт"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Име:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-mail адрес:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Тема:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Съобщение:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Прикачване на файл:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Изпрати"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Вашето име е задължително."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Правилният Email адрес е задължителен."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Заглавието е задължитено."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Текстовото съобщение е задължително."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Вашето име е задължително."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Прикаченият файл не се поддържа"
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Моля попълнете CAPTCHA."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Благодарим Ви, че се свързахте с нас."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
146
 
147
+ #: contact_form.php:376
148
+ #, fuzzy
149
+ msgid "Please input correct 'FROM' email. Settings are not saved."
150
+ msgstr "Моля, въведете коректен Email. Настройките не са запазени."
151
+
152
+ #: contact_form.php:381
153
+ msgid "Options saved."
154
+ msgstr "Опциите са запазени"
155
+
156
+ #: contact_form.php:406
157
  msgid ""
158
  "If you would like to add a Contact Form to your website, just copy and put "
159
  "this shortcode onto your post or page or widget:"
161
  "Ако искате да добавите формата за контакт на своят сайт копирайте и "
162
  "поставете този код в страницата или публикацията или джаджа:"
163
 
164
+ #: contact_form.php:407
165
  msgid ""
166
  "If information in the below fields are empty then the message will be send "
167
  "to an address which was specified during registration."
169
  "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено "
170
  "на Email адрес, който е определен по време на регистрацията"
171
 
172
+ #: contact_form.php:411
173
  msgid "Use email of wordpress user:"
174
  msgstr "Използвайте Email на Wordpress потребител:"
175
 
176
+ #: contact_form.php:415
177
  msgid "Select user name"
178
  msgstr "Избиране на потребител"
179
 
180
+ #: contact_form.php:420
181
  msgid "Set a name of user who will get messages from a contact form."
182
  msgstr ""
183
  "Задайте името на потребителя, който ще получава съобщенията от формата за "
184
  "контакт."
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "Използвайте този Email:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr ""
193
  "Задаване на Email адрес, който ще се използва за получаване на съобщения."
194
 
195
+ #: contact_form.php:431
196
  msgid "Additional options"
197
  msgstr "Допълнителни настройки"
198
 
199
+ #: contact_form.php:434
200
  msgid "Display Attachment block"
201
  msgstr "Покажи опция за прикачване на файл"
202
 
203
+ #: contact_form.php:436
204
  msgid "Users can attach files of the following types"
205
  msgstr "Потребителите могат да прикачват файлове от следните видове"
206
 
207
+ #: contact_form.php:440
208
  msgid "Display Attachment explanations"
209
  msgstr ""
210
 
211
+ #: contact_form.php:442
212
  msgid "Display explanations after Attachment block"
213
  msgstr ""
214
 
215
+ #: contact_form.php:446
216
  msgid "Display Send me a copy block"
217
  msgstr "Показване на опция за изпращане на копие"
218
 
219
+ #: contact_form.php:452
220
  msgid "What use?"
221
  msgstr ""
222
 
223
+ #: contact_form.php:455
224
  msgid "Wp-mail"
225
  msgstr "Wp-mail"
226
 
227
+ #: contact_form.php:456
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr ""
230
 
231
+ #: contact_form.php:462
232
  msgid "Mail"
233
  msgstr "Mail"
234
 
235
+ #: contact_form.php:463
236
  msgid "To send mail you can use the php mail function"
237
  msgstr ""
238
 
239
+ #: contact_form.php:467
240
+ #, fuzzy
241
+ msgid "Change text for 'FROM' field of the email"
242
  msgstr "Промяна от полета на формата за контакт"
243
 
244
+ #: contact_form.php:473
245
+ msgid "Select email for 'FROM' field of the email"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:475
249
+ msgid ""
250
+ "In the field 'From' in the mail it will use email of that user who fills the "
251
+ "form."
252
+ msgstr ""
253
+
254
+ #: contact_form.php:477
255
+ msgid "In the field 'From' it will use this email."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:481
259
  msgid "Display phone field"
260
  msgstr ""
261
 
262
+ #: contact_form.php:487
263
  msgid "Required field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:489 contact_form.php:953
267
  msgid "Name"
268
  msgstr "Име"
269
 
270
+ #: contact_form.php:490
271
  #, fuzzy
272
  msgid "E-Mail Address"
273
  msgstr "E-mail адрес:"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr ""
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "Относно"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "Съобщение"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr ""
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "Изпратено от (ip адрес)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "Дата/Час"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Идва от (referer)"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "Използвайки (user agent)"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "Промяна на етикетите за полета във формата за контакт"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr ""
369
 
370
+ #: contact_form.php:579
371
  #, fuzzy
372
  msgid "Display text"
373
  msgstr "Покажи опция за прикачване на файл"
374
 
375
+ #: contact_form.php:588 contact_form.php:594
376
  msgid "Text"
377
  msgstr ""
378
 
379
+ #: contact_form.php:601
380
  msgid "Redirect to page"
381
  msgstr ""
382
 
383
+ #: contact_form.php:602
384
  msgid "Url"
385
  msgstr ""
386
 
387
+ #: contact_form.php:607
388
  msgid "Save Changes"
389
  msgstr "Запис на промените"
390
 
391
+ #: contact_form.php:646
392
  msgid "Sorry, your e-mail could not be delivered."
393
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
394
 
395
+ #: contact_form.php:716
396
  msgid "You can attach files of the following types"
397
  msgstr "Можете да прикачвате файлове от следните типове"
398
 
399
+ #: contact_form.php:724
400
  msgid "Send me a copy"
401
  msgstr "Изпрати ми копие"
402
 
403
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  msgid "Contact from"
405
  msgstr "Форма за контакт"
406
 
407
+ #: contact_form.php:956
408
  msgid "Email"
409
  msgstr "Email"
410
 
411
+ #: contact_form.php:970
412
  msgid "Site"
413
  msgstr "Сайт"
414
 
415
+ #: contact_form.php:1021
416
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
417
  msgstr ""
418
  "Ако видиждате това значи, че вашият MIME клиент за електронна поща не "
419
  "поддържа MIME тип!"
420
 
421
+ #: contact_form.php:1078
422
  msgid "FAQ"
423
  msgstr "FAQ"
424
 
425
+ #: contact_form.php:1079
426
  msgid "Support"
427
  msgstr "Поддръжка"
428
 
429
+ #: contact_form.php:1125
430
+ msgid "Are you sure you want to delete this language?"
431
+ msgstr ""
432
+
433
  #~ msgid "E-Mail Addresse:"
434
  #~ msgstr "E-mail адрес:"
435
 
languages/contact_form-cs_CZ.mo CHANGED
Binary file
languages/contact_form-cs_CZ.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-11-20 10:14+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:14+0200\n"
7
  "Last-Translator: Petr Zápotocký <petr.zapotocky@centrum.cz>\n"
8
  "Language-Team: Petr Zápotocký <\\tpetr.zapotocky@centrum.cz>\n"
9
  "Language: cs_CZ\n"
@@ -24,7 +24,7 @@ msgstr "Aktivované pluginy"
24
  msgid "Read more"
25
  msgstr "Čti více"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Nastavení"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Pokud máte dotazy, kontaktujte nás na mail: plugin@bestwebsoft.com nebo přes "
58
  "náš kontaktní formulář"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Nastavení kontaktního formuláře"
63
 
@@ -65,40 +65,72 @@ msgstr "Nastavení kontaktního formuláře"
65
  msgid "Contact Form"
66
  msgstr "Kontaktní formulář"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Jméno:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-Mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Předmět:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Zpráva:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Příloha:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Děkujeme za zprávu."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
@@ -106,19 +138,24 @@ msgstr ""
106
  "Pokud vyberete \"Přesměrování na stránku\" do políčka url byste měli vložit "
107
  "adresu v tomto formátu"
108
 
109
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
110
- msgid "Options saved."
111
- msgstr "Nastavení uloženo."
112
-
113
- #: contact_form.php:268
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Uživatel neexistuje. Nastavení neuloženo."
116
 
117
- #: contact_form.php:278
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Vložte správný mail. Nastavení neuloženo."
120
 
121
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
  "If you would like to add a Contact Form to your website, just copy and put "
124
  "this shortcode onto your post or page or widget:"
@@ -126,7 +163,7 @@ msgstr ""
126
  "Pokud chcete vložit kontaktní formulář na stránku, zkopírujte a vložte tento "
127
  "kód do přípsěvku, stránky nebo widgetu:"
128
 
129
- #: contact_form.php:292
130
  msgid ""
131
  "If information in the below fields are empty then the message will be send "
132
  "to an address which was specified during registration."
@@ -134,225 +171,262 @@ msgstr ""
134
  "Pokud nebudou informace vyplněny, zprávy budou zasílány na mail, který byl "
135
  "uveden při registraci."
136
 
137
- #: contact_form.php:296
138
  msgid "Use email of wordpress user:"
139
  msgstr "Použít email uživatele wordpressu:"
140
 
141
- #: contact_form.php:302
142
  msgid "Select user name"
143
  msgstr "Vyberte uživatelské jméno"
144
 
145
- #: contact_form.php:307
146
  msgid "Set a name of user who will get messages from a contact form."
147
  msgstr ""
148
  "Nastavte uživatele, který bude dostávat zprávy z kontaktního formuláře."
149
 
150
- #: contact_form.php:311
151
  msgid "Use this email:"
152
  msgstr "Použít tento email:"
153
 
154
- #: contact_form.php:317
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Nastavit email, který bude použit pro příjem zpráv."
157
 
158
- #: contact_form.php:321
159
  msgid "Additional options"
160
  msgstr "Další nastavení"
161
 
162
- #: contact_form.php:324
163
  msgid "Display Attachment block"
164
  msgstr "Zobrazit možnost přílohy"
165
 
166
- #: contact_form.php:329
167
  msgid "Users can attach files of the following types"
168
  msgstr "Uživatelé mohou vkládat soubory těchto typů"
169
 
170
- #: contact_form.php:333
171
  msgid "Display Attachment explanations"
172
  msgstr "Zobrazit vysvětlivky k příloze."
173
 
174
- #: contact_form.php:338
175
  msgid "Display explanations after Attachment block"
176
  msgstr "Zobrazit vysvětlivky po bloku s přílohou."
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "Zobrazit Zaslat kopii"
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr "K čemu?"
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr "Pro zaslání mailu můžete použít wordpress wp_mail funkce"
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr "Pro zaslání mailu můžete použít php mail funkce"
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "Změnit políčko OD"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "Jméno"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "E-Mail:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Předmět"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Zpráva"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr "Zobrazit přidané info v mailu."
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Zasláno z (ip adresa)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Datum / Čas"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Příchozí od"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "Používání"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Změnit popisek políček"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr "Akce po zaslání mailu."
262
 
263
- #: contact_form.php:424
264
  msgid "Display text"
265
  msgstr "Zobraz text"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr "Text"
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr "Přesměrovat na stránku"
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr "Url"
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "Uložit změny"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "Omlouváme se, váš email nemohl být odeslán."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "Můžete přiložit soubory těchto typů"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "Zaslat mi kopii"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "Zaslat"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "Jméno je požadováno."
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "E-mail je požadován."
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "Předmět je požadován."
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "Zpráva je požadována."
314
-
315
- #: contact_form.php:606
316
- #, fuzzy
317
- msgid "Phone is required field."
318
- msgstr "Jméno je požadováno."
319
-
320
- #: contact_form.php:607
321
- msgid "Please make corrections below and try again."
322
- msgstr "Prosím opravte následující chyby a zkuste to znovu."
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "Příloha nelze odeslat."
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "Prosím opište následující text."
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "Kontaktní formulář"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "E-Mail"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "Stránka"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr "Když uvidíte MIME, váš klient neakceptoval MIME typy."
347
 
348
- #: contact_form.php:891
349
  msgid "FAQ"
350
  msgstr "FAQ"
351
 
352
- #: contact_form.php:892
353
  msgid "Support"
354
  msgstr "Podpora"
355
 
 
 
 
 
356
  #~ msgid "E-Mail Addresse:"
357
  #~ msgstr "Indirizzo e-mail:"
358
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: Petr Zápotocký <petr.zapotocky@centrum.cz>\n"
8
  "Language-Team: Petr Zápotocký <\\tpetr.zapotocky@centrum.cz>\n"
9
  "Language: cs_CZ\n"
24
  msgid "Read more"
25
  msgstr "Čti více"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Nastavení"
30
 
57
  "Pokud máte dotazy, kontaktujte nás na mail: plugin@bestwebsoft.com nebo přes "
58
  "náš kontaktní formulář"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Nastavení kontaktního formuláře"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontaktní formulář"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Jméno:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-Mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Předmět:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Zpráva:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Příloha:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Zaslat"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Jméno je požadováno."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "E-mail je požadován."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Předmět je požadován."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Zpráva je požadována."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Jméno je požadováno."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Příloha nelze odeslat."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Prosím opište následující text."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Prosím opravte následující chyby a zkuste to znovu."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Děkujeme za zprávu."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
138
  "Pokud vyberete \"Přesměrování na stránku\" do políčka url byste měli vložit "
139
  "adresu v tomto formátu"
140
 
141
+ #: contact_form.php:365
 
 
 
 
142
  msgid "Such user is not exist. Settings are not saved."
143
  msgstr "Uživatel neexistuje. Nastavení neuloženo."
144
 
145
+ #: contact_form.php:370
146
  msgid "Please input correct email. Settings are not saved."
147
  msgstr "Vložte správný mail. Nastavení neuloženo."
148
 
149
+ #: contact_form.php:376
150
+ #, fuzzy
151
+ msgid "Please input correct 'FROM' email. Settings are not saved."
152
+ msgstr "Vložte správný mail. Nastavení neuloženo."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Nastavení uloženo."
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Pokud chcete vložit kontaktní formulář na stránku, zkopírujte a vložte tento "
164
  "kód do přípsěvku, stránky nebo widgetu:"
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Pokud nebudou informace vyplněny, zprávy budou zasílány na mail, který byl "
172
  "uveden při registraci."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Použít email uživatele wordpressu:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Vyberte uživatelské jméno"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr ""
185
  "Nastavte uživatele, který bude dostávat zprávy z kontaktního formuláře."
186
 
187
+ #: contact_form.php:424
188
  msgid "Use this email:"
189
  msgstr "Použít tento email:"
190
 
191
+ #: contact_form.php:427
192
  msgid "Set an email address which will be used for messages receiving."
193
  msgstr "Nastavit email, který bude použit pro příjem zpráv."
194
 
195
+ #: contact_form.php:431
196
  msgid "Additional options"
197
  msgstr "Další nastavení"
198
 
199
+ #: contact_form.php:434
200
  msgid "Display Attachment block"
201
  msgstr "Zobrazit možnost přílohy"
202
 
203
+ #: contact_form.php:436
204
  msgid "Users can attach files of the following types"
205
  msgstr "Uživatelé mohou vkládat soubory těchto typů"
206
 
207
+ #: contact_form.php:440
208
  msgid "Display Attachment explanations"
209
  msgstr "Zobrazit vysvětlivky k příloze."
210
 
211
+ #: contact_form.php:442
212
  msgid "Display explanations after Attachment block"
213
  msgstr "Zobrazit vysvětlivky po bloku s přílohou."
214
 
215
+ #: contact_form.php:446
216
  msgid "Display Send me a copy block"
217
  msgstr "Zobrazit Zaslat kopii"
218
 
219
+ #: contact_form.php:452
220
  msgid "What use?"
221
  msgstr "K čemu?"
222
 
223
+ #: contact_form.php:455
224
  msgid "Wp-mail"
225
  msgstr "Wp-mail"
226
 
227
+ #: contact_form.php:456
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr "Pro zaslání mailu můžete použít wordpress wp_mail funkce"
230
 
231
+ #: contact_form.php:462
232
  msgid "Mail"
233
  msgstr "Mail"
234
 
235
+ #: contact_form.php:463
236
  msgid "To send mail you can use the php mail function"
237
  msgstr "Pro zaslání mailu můžete použít php mail funkce"
238
 
239
+ #: contact_form.php:467
240
+ #, fuzzy
241
+ msgid "Change text for 'FROM' field of the email"
242
  msgstr "Změnit políčko OD"
243
 
244
+ #: contact_form.php:473
245
+ msgid "Select email for 'FROM' field of the email"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:475
249
+ msgid ""
250
+ "In the field 'From' in the mail it will use email of that user who fills the "
251
+ "form."
252
+ msgstr ""
253
+
254
+ #: contact_form.php:477
255
+ msgid "In the field 'From' it will use this email."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:481
259
  msgid "Display phone field"
260
  msgstr ""
261
 
262
+ #: contact_form.php:487
263
  msgid "Required field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:489 contact_form.php:953
267
  msgid "Name"
268
  msgstr "Jméno"
269
 
270
+ #: contact_form.php:490
271
  #, fuzzy
272
  msgid "E-Mail Address"
273
  msgstr "E-Mail:"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr ""
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "Předmět"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "Zpráva"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr "Zobrazit přidané info v mailu."
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "Zasláno z (ip adresa)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "Datum / Čas"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Příchozí od"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "Používání"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "Změnit popisek políček"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr "Akce po zaslání mailu."
369
 
370
+ #: contact_form.php:579
371
  msgid "Display text"
372
  msgstr "Zobraz text"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr "Text"
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr "Přesměrovat na stránku"
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr "Url"
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "Uložit změny"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "Omlouváme se, váš email nemohl být odeslán."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "Můžete přiložit soubory těchto typů"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "Zaslat mi kopii"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "Kontaktní formulář"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "E-Mail"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "Stránka"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr "Když uvidíte MIME, váš klient neakceptoval MIME typy."
417
 
418
+ #: contact_form.php:1078
419
  msgid "FAQ"
420
  msgstr "FAQ"
421
 
422
+ #: contact_form.php:1079
423
  msgid "Support"
424
  msgstr "Podpora"
425
 
426
+ #: contact_form.php:1125
427
+ msgid "Are you sure you want to delete this language?"
428
+ msgstr ""
429
+
430
  #~ msgid "E-Mail Addresse:"
431
  #~ msgstr "Indirizzo e-mail:"
432
 
languages/contact_form-da_DK.mo CHANGED
Binary file
languages/contact_form-da_DK.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-11-20 10:14+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
  "Language: da_DK\n"
@@ -24,7 +24,7 @@ msgstr "Aktiverede plugins"
24
  msgid "Read more"
25
  msgstr "Læs mere"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Indstillinger"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller "
58
  "bruge kontaktformularen på vores hjemmeside"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Indstillinger for kontaktformular"
63
 
@@ -65,59 +65,97 @@ msgstr "Indstillinger for kontaktformular"
65
  msgid "Contact Form"
66
  msgstr "Kontaktformular"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Navn:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail-adresse:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Emne:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Besked:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Bilag:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Tak fordi du kontaktede os"
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Indstillinger gemt."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr ""
118
  "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
119
 
120
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
123
  "this shortcode onto your post or page or widget:"
@@ -125,7 +163,7 @@ msgstr ""
125
  "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put "
126
  "denne kode i din kommentar eller på din side: "
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
@@ -133,227 +171,264 @@ msgstr ""
133
  "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den "
134
  "adresse, som var angivet ved registreringen."
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "Vælg brugernavn"
143
 
144
- #: contact_form.php:307
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
147
 
148
- #: contact_form.php:311
149
  msgid "Use this email:"
150
  msgstr "Benyt denne e-mail-adresse:"
151
 
152
- #: contact_form.php:317
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr ""
155
  "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
156
 
157
- #: contact_form.php:321
158
  msgid "Additional options"
159
  msgstr "Flere valgmuligheder"
160
 
161
- #: contact_form.php:324
162
  msgid "Display Attachment block"
163
  msgstr "Vis bilag"
164
 
165
- #: contact_form.php:329
166
  msgid "Users can attach files of the following types"
167
  msgstr "Brugere kan vedlægge filer af følgende typer"
168
 
169
- #: contact_form.php:333
170
  msgid "Display Attachment explanations"
171
  msgstr ""
172
 
173
- #: contact_form.php:338
174
  msgid "Display explanations after Attachment block"
175
  msgstr ""
176
 
177
- #: contact_form.php:342
178
  msgid "Display Send me a copy block"
179
  msgstr "Vis \"Send mig en kopi\"-afsnit"
180
 
181
- #: contact_form.php:348
182
  msgid "What use?"
183
  msgstr ""
184
 
185
- #: contact_form.php:353
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
- #: contact_form.php:354
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr ""
192
 
193
- #: contact_form.php:362
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
- #: contact_form.php:363
198
  msgid "To send mail you can use the php mail function"
199
  msgstr ""
200
 
201
- #: contact_form.php:367
202
- msgid "Change FROM fields of the contact form"
 
203
  msgstr "Skift FRA-felterne i kontaktformularen"
204
 
205
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Display phone field"
207
  msgstr ""
208
 
209
- #: contact_form.php:379
210
  msgid "Required field"
211
  msgstr ""
212
 
213
- #: contact_form.php:388 contact_form.php:775
214
  msgid "Name"
215
  msgstr "Navn"
216
 
217
- #: contact_form.php:389
218
  #, fuzzy
219
  msgid "E-Mail Address"
220
  msgstr "E-mail-adresse:"
221
 
222
- #: contact_form.php:390 contact_form.php:783
223
  msgid "Phone"
224
  msgstr ""
225
 
226
- #: contact_form.php:391 contact_form.php:786
227
  msgid "Subject"
228
  msgstr "Emne"
229
 
230
- #: contact_form.php:392 contact_form.php:789
231
  msgid "Message"
232
  msgstr "Besked"
233
 
234
- #: contact_form.php:396
235
  msgid "Display additional info in email"
236
  msgstr "Vis yderligere information i e-mail"
237
 
238
- #: contact_form.php:401 contact_form.php:747
239
  msgid "Sent from (ip address)"
240
  msgstr "Sendt fra (IP-adresse)"
241
 
242
- #: contact_form.php:402 contact_form.php:752
243
  msgid "Date/Time"
244
  msgstr "Dato/klokkeslæt"
245
 
246
- #: contact_form.php:403 contact_form.php:757
247
  msgid "Coming from (referer)"
248
  msgstr "Sendt fra (referent)"
249
 
250
- #: contact_form.php:404 contact_form.php:762
251
  msgid "Using (user agent)"
252
  msgstr "Med (user agent)"
253
 
254
- #: contact_form.php:408
255
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
256
  msgstr "Skifte etiketter til felterne i kontaktformularen"
257
 
258
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Action after the send mail"
260
  msgstr ""
261
 
262
- #: contact_form.php:424
263
  #, fuzzy
264
  msgid "Display text"
265
  msgstr "Vis bilag"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr ""
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr ""
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr ""
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "Gem ændringer"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "Beklager, men din e-mail kunne ikke leveres."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "Du kan vedhæfte filer af følgende typer"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "Send mig en kopi"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "Send"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "Dit navn er obligatorisk"
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "En korrekt e-mail-adresse er påkrævet."
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "Emnefeltet er obligatorisk."
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "Du skal angive en besked"
314
-
315
- #: contact_form.php:606
316
- #, fuzzy
317
- msgid "Phone is required field."
318
- msgstr "Dit navn er obligatorisk"
319
-
320
- #: contact_form.php:607
321
- msgid "Please make corrections below and try again."
322
- msgstr "Ret venligst nedenstående og prøv igen."
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "Bilaget er korrupt."
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "Venligst udfyld CAPTCHA-feltet."
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "Kontakt fra"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "E-mail"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "Site"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr ""
347
  "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "Ofte stillede spørgsmål"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Support"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Indirizzo e-mail:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
  "Language: da_DK\n"
24
  msgid "Read more"
25
  msgstr "Læs mere"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Indstillinger"
30
 
57
  "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller "
58
  "bruge kontaktformularen på vores hjemmeside"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Indstillinger for kontaktformular"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontaktformular"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Navn:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-mail-adresse:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Emne:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Besked:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Bilag:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Send"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Dit navn er obligatorisk"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "En korrekt e-mail-adresse er påkrævet."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Emnefeltet er obligatorisk."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Du skal angive en besked"
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Dit navn er obligatorisk"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Bilaget er korrupt."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Venligst udfyld CAPTCHA-feltet."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Ret venligst nedenstående og prøv igen."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Tak fordi du kontaktede os"
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr ""
146
  "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr ""
152
+ "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Indstillinger gemt."
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put "
164
  "denne kode i din kommentar eller på din side: "
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den "
172
  "adresse, som var angivet ved registreringen."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Vælg brugernavn"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "Benyt denne e-mail-adresse:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr ""
193
  "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
194
 
195
+ #: contact_form.php:431
196
  msgid "Additional options"
197
  msgstr "Flere valgmuligheder"
198
 
199
+ #: contact_form.php:434
200
  msgid "Display Attachment block"
201
  msgstr "Vis bilag"
202
 
203
+ #: contact_form.php:436
204
  msgid "Users can attach files of the following types"
205
  msgstr "Brugere kan vedlægge filer af følgende typer"
206
 
207
+ #: contact_form.php:440
208
  msgid "Display Attachment explanations"
209
  msgstr ""
210
 
211
+ #: contact_form.php:442
212
  msgid "Display explanations after Attachment block"
213
  msgstr ""
214
 
215
+ #: contact_form.php:446
216
  msgid "Display Send me a copy block"
217
  msgstr "Vis \"Send mig en kopi\"-afsnit"
218
 
219
+ #: contact_form.php:452
220
  msgid "What use?"
221
  msgstr ""
222
 
223
+ #: contact_form.php:455
224
  msgid "Wp-mail"
225
  msgstr "Wp-mail"
226
 
227
+ #: contact_form.php:456
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr ""
230
 
231
+ #: contact_form.php:462
232
  msgid "Mail"
233
  msgstr "Mail"
234
 
235
+ #: contact_form.php:463
236
  msgid "To send mail you can use the php mail function"
237
  msgstr ""
238
 
239
+ #: contact_form.php:467
240
+ #, fuzzy
241
+ msgid "Change text for 'FROM' field of the email"
242
  msgstr "Skift FRA-felterne i kontaktformularen"
243
 
244
+ #: contact_form.php:473
245
+ msgid "Select email for 'FROM' field of the email"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:475
249
+ msgid ""
250
+ "In the field 'From' in the mail it will use email of that user who fills the "
251
+ "form."
252
+ msgstr ""
253
+
254
+ #: contact_form.php:477
255
+ msgid "In the field 'From' it will use this email."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:481
259
  msgid "Display phone field"
260
  msgstr ""
261
 
262
+ #: contact_form.php:487
263
  msgid "Required field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:489 contact_form.php:953
267
  msgid "Name"
268
  msgstr "Navn"
269
 
270
+ #: contact_form.php:490
271
  #, fuzzy
272
  msgid "E-Mail Address"
273
  msgstr "E-mail-adresse:"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr ""
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "Emne"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "Besked"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr "Vis yderligere information i e-mail"
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "Sendt fra (IP-adresse)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "Dato/klokkeslæt"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Sendt fra (referent)"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "Med (user agent)"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "Skifte etiketter til felterne i kontaktformularen"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr ""
369
 
370
+ #: contact_form.php:579
371
  #, fuzzy
372
  msgid "Display text"
373
  msgstr "Vis bilag"
374
 
375
+ #: contact_form.php:588 contact_form.php:594
376
  msgid "Text"
377
  msgstr ""
378
 
379
+ #: contact_form.php:601
380
  msgid "Redirect to page"
381
  msgstr ""
382
 
383
+ #: contact_form.php:602
384
  msgid "Url"
385
  msgstr ""
386
 
387
+ #: contact_form.php:607
388
  msgid "Save Changes"
389
  msgstr "Gem ændringer"
390
 
391
+ #: contact_form.php:646
392
  msgid "Sorry, your e-mail could not be delivered."
393
  msgstr "Beklager, men din e-mail kunne ikke leveres."
394
 
395
+ #: contact_form.php:716
396
  msgid "You can attach files of the following types"
397
  msgstr "Du kan vedhæfte filer af følgende typer"
398
 
399
+ #: contact_form.php:724
400
  msgid "Send me a copy"
401
  msgstr "Send mig en kopi"
402
 
403
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  msgid "Contact from"
405
  msgstr "Kontakt fra"
406
 
407
+ #: contact_form.php:956
408
  msgid "Email"
409
  msgstr "E-mail"
410
 
411
+ #: contact_form.php:970
412
  msgid "Site"
413
  msgstr "Site"
414
 
415
+ #: contact_form.php:1021
416
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
417
  msgstr ""
418
  "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
419
 
420
+ #: contact_form.php:1078
421
  msgid "FAQ"
422
  msgstr "Ofte stillede spørgsmål"
423
 
424
+ #: contact_form.php:1079
425
  msgid "Support"
426
  msgstr "Support"
427
 
428
+ #: contact_form.php:1125
429
+ msgid "Are you sure you want to delete this language?"
430
+ msgstr ""
431
+
432
  #~ msgid "E-Mail Addresse:"
433
  #~ msgstr "Indirizzo e-mail:"
434
 
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-11-20 10:14+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: de_DE\n"
@@ -24,7 +24,7 @@ msgstr "Aktivierte PlugIns"
24
  msgid "Read more"
25
  msgstr "Lesen Sie mehr"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Einstellungen"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das "
58
  "Kontakformular auf unserer Webseite aus"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Contact Form Einstellungen"
63
 
@@ -65,60 +65,100 @@ msgstr "Contact Form Einstellungen"
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Name:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-Mail-Adresse:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Betreff:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Nachricht:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Anhang:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Danke für Ihre Nachricht."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Einstellungen gespeichert."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr ""
118
  "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht "
119
  "gespeichert."
120
 
121
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
  "If you would like to add a Contact Form to your website, just copy and put "
124
  "this shortcode onto your post or page or widget:"
@@ -126,7 +166,7 @@ msgstr ""
126
  "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie "
127
  "einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
128
 
129
- #: contact_form.php:292
130
  msgid ""
131
  "If information in the below fields are empty then the message will be send "
132
  "to an address which was specified during registration."
@@ -134,228 +174,264 @@ msgstr ""
134
  "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse "
135
  "gesandt, die bei der Registrierung angegeben wurde."
136
 
137
- #: contact_form.php:296
138
  msgid "Use email of wordpress user:"
139
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
140
 
141
- #: contact_form.php:302
142
  msgid "Select user name"
143
  msgstr "Wähle Benutzer"
144
 
145
- #: contact_form.php:307
146
  msgid "Set a name of user who will get messages from a contact form."
147
  msgstr ""
148
  "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen "
149
  "sollen."
150
 
151
- #: contact_form.php:311
152
  msgid "Use this email:"
153
  msgstr "Verwende diese E-Mail-Adresse:"
154
 
155
- #: contact_form.php:317
156
  msgid "Set an email address which will be used for messages receiving."
157
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
158
 
159
- #: contact_form.php:321
160
  msgid "Additional options"
161
  msgstr "Erweiterte Optionen"
162
 
163
- #: contact_form.php:324
164
  msgid "Display Attachment block"
165
  msgstr "Anhänge erlauben"
166
 
167
- #: contact_form.php:329
168
  msgid "Users can attach files of the following types"
169
  msgstr "Benutzer können folgende Dateitypen anhängen"
170
 
171
- #: contact_form.php:333
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
- #: contact_form.php:338
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
- #: contact_form.php:342
180
  msgid "Display Send me a copy block"
181
  msgstr "Kopie-an-mich anzeigen"
182
 
183
- #: contact_form.php:348
184
  msgid "What use?"
185
  msgstr ""
186
 
187
- #: contact_form.php:353
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
- #: contact_form.php:354
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
- #: contact_form.php:362
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
- #: contact_form.php:363
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
- #: contact_form.php:367
204
- msgid "Change FROM fields of the contact form"
 
205
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
206
 
207
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  msgid "Display phone field"
209
  msgstr ""
210
 
211
- #: contact_form.php:379
212
  msgid "Required field"
213
  msgstr ""
214
 
215
- #: contact_form.php:388 contact_form.php:775
216
  msgid "Name"
217
  msgstr "Nome"
218
 
219
- #: contact_form.php:389
220
  #, fuzzy
221
  msgid "E-Mail Address"
222
  msgstr "E-Mail-Adresse:"
223
 
224
- #: contact_form.php:390 contact_form.php:783
225
  msgid "Phone"
226
  msgstr ""
227
 
228
- #: contact_form.php:391 contact_form.php:786
229
  msgid "Subject"
230
  msgstr "Betreff"
231
 
232
- #: contact_form.php:392 contact_form.php:789
233
  msgid "Message"
234
  msgstr "Nachricht"
235
 
236
- #: contact_form.php:396
237
  msgid "Display additional info in email"
238
  msgstr ""
239
 
240
- #: contact_form.php:401 contact_form.php:747
241
  msgid "Sent from (ip address)"
242
  msgstr "Gesendet von (IP-Adresse)"
243
 
244
- #: contact_form.php:402 contact_form.php:752
245
  msgid "Date/Time"
246
  msgstr "Datum / Uhrzeit"
247
 
248
- #: contact_form.php:403 contact_form.php:757
249
  msgid "Coming from (referer)"
250
  msgstr "gesendet von (referer)"
251
 
252
- #: contact_form.php:404 contact_form.php:762
253
  msgid "Using (user agent)"
254
  msgstr "mit (user agent)"
255
 
256
- #: contact_form.php:408
257
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
258
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
259
 
260
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Action after the send mail"
262
  msgstr ""
263
 
264
- #: contact_form.php:424
265
  #, fuzzy
266
  msgid "Display text"
267
  msgstr "Anhänge erlauben"
268
 
269
- #: contact_form.php:425
270
  msgid "Text"
271
  msgstr ""
272
 
273
- #: contact_form.php:426
274
  msgid "Redirect to page"
275
  msgstr ""
276
 
277
- #: contact_form.php:427
278
  msgid "Url"
279
  msgstr ""
280
 
281
- #: contact_form.php:432
282
  msgid "Save Changes"
283
  msgstr "Änderungen speichern"
284
 
285
- #: contact_form.php:470
286
  msgid "Sorry, your e-mail could not be delivered."
287
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
288
 
289
- #: contact_form.php:540
290
  msgid "You can attach files of the following types"
291
  msgstr "Sie können folgende Dateitypen anhängen"
292
 
293
- #: contact_form.php:548
294
  msgid "Send me a copy"
295
  msgstr "Kopie an mich senden"
296
 
297
- #: contact_form.php:558
298
- msgid "Submit"
299
- msgstr "senden"
300
-
301
- #: contact_form.php:598
302
- msgid "Your name is required."
303
- msgstr "Ihr Name wird benötigt"
304
-
305
- #: contact_form.php:600
306
- msgid "A proper e-mail address is required."
307
- msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
308
-
309
- #: contact_form.php:602
310
- msgid "Subject text is required."
311
- msgstr "Bitte geben Sie einen Betreff ein."
312
-
313
- #: contact_form.php:604
314
- msgid "Message text is required."
315
- msgstr "Bitte geben Sie eine Nachricht ein."
316
-
317
- #: contact_form.php:606
318
- #, fuzzy
319
- msgid "Phone is required field."
320
- msgstr "Ihr Name wird benötigt"
321
-
322
- #: contact_form.php:607
323
- msgid "Please make corrections below and try again."
324
- msgstr ""
325
- "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
326
-
327
- #: contact_form.php:639
328
- msgid "Attachment is broken."
329
- msgstr "Anhang scheint defekt zu sein."
330
-
331
- #: contact_form.php:654
332
- msgid "Please complete the CAPTCHA."
333
- msgstr "Bitte ergänzen Sie das CAPTCHA."
334
-
335
- #: contact_form.php:770
336
  msgid "Contact from"
337
  msgstr "Kontakt von"
338
 
339
- #: contact_form.php:778
340
  msgid "Email"
341
  msgstr "E-Mail"
342
 
343
- #: contact_form.php:792
344
  msgid "Site"
345
  msgstr "Site"
346
 
347
- #: contact_form.php:837
348
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
349
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
350
 
351
- #: contact_form.php:891
352
  msgid "FAQ"
353
  msgstr "Häufig gestellte Fragen (FAQ)"
354
 
355
- #: contact_form.php:892
356
  msgid "Support"
357
  msgstr "Unterstützung"
358
 
 
 
 
 
359
  #~ msgid "E-Mail Addresse:"
360
  #~ msgstr "Indirizzo e-mail:"
361
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: de_DE\n"
24
  msgid "Read more"
25
  msgstr "Lesen Sie mehr"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Einstellungen"
30
 
57
  "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das "
58
  "Kontakformular auf unserer Webseite aus"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Contact Form Einstellungen"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Name:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-Mail-Adresse:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Betreff:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Nachricht:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Anhang:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "senden"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Ihr Name wird benötigt"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Bitte geben Sie einen Betreff ein."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Bitte geben Sie eine Nachricht ein."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Ihr Name wird benötigt"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Anhang scheint defekt zu sein."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Bitte ergänzen Sie das CAPTCHA."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr ""
128
+ "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
129
+
130
+ #: contact_form.php:161
131
  msgid "Thank you for contacting us."
132
  msgstr "Danke für Ihre Nachricht."
133
 
134
+ #: contact_form.php:356
135
  msgid ""
136
  "If the option 'Redirect to page' is selected then url field should be "
137
  "fillied in the following format"
138
  msgstr ""
139
 
140
+ #: contact_form.php:365
 
 
 
 
141
  msgid "Such user is not exist. Settings are not saved."
142
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
143
 
144
+ #: contact_form.php:370
145
  msgid "Please input correct email. Settings are not saved."
146
  msgstr ""
147
  "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht "
148
  "gespeichert."
149
 
150
+ #: contact_form.php:376
151
+ #, fuzzy
152
+ msgid "Please input correct 'FROM' email. Settings are not saved."
153
+ msgstr ""
154
+ "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht "
155
+ "gespeichert."
156
+
157
+ #: contact_form.php:381
158
+ msgid "Options saved."
159
+ msgstr "Einstellungen gespeichert."
160
+
161
+ #: contact_form.php:406
162
  msgid ""
163
  "If you would like to add a Contact Form to your website, just copy and put "
164
  "this shortcode onto your post or page or widget:"
166
  "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie "
167
  "einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
168
 
169
+ #: contact_form.php:407
170
  msgid ""
171
  "If information in the below fields are empty then the message will be send "
172
  "to an address which was specified during registration."
174
  "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse "
175
  "gesandt, die bei der Registrierung angegeben wurde."
176
 
177
+ #: contact_form.php:411
178
  msgid "Use email of wordpress user:"
179
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
180
 
181
+ #: contact_form.php:415
182
  msgid "Select user name"
183
  msgstr "Wähle Benutzer"
184
 
185
+ #: contact_form.php:420
186
  msgid "Set a name of user who will get messages from a contact form."
187
  msgstr ""
188
  "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen "
189
  "sollen."
190
 
191
+ #: contact_form.php:424
192
  msgid "Use this email:"
193
  msgstr "Verwende diese E-Mail-Adresse:"
194
 
195
+ #: contact_form.php:427
196
  msgid "Set an email address which will be used for messages receiving."
197
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
198
 
199
+ #: contact_form.php:431
200
  msgid "Additional options"
201
  msgstr "Erweiterte Optionen"
202
 
203
+ #: contact_form.php:434
204
  msgid "Display Attachment block"
205
  msgstr "Anhänge erlauben"
206
 
207
+ #: contact_form.php:436
208
  msgid "Users can attach files of the following types"
209
  msgstr "Benutzer können folgende Dateitypen anhängen"
210
 
211
+ #: contact_form.php:440
212
  msgid "Display Attachment explanations"
213
  msgstr ""
214
 
215
+ #: contact_form.php:442
216
  msgid "Display explanations after Attachment block"
217
  msgstr ""
218
 
219
+ #: contact_form.php:446
220
  msgid "Display Send me a copy block"
221
  msgstr "Kopie-an-mich anzeigen"
222
 
223
+ #: contact_form.php:452
224
  msgid "What use?"
225
  msgstr ""
226
 
227
+ #: contact_form.php:455
228
  msgid "Wp-mail"
229
  msgstr "Wp-mail"
230
 
231
+ #: contact_form.php:456
232
  msgid "To send mail you can use the wordpress wp_mail function"
233
  msgstr ""
234
 
235
+ #: contact_form.php:462
236
  msgid "Mail"
237
  msgstr "Mail"
238
 
239
+ #: contact_form.php:463
240
  msgid "To send mail you can use the php mail function"
241
  msgstr ""
242
 
243
+ #: contact_form.php:467
244
+ #, fuzzy
245
+ msgid "Change text for 'FROM' field of the email"
246
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
247
 
248
+ #: contact_form.php:473
249
+ msgid "Select email for 'FROM' field of the email"
250
+ msgstr ""
251
+
252
+ #: contact_form.php:475
253
+ msgid ""
254
+ "In the field 'From' in the mail it will use email of that user who fills the "
255
+ "form."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:477
259
+ msgid "In the field 'From' it will use this email."
260
+ msgstr ""
261
+
262
+ #: contact_form.php:481
263
  msgid "Display phone field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:487
267
  msgid "Required field"
268
  msgstr ""
269
 
270
+ #: contact_form.php:489 contact_form.php:953
271
  msgid "Name"
272
  msgstr "Nome"
273
 
274
+ #: contact_form.php:490
275
  #, fuzzy
276
  msgid "E-Mail Address"
277
  msgstr "E-Mail-Adresse:"
278
 
279
+ #: contact_form.php:491 contact_form.php:961
280
  msgid "Phone"
281
  msgstr ""
282
 
283
+ #: contact_form.php:492 contact_form.php:964
284
  msgid "Subject"
285
  msgstr "Betreff"
286
 
287
+ #: contact_form.php:493 contact_form.php:967
288
  msgid "Message"
289
  msgstr "Nachricht"
290
 
291
+ #: contact_form.php:497
292
  msgid "Display additional info in email"
293
  msgstr ""
294
 
295
+ #: contact_form.php:502 contact_form.php:925
296
  msgid "Sent from (ip address)"
297
  msgstr "Gesendet von (IP-Adresse)"
298
 
299
+ #: contact_form.php:503 contact_form.php:930
300
  msgid "Date/Time"
301
  msgstr "Datum / Uhrzeit"
302
 
303
+ #: contact_form.php:504 contact_form.php:935
304
  msgid "Coming from (referer)"
305
  msgstr "gesendet von (referer)"
306
 
307
+ #: contact_form.php:505 contact_form.php:940
308
  msgid "Using (user agent)"
309
  msgstr "mit (user agent)"
310
 
311
+ #: contact_form.php:509
312
+ msgid "Language settings for label fields"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:518
316
+ msgid "Add language"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:522
320
+ #, fuzzy
321
+ msgid "Change label for fields of the contact form and error messages"
322
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
323
 
324
+ #: contact_form.php:527 contact_form.php:580
325
+ msgid "English"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:542 contact_form.php:562
329
+ msgid "Error message for name field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:543 contact_form.php:563
333
+ msgid "Error message for email field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:544 contact_form.php:564
337
+ msgid "Error message for phone field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:545 contact_form.php:565
341
+ msgid "Error message for subject field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:546 contact_form.php:566
345
+ msgid "Error message for message field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:547 contact_form.php:567
349
+ msgid "Error message for attachment field"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:548 contact_form.php:568
353
+ msgid "Error message for captcha"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:549 contact_form.php:569
357
+ msgid "Error message for all form"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
361
+ #: contact_form.php:595
362
+ msgid "Use shortcode"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
366
+ #: contact_form.php:595
367
+ msgid "for this language"
368
+ msgstr ""
369
+
370
+ #: contact_form.php:577
371
  msgid "Action after the send mail"
372
  msgstr ""
373
 
374
+ #: contact_form.php:579
375
  #, fuzzy
376
  msgid "Display text"
377
  msgstr "Anhänge erlauben"
378
 
379
+ #: contact_form.php:588 contact_form.php:594
380
  msgid "Text"
381
  msgstr ""
382
 
383
+ #: contact_form.php:601
384
  msgid "Redirect to page"
385
  msgstr ""
386
 
387
+ #: contact_form.php:602
388
  msgid "Url"
389
  msgstr ""
390
 
391
+ #: contact_form.php:607
392
  msgid "Save Changes"
393
  msgstr "Änderungen speichern"
394
 
395
+ #: contact_form.php:646
396
  msgid "Sorry, your e-mail could not be delivered."
397
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
398
 
399
+ #: contact_form.php:716
400
  msgid "You can attach files of the following types"
401
  msgstr "Sie können folgende Dateitypen anhängen"
402
 
403
+ #: contact_form.php:724
404
  msgid "Send me a copy"
405
  msgstr "Kopie an mich senden"
406
 
407
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408
  msgid "Contact from"
409
  msgstr "Kontakt von"
410
 
411
+ #: contact_form.php:956
412
  msgid "Email"
413
  msgstr "E-Mail"
414
 
415
+ #: contact_form.php:970
416
  msgid "Site"
417
  msgstr "Site"
418
 
419
+ #: contact_form.php:1021
420
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
421
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
422
 
423
+ #: contact_form.php:1078
424
  msgid "FAQ"
425
  msgstr "Häufig gestellte Fragen (FAQ)"
426
 
427
+ #: contact_form.php:1079
428
  msgid "Support"
429
  msgstr "Unterstützung"
430
 
431
+ #: contact_form.php:1125
432
+ msgid "Are you sure you want to delete this language?"
433
+ msgstr ""
434
+
435
  #~ msgid "E-Mail Addresse:"
436
  #~ msgstr "Indirizzo e-mail:"
437
 
languages/contact_form-el_GR.mo CHANGED
Binary file
languages/contact_form-el_GR.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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
  "Language: el_GR\n"
@@ -24,7 +24,7 @@ msgstr "Ενεργοποιημένα πρόσθετα"
24
  msgid "Read more"
25
  msgstr "Διαβάστε περισσότερα"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Ρυθμίσεις"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας "
58
  "επικοινωνίας της ιστοσελίδας μας"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Επιλογές φόρμας επικοινωνίας"
63
 
@@ -65,60 +65,99 @@ msgstr "Επιλογές φόρμας επικοινωνίας"
65
  msgid "Contact Form"
66
  msgstr "Φόρμα επικοινωνίας"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Όνομα:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Διεύθυνση e-mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Θέμα:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Μήνυμα:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Επισύναψη:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Ευχαριστούμε για την επικοινωνία."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Οι επιλογές αποθηκεύτηκαν."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr ""
118
  "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν "
119
  "αποθηκεύτηκαν."
120
 
121
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
  "If you would like to add a Contact Form to your website, just copy and put "
124
  "this shortcode onto your post or page or widget:"
@@ -127,7 +166,7 @@ msgstr ""
127
  "αντιγράψτε αυτό τον σύντομο κώδικα στην ανάρτηση, τη σελίδα ή το πρόσθετό "
128
  "σας:"
129
 
130
- #: contact_form.php:292
131
  msgid ""
132
  "If information in the below fields are empty then the message will be send "
133
  "to an address which was specified during registration."
@@ -135,225 +174,262 @@ msgstr ""
135
  "Αν τα παρακάτω πεδία είναι κενά, το μήνυμα θα σταλεί στη διεύθυνση που "
136
  "ορίστηκε κατά την εγγραφή"
137
 
138
- #: contact_form.php:296
139
  msgid "Use email of wordpress user:"
140
  msgstr "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
141
 
142
- #: contact_form.php:302
143
  msgid "Select user name"
144
  msgstr "επιλογή χρήστη"
145
 
146
- #: contact_form.php:307
147
  msgid "Set a name of user who will get messages from a contact form."
148
  msgstr "Τα μηνύματα θα λαμβάνει ο χρήστης"
149
 
150
- #: contact_form.php:311
151
  msgid "Use this email:"
152
  msgstr "Τα μηνύματα θα στέλνονται στο email "
153
 
154
- #: contact_form.php:317
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
157
 
158
- #: contact_form.php:321
159
  msgid "Additional options"
160
  msgstr "Πρόσθετες επιλογές"
161
 
162
- #: contact_form.php:324
163
  msgid "Display Attachment block"
164
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
165
 
166
- #: contact_form.php:329
167
  msgid "Users can attach files of the following types"
168
  msgstr "Οι χρήστες μπορούν να επισυνάψουν αρχεία τύπου"
169
 
170
- #: contact_form.php:333
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
- #: contact_form.php:338
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "Προβολή κουτιού \"Στείλτο και σ' εμένα\""
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr ""
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "Αλλάξτε το πεδίο \"ΑΠΟ\" της φόρμας επικοινωνίας"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "Όνομα"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "Διεύθυνση e-mail:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Θέμα"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Μήνυμα"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Στάλθηκε από (διεύθυνση ip)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Ημερομηνία/Ώρα"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Από (referer)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "με χρήση (user agent)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Αλλαγή ετικετών πεδίων της φόρμας επικοινωνίας"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr ""
262
 
263
- #: contact_form.php:424
264
  #, fuzzy
265
  msgid "Display text"
266
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
267
 
268
- #: contact_form.php:425
269
  msgid "Text"
270
  msgstr ""
271
 
272
- #: contact_form.php:426
273
  msgid "Redirect to page"
274
  msgstr ""
275
 
276
- #: contact_form.php:427
277
  msgid "Url"
278
  msgstr ""
279
 
280
- #: contact_form.php:432
281
  msgid "Save Changes"
282
  msgstr "Αποθήκευση αλλαγών"
283
 
284
- #: contact_form.php:470
285
  msgid "Sorry, your e-mail could not be delivered."
286
  msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
287
 
288
- #: contact_form.php:540
289
  msgid "You can attach files of the following types"
290
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
291
 
292
- #: contact_form.php:548
293
  msgid "Send me a copy"
294
  msgstr "Στείλε μου ένα αντίγραφο"
295
 
296
- #: contact_form.php:558
297
- msgid "Submit"
298
- msgstr "Υποβολή"
299
-
300
- #: contact_form.php:598
301
- msgid "Your name is required."
302
- msgstr "Γράψτε οπωσδήποτε το όνομά σας."
303
-
304
- #: contact_form.php:600
305
- msgid "A proper e-mail address is required."
306
- msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
307
-
308
- #: contact_form.php:602
309
- msgid "Subject text is required."
310
- msgstr "Γράψτε οπωσδήποτε ένα θέμα"
311
-
312
- #: contact_form.php:604
313
- msgid "Message text is required."
314
- msgstr "Απαιτείται κείμενο μηνύματος."
315
-
316
- #: contact_form.php:606
317
- #, fuzzy
318
- msgid "Phone is required field."
319
- msgstr "Γράψτε οπωσδήποτε το όνομά σας."
320
-
321
- #: contact_form.php:607
322
- msgid "Please make corrections below and try again."
323
- msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
324
-
325
- #: contact_form.php:639
326
- msgid "Attachment is broken."
327
- msgstr "Το επισυναπτόμενο δεν λειτουργεί."
328
-
329
- #: contact_form.php:654
330
- msgid "Please complete the CAPTCHA."
331
- msgstr "Συμπληρώστε το CAPTCHA."
332
-
333
- #: contact_form.php:770
334
  msgid "Contact from"
335
  msgstr "Επικοινωνία από"
336
 
337
- #: contact_form.php:778
338
  msgid "Email"
339
  msgstr "E-Mail"
340
 
341
- #: contact_form.php:792
342
  msgid "Site"
343
  msgstr "Ιστοσελίδα"
344
 
345
- #: contact_form.php:837
346
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
347
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "Συχνές ερωτήσεις"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Υποστήριξη"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Indirizzo e-mail:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
  "Language: el_GR\n"
24
  msgid "Read more"
25
  msgstr "Διαβάστε περισσότερα"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Ρυθμίσεις"
30
 
57
  "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας "
58
  "επικοινωνίας της ιστοσελίδας μας"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Επιλογές φόρμας επικοινωνίας"
63
 
65
  msgid "Contact Form"
66
  msgstr "Φόρμα επικοινωνίας"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Όνομα:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Διεύθυνση e-mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Θέμα:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Μήνυμα:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Επισύναψη:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Υποβολή"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Γράψτε οπωσδήποτε το όνομά σας."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Γράψτε οπωσδήποτε ένα θέμα"
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Απαιτείται κείμενο μηνύματος."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Γράψτε οπωσδήποτε το όνομά σας."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Το επισυναπτόμενο δεν λειτουργεί."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Συμπληρώστε το CAPTCHA."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Ευχαριστούμε για την επικοινωνία."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr ""
146
  "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν "
147
  "αποθηκεύτηκαν."
148
 
149
+ #: contact_form.php:376
150
+ #, fuzzy
151
+ msgid "Please input correct 'FROM' email. Settings are not saved."
152
+ msgstr ""
153
+ "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν "
154
+ "αποθηκεύτηκαν."
155
+
156
+ #: contact_form.php:381
157
+ msgid "Options saved."
158
+ msgstr "Οι επιλογές αποθηκεύτηκαν."
159
+
160
+ #: contact_form.php:406
161
  msgid ""
162
  "If you would like to add a Contact Form to your website, just copy and put "
163
  "this shortcode onto your post or page or widget:"
166
  "αντιγράψτε αυτό τον σύντομο κώδικα στην ανάρτηση, τη σελίδα ή το πρόσθετό "
167
  "σας:"
168
 
169
+ #: contact_form.php:407
170
  msgid ""
171
  "If information in the below fields are empty then the message will be send "
172
  "to an address which was specified during registration."
174
  "Αν τα παρακάτω πεδία είναι κενά, το μήνυμα θα σταλεί στη διεύθυνση που "
175
  "ορίστηκε κατά την εγγραφή"
176
 
177
+ #: contact_form.php:411
178
  msgid "Use email of wordpress user:"
179
  msgstr "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
180
 
181
+ #: contact_form.php:415
182
  msgid "Select user name"
183
  msgstr "επιλογή χρήστη"
184
 
185
+ #: contact_form.php:420
186
  msgid "Set a name of user who will get messages from a contact form."
187
  msgstr "Τα μηνύματα θα λαμβάνει ο χρήστης"
188
 
189
+ #: contact_form.php:424
190
  msgid "Use this email:"
191
  msgstr "Τα μηνύματα θα στέλνονται στο email "
192
 
193
+ #: contact_form.php:427
194
  msgid "Set an email address which will be used for messages receiving."
195
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
196
 
197
+ #: contact_form.php:431
198
  msgid "Additional options"
199
  msgstr "Πρόσθετες επιλογές"
200
 
201
+ #: contact_form.php:434
202
  msgid "Display Attachment block"
203
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
204
 
205
+ #: contact_form.php:436
206
  msgid "Users can attach files of the following types"
207
  msgstr "Οι χρήστες μπορούν να επισυνάψουν αρχεία τύπου"
208
 
209
+ #: contact_form.php:440
210
  msgid "Display Attachment explanations"
211
  msgstr ""
212
 
213
+ #: contact_form.php:442
214
  msgid "Display explanations after Attachment block"
215
  msgstr ""
216
 
217
+ #: contact_form.php:446
218
  msgid "Display Send me a copy block"
219
  msgstr "Προβολή κουτιού \"Στείλτο και σ' εμένα\""
220
 
221
+ #: contact_form.php:452
222
  msgid "What use?"
223
  msgstr ""
224
 
225
+ #: contact_form.php:455
226
  msgid "Wp-mail"
227
  msgstr "Wp-mail"
228
 
229
+ #: contact_form.php:456
230
  msgid "To send mail you can use the wordpress wp_mail function"
231
  msgstr ""
232
 
233
+ #: contact_form.php:462
234
  msgid "Mail"
235
  msgstr "Mail"
236
 
237
+ #: contact_form.php:463
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
+ #: contact_form.php:467
242
+ #, fuzzy
243
+ msgid "Change text for 'FROM' field of the email"
244
  msgstr "Αλλάξτε το πεδίο \"ΑΠΟ\" της φόρμας επικοινωνίας"
245
 
246
+ #: contact_form.php:473
247
+ msgid "Select email for 'FROM' field of the email"
248
+ msgstr ""
249
+
250
+ #: contact_form.php:475
251
+ msgid ""
252
+ "In the field 'From' in the mail it will use email of that user who fills the "
253
+ "form."
254
+ msgstr ""
255
+
256
+ #: contact_form.php:477
257
+ msgid "In the field 'From' it will use this email."
258
+ msgstr ""
259
+
260
+ #: contact_form.php:481
261
  msgid "Display phone field"
262
  msgstr ""
263
 
264
+ #: contact_form.php:487
265
  msgid "Required field"
266
  msgstr ""
267
 
268
+ #: contact_form.php:489 contact_form.php:953
269
  msgid "Name"
270
  msgstr "Όνομα"
271
 
272
+ #: contact_form.php:490
273
  #, fuzzy
274
  msgid "E-Mail Address"
275
  msgstr "Διεύθυνση e-mail:"
276
 
277
+ #: contact_form.php:491 contact_form.php:961
278
  msgid "Phone"
279
  msgstr ""
280
 
281
+ #: contact_form.php:492 contact_form.php:964
282
  msgid "Subject"
283
  msgstr "Θέμα"
284
 
285
+ #: contact_form.php:493 contact_form.php:967
286
  msgid "Message"
287
  msgstr "Μήνυμα"
288
 
289
+ #: contact_form.php:497
290
  msgid "Display additional info in email"
291
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
292
 
293
+ #: contact_form.php:502 contact_form.php:925
294
  msgid "Sent from (ip address)"
295
  msgstr "Στάλθηκε από (διεύθυνση ip)"
296
 
297
+ #: contact_form.php:503 contact_form.php:930
298
  msgid "Date/Time"
299
  msgstr "Ημερομηνία/Ώρα"
300
 
301
+ #: contact_form.php:504 contact_form.php:935
302
  msgid "Coming from (referer)"
303
  msgstr "Από (referer)"
304
 
305
+ #: contact_form.php:505 contact_form.php:940
306
  msgid "Using (user agent)"
307
  msgstr "με χρήση (user agent)"
308
 
309
+ #: contact_form.php:509
310
+ msgid "Language settings for label fields"
311
+ msgstr ""
312
+
313
+ #: contact_form.php:518
314
+ msgid "Add language"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:522
318
+ #, fuzzy
319
+ msgid "Change label for fields of the contact form and error messages"
320
  msgstr "Αλλαγή ετικετών πεδίων της φόρμας επικοινωνίας"
321
 
322
+ #: contact_form.php:527 contact_form.php:580
323
+ msgid "English"
324
+ msgstr ""
325
+
326
+ #: contact_form.php:542 contact_form.php:562
327
+ msgid "Error message for name field"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:543 contact_form.php:563
331
+ msgid "Error message for email field"
332
+ msgstr ""
333
+
334
+ #: contact_form.php:544 contact_form.php:564
335
+ msgid "Error message for phone field"
336
+ msgstr ""
337
+
338
+ #: contact_form.php:545 contact_form.php:565
339
+ msgid "Error message for subject field"
340
+ msgstr ""
341
+
342
+ #: contact_form.php:546 contact_form.php:566
343
+ msgid "Error message for message field"
344
+ msgstr ""
345
+
346
+ #: contact_form.php:547 contact_form.php:567
347
+ msgid "Error message for attachment field"
348
+ msgstr ""
349
+
350
+ #: contact_form.php:548 contact_form.php:568
351
+ msgid "Error message for captcha"
352
+ msgstr ""
353
+
354
+ #: contact_form.php:549 contact_form.php:569
355
+ msgid "Error message for all form"
356
+ msgstr ""
357
+
358
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
359
+ #: contact_form.php:595
360
+ msgid "Use shortcode"
361
+ msgstr ""
362
+
363
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
364
+ #: contact_form.php:595
365
+ msgid "for this language"
366
+ msgstr ""
367
+
368
+ #: contact_form.php:577
369
  msgid "Action after the send mail"
370
  msgstr ""
371
 
372
+ #: contact_form.php:579
373
  #, fuzzy
374
  msgid "Display text"
375
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
376
 
377
+ #: contact_form.php:588 contact_form.php:594
378
  msgid "Text"
379
  msgstr ""
380
 
381
+ #: contact_form.php:601
382
  msgid "Redirect to page"
383
  msgstr ""
384
 
385
+ #: contact_form.php:602
386
  msgid "Url"
387
  msgstr ""
388
 
389
+ #: contact_form.php:607
390
  msgid "Save Changes"
391
  msgstr "Αποθήκευση αλλαγών"
392
 
393
+ #: contact_form.php:646
394
  msgid "Sorry, your e-mail could not be delivered."
395
  msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
396
 
397
+ #: contact_form.php:716
398
  msgid "You can attach files of the following types"
399
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
400
 
401
+ #: contact_form.php:724
402
  msgid "Send me a copy"
403
  msgstr "Στείλε μου ένα αντίγραφο"
404
 
405
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgid "Contact from"
407
  msgstr "Επικοινωνία από"
408
 
409
+ #: contact_form.php:956
410
  msgid "Email"
411
  msgstr "E-Mail"
412
 
413
+ #: contact_form.php:970
414
  msgid "Site"
415
  msgstr "Ιστοσελίδα"
416
 
417
+ #: contact_form.php:1021
418
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
419
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
420
 
421
+ #: contact_form.php:1078
422
  msgid "FAQ"
423
  msgstr "Συχνές ερωτήσεις"
424
 
425
+ #: contact_form.php:1079
426
  msgid "Support"
427
  msgstr "Υποστήριξη"
428
 
429
+ #: contact_form.php:1125
430
+ msgid "Are you sure you want to delete this language?"
431
+ msgstr ""
432
+
433
  #~ msgid "E-Mail Addresse:"
434
  #~ msgstr "Indirizzo e-mail:"
435
 
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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: es_ES\n"
@@ -24,7 +24,7 @@ msgstr "Plugin ativado"
24
  msgid "Read more"
25
  msgstr "Lea mas"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Configuración"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o "
58
  "use el formulario de contacto de nuestra web"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Opciones Contact Form"
63
 
@@ -65,59 +65,97 @@ msgstr "Opciones Contact Form"
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Nombre:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Dirección e-mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Asunto:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Mensaje:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Adjunto:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Gracias por contactar con nosotros"
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Configuración guardada."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Usuario inexistente. Los cambios no se han guardado."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr ""
118
  "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
119
 
120
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
123
  "this shortcode onto your post or page or widget:"
@@ -125,7 +163,7 @@ msgstr ""
125
  "Si quiere añadir Contact Form en su web, copie y pegue este código en su "
126
  "mensaje o página o widget:"
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
@@ -133,229 +171,266 @@ msgstr ""
133
  "Si la información en este campo está vacia, se usará la dirección "
134
  "especificada en el registro."
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "Use el email del usuario de Wordpress:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "Seleccione nombre de usuario"
143
 
144
- #: contact_form.php:307
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr ""
147
  "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Use este emaill:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr ""
156
  "Establecer una dirección de correo electrónico que se utiliza para los "
157
  "mensajes que reciben."
158
 
159
- #: contact_form.php:321
160
  msgid "Additional options"
161
  msgstr "Opciones adicionales"
162
 
163
- #: contact_form.php:324
164
  msgid "Display Attachment block"
165
  msgstr "Visualiza el adjunto"
166
 
167
- #: contact_form.php:329
168
  msgid "Users can attach files of the following types"
169
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
170
 
171
- #: contact_form.php:333
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
- #: contact_form.php:338
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
- #: contact_form.php:342
180
  msgid "Display Send me a copy block"
181
  msgstr "Ver envíame una copia"
182
 
183
- #: contact_form.php:348
184
  msgid "What use?"
185
  msgstr ""
186
 
187
- #: contact_form.php:353
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
- #: contact_form.php:354
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
- #: contact_form.php:362
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
- #: contact_form.php:363
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
- #: contact_form.php:367
204
- msgid "Change FROM fields of the contact form"
 
205
  msgstr "Modifica DE los campos en contact form"
206
 
207
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  msgid "Display phone field"
209
  msgstr ""
210
 
211
- #: contact_form.php:379
212
  msgid "Required field"
213
  msgstr ""
214
 
215
- #: contact_form.php:388 contact_form.php:775
216
  msgid "Name"
217
  msgstr "Nombre"
218
 
219
- #: contact_form.php:389
220
  #, fuzzy
221
  msgid "E-Mail Address"
222
  msgstr "Dirección e-mail:"
223
 
224
- #: contact_form.php:390 contact_form.php:783
225
  msgid "Phone"
226
  msgstr ""
227
 
228
- #: contact_form.php:391 contact_form.php:786
229
  msgid "Subject"
230
  msgstr "Asunto"
231
 
232
- #: contact_form.php:392 contact_form.php:789
233
  msgid "Message"
234
  msgstr "Mensaje"
235
 
236
- #: contact_form.php:396
237
  msgid "Display additional info in email"
238
  msgstr ""
239
 
240
- #: contact_form.php:401 contact_form.php:747
241
  msgid "Sent from (ip address)"
242
  msgstr "Enviado desde (dirección IP)"
243
 
244
- #: contact_form.php:402 contact_form.php:752
245
  msgid "Date/Time"
246
  msgstr "Fecha/hora"
247
 
248
- #: contact_form.php:403 contact_form.php:757
249
  msgid "Coming from (referer)"
250
  msgstr "De (referente)"
251
 
252
- #: contact_form.php:404 contact_form.php:762
253
  msgid "Using (user agent)"
254
  msgstr "Usando (user agent)"
255
 
256
- #: contact_form.php:408
257
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
258
  msgstr "Modifica las etiquetas de los campos en contact form"
259
 
260
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Action after the send mail"
262
  msgstr ""
263
 
264
- #: contact_form.php:424
265
  #, fuzzy
266
  msgid "Display text"
267
  msgstr "Visualiza el adjunto"
268
 
269
- #: contact_form.php:425
270
  msgid "Text"
271
  msgstr ""
272
 
273
- #: contact_form.php:426
274
  msgid "Redirect to page"
275
  msgstr ""
276
 
277
- #: contact_form.php:427
278
  msgid "Url"
279
  msgstr ""
280
 
281
- #: contact_form.php:432
282
  msgid "Save Changes"
283
  msgstr "Guardar los cambios"
284
 
285
- #: contact_form.php:470
286
  msgid "Sorry, your e-mail could not be delivered."
287
  msgstr "Disculpe, su email no se puede entregar."
288
 
289
- #: contact_form.php:540
290
  msgid "You can attach files of the following types"
291
  msgstr "Puede adjuntar archivos de estos tipos"
292
 
293
- #: contact_form.php:548
294
  msgid "Send me a copy"
295
  msgstr "Envíame una copia"
296
 
297
- #: contact_form.php:558
298
- msgid "Submit"
299
- msgstr "Enviar"
300
-
301
- #: contact_form.php:598
302
- msgid "Your name is required."
303
- msgstr "Su nombre es obligatorio."
304
-
305
- #: contact_form.php:600
306
- msgid "A proper e-mail address is required."
307
- msgstr "Una dirección válida es obligatoria."
308
-
309
- #: contact_form.php:602
310
- msgid "Subject text is required."
311
- msgstr "El asunto es obligatorio."
312
-
313
- #: contact_form.php:604
314
- msgid "Message text is required."
315
- msgstr "El mensaje es obligatorio."
316
-
317
- #: contact_form.php:606
318
- #, fuzzy
319
- msgid "Phone is required field."
320
- msgstr "Su nombre es obligatorio."
321
-
322
- #: contact_form.php:607
323
- msgid "Please make corrections below and try again."
324
- msgstr "Por favor, corrija los datos y pruebe de nuevo."
325
-
326
- #: contact_form.php:639
327
- msgid "Attachment is broken."
328
- msgstr "El adjunto es incorrecto."
329
-
330
- #: contact_form.php:654
331
- msgid "Please complete the CAPTCHA."
332
- msgstr "Por favor completa el CAPTCHA"
333
-
334
- #: contact_form.php:770
335
  msgid "Contact from"
336
  msgstr "Contact from"
337
 
338
- #: contact_form.php:778
339
  msgid "Email"
340
  msgstr "E-mail"
341
 
342
- #: contact_form.php:792
343
  msgid "Site"
344
  msgstr "Sitio"
345
 
346
- #: contact_form.php:837
347
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
348
  msgstr ""
349
  "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
350
 
351
- #: contact_form.php:891
352
  msgid "FAQ"
353
  msgstr "FAQ"
354
 
355
- #: contact_form.php:892
356
  msgid "Support"
357
  msgstr "Soporte"
358
 
 
 
 
 
359
  #~ msgid "E-Mail Addresse:"
360
  #~ msgstr "Indirizzo e-mail:"
361
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:38+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:38+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: es_ES\n"
24
  msgid "Read more"
25
  msgstr "Lea mas"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Configuración"
30
 
57
  "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o "
58
  "use el formulario de contacto de nuestra web"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Opciones Contact Form"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Nombre:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Dirección e-mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Asunto:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Mensaje:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Adjunto:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Enviar"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Su nombre es obligatorio."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Una dirección válida es obligatoria."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "El asunto es obligatorio."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "El mensaje es obligatorio."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Su nombre es obligatorio."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "El adjunto es incorrecto."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Por favor completa el CAPTCHA"
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Por favor, corrija los datos y pruebe de nuevo."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Gracias por contactar con nosotros"
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Usuario inexistente. Los cambios no se han guardado."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr ""
146
  "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr ""
152
+ "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Configuración guardada."
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Si quiere añadir Contact Form en su web, copie y pegue este código en su "
164
  "mensaje o página o widget:"
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Si la información en este campo está vacia, se usará la dirección "
172
  "especificada en el registro."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Use el email del usuario de Wordpress:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Seleccione nombre de usuario"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr ""
185
  "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
186
 
187
+ #: contact_form.php:424
188
  msgid "Use this email:"
189
  msgstr "Use este emaill:"
190
 
191
+ #: contact_form.php:427
192
  msgid "Set an email address which will be used for messages receiving."
193
  msgstr ""
194
  "Establecer una dirección de correo electrónico que se utiliza para los "
195
  "mensajes que reciben."
196
 
197
+ #: contact_form.php:431
198
  msgid "Additional options"
199
  msgstr "Opciones adicionales"
200
 
201
+ #: contact_form.php:434
202
  msgid "Display Attachment block"
203
  msgstr "Visualiza el adjunto"
204
 
205
+ #: contact_form.php:436
206
  msgid "Users can attach files of the following types"
207
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
208
 
209
+ #: contact_form.php:440
210
  msgid "Display Attachment explanations"
211
  msgstr ""
212
 
213
+ #: contact_form.php:442
214
  msgid "Display explanations after Attachment block"
215
  msgstr ""
216
 
217
+ #: contact_form.php:446
218
  msgid "Display Send me a copy block"
219
  msgstr "Ver envíame una copia"
220
 
221
+ #: contact_form.php:452
222
  msgid "What use?"
223
  msgstr ""
224
 
225
+ #: contact_form.php:455
226
  msgid "Wp-mail"
227
  msgstr "Wp-mail"
228
 
229
+ #: contact_form.php:456
230
  msgid "To send mail you can use the wordpress wp_mail function"
231
  msgstr ""
232
 
233
+ #: contact_form.php:462
234
  msgid "Mail"
235
  msgstr "Mail"
236
 
237
+ #: contact_form.php:463
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
+ #: contact_form.php:467
242
+ #, fuzzy
243
+ msgid "Change text for 'FROM' field of the email"
244
  msgstr "Modifica DE los campos en contact form"
245
 
246
+ #: contact_form.php:473
247
+ msgid "Select email for 'FROM' field of the email"
248
+ msgstr ""
249
+
250
+ #: contact_form.php:475
251
+ msgid ""
252
+ "In the field 'From' in the mail it will use email of that user who fills the "
253
+ "form."
254
+ msgstr ""
255
+
256
+ #: contact_form.php:477
257
+ msgid "In the field 'From' it will use this email."
258
+ msgstr ""
259
+
260
+ #: contact_form.php:481
261
  msgid "Display phone field"
262
  msgstr ""
263
 
264
+ #: contact_form.php:487
265
  msgid "Required field"
266
  msgstr ""
267
 
268
+ #: contact_form.php:489 contact_form.php:953
269
  msgid "Name"
270
  msgstr "Nombre"
271
 
272
+ #: contact_form.php:490
273
  #, fuzzy
274
  msgid "E-Mail Address"
275
  msgstr "Dirección e-mail:"
276
 
277
+ #: contact_form.php:491 contact_form.php:961
278
  msgid "Phone"
279
  msgstr ""
280
 
281
+ #: contact_form.php:492 contact_form.php:964
282
  msgid "Subject"
283
  msgstr "Asunto"
284
 
285
+ #: contact_form.php:493 contact_form.php:967
286
  msgid "Message"
287
  msgstr "Mensaje"
288
 
289
+ #: contact_form.php:497
290
  msgid "Display additional info in email"
291
  msgstr ""
292
 
293
+ #: contact_form.php:502 contact_form.php:925
294
  msgid "Sent from (ip address)"
295
  msgstr "Enviado desde (dirección IP)"
296
 
297
+ #: contact_form.php:503 contact_form.php:930
298
  msgid "Date/Time"
299
  msgstr "Fecha/hora"
300
 
301
+ #: contact_form.php:504 contact_form.php:935
302
  msgid "Coming from (referer)"
303
  msgstr "De (referente)"
304
 
305
+ #: contact_form.php:505 contact_form.php:940
306
  msgid "Using (user agent)"
307
  msgstr "Usando (user agent)"
308
 
309
+ #: contact_form.php:509
310
+ msgid "Language settings for label fields"
311
+ msgstr ""
312
+
313
+ #: contact_form.php:518
314
+ msgid "Add language"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:522
318
+ #, fuzzy
319
+ msgid "Change label for fields of the contact form and error messages"
320
  msgstr "Modifica las etiquetas de los campos en contact form"
321
 
322
+ #: contact_form.php:527 contact_form.php:580
323
+ msgid "English"
324
+ msgstr ""
325
+
326
+ #: contact_form.php:542 contact_form.php:562
327
+ msgid "Error message for name field"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:543 contact_form.php:563
331
+ msgid "Error message for email field"
332
+ msgstr ""
333
+
334
+ #: contact_form.php:544 contact_form.php:564
335
+ msgid "Error message for phone field"
336
+ msgstr ""
337
+
338
+ #: contact_form.php:545 contact_form.php:565
339
+ msgid "Error message for subject field"
340
+ msgstr ""
341
+
342
+ #: contact_form.php:546 contact_form.php:566
343
+ msgid "Error message for message field"
344
+ msgstr ""
345
+
346
+ #: contact_form.php:547 contact_form.php:567
347
+ msgid "Error message for attachment field"
348
+ msgstr ""
349
+
350
+ #: contact_form.php:548 contact_form.php:568
351
+ msgid "Error message for captcha"
352
+ msgstr ""
353
+
354
+ #: contact_form.php:549 contact_form.php:569
355
+ msgid "Error message for all form"
356
+ msgstr ""
357
+
358
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
359
+ #: contact_form.php:595
360
+ msgid "Use shortcode"
361
+ msgstr ""
362
+
363
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
364
+ #: contact_form.php:595
365
+ msgid "for this language"
366
+ msgstr ""
367
+
368
+ #: contact_form.php:577
369
  msgid "Action after the send mail"
370
  msgstr ""
371
 
372
+ #: contact_form.php:579
373
  #, fuzzy
374
  msgid "Display text"
375
  msgstr "Visualiza el adjunto"
376
 
377
+ #: contact_form.php:588 contact_form.php:594
378
  msgid "Text"
379
  msgstr ""
380
 
381
+ #: contact_form.php:601
382
  msgid "Redirect to page"
383
  msgstr ""
384
 
385
+ #: contact_form.php:602
386
  msgid "Url"
387
  msgstr ""
388
 
389
+ #: contact_form.php:607
390
  msgid "Save Changes"
391
  msgstr "Guardar los cambios"
392
 
393
+ #: contact_form.php:646
394
  msgid "Sorry, your e-mail could not be delivered."
395
  msgstr "Disculpe, su email no se puede entregar."
396
 
397
+ #: contact_form.php:716
398
  msgid "You can attach files of the following types"
399
  msgstr "Puede adjuntar archivos de estos tipos"
400
 
401
+ #: contact_form.php:724
402
  msgid "Send me a copy"
403
  msgstr "Envíame una copia"
404
 
405
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgid "Contact from"
407
  msgstr "Contact from"
408
 
409
+ #: contact_form.php:956
410
  msgid "Email"
411
  msgstr "E-mail"
412
 
413
+ #: contact_form.php:970
414
  msgid "Site"
415
  msgstr "Sitio"
416
 
417
+ #: contact_form.php:1021
418
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
419
  msgstr ""
420
  "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
421
 
422
+ #: contact_form.php:1078
423
  msgid "FAQ"
424
  msgstr "FAQ"
425
 
426
+ #: contact_form.php:1079
427
  msgid "Support"
428
  msgstr "Soporte"
429
 
430
+ #: contact_form.php:1125
431
+ msgid "Are you sure you want to delete this language?"
432
+ msgstr ""
433
+
434
  #~ msgid "E-Mail Addresse:"
435
  #~ msgstr "Indirizzo e-mail:"
436
 
languages/contact_form-fa_IR.mo CHANGED
Binary file
languages/contact_form-fa_IR.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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: MAM <shahrpajuh@gmail.com>\n"
8
  "Language-Team: AlirezaJamali <me@alirezaJamali.net>\n"
9
  "Language: fa_IR\n"
@@ -24,7 +24,7 @@ msgstr "افزونه های فعال"
24
  msgid "Read more"
25
  msgstr "متن کامل"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "تنظیمات"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "چنانچه سئوالی دارید لطفا از طریق رایانامه plugin@bestwebsoft.com یا فرم "
58
  "ارتباطی سایت با با تماس بگیرید."
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "گزینه های فرم ارتباط با مدیریت"
63
 
@@ -65,59 +65,96 @@ msgstr "گزینه های فرم ارتباط با مدیریت"
65
  msgid "Contact Form"
66
  msgstr "فرم ارتباط با مدیریت"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "نام "
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "رایانامه "
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr "شماره تماس "
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "موضوع "
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "متن پیام "
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "پیوست "
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "قدردان همیاری شما هستیم."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
  "اگر گزینه \"انتقال به\" انتخاب شود بایستی فیلد مربوط به تارنما را تکمیل کنید"
107
 
108
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
109
- msgid "Options saved."
110
- msgstr "تغییرات ثبت شد."
111
-
112
- #: contact_form.php:268
113
  msgid "Such user is not exist. Settings are not saved."
114
  msgstr "این کاربر وجود ندارد، تغییرات ثبت نشد."
115
 
116
- #: contact_form.php:278
117
  msgid "Please input correct email. Settings are not saved."
118
  msgstr "لطفا از صحت رایانامه اطمینان حاصل فرمایید، تغییرات ثبت نشد."
119
 
120
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
123
  "this shortcode onto your post or page or widget:"
@@ -125,231 +162,268 @@ msgstr ""
125
  "اگر مایل به استفاده از فرم ارتباط با مدیریت می باشید، کد را در صفحه یا نوشته "
126
  "دلخواه قرار دهید : "
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
132
  msgstr ""
133
  "اگر اطلاعات درخواستی زیر تکمیل نشود پیام به آدرس ثبت نام ارسال خواهد شد."
134
 
135
- #: contact_form.php:296
136
  msgid "Use email of wordpress user:"
137
  msgstr "از رایانامه کاربران استفاده کن : "
138
 
139
- #: contact_form.php:302
140
  msgid "Select user name"
141
  msgstr "انتخاب شناسه کاربری"
142
 
143
- #: contact_form.php:307
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr "نام کاربری را که پیام را دریافت می کند مشخص کنید. "
146
 
147
- #: contact_form.php:311
148
  msgid "Use this email:"
149
  msgstr "استفاده از این رایانامه : "
150
 
151
- #: contact_form.php:317
152
  msgid "Set an email address which will be used for messages receiving."
153
  msgstr "رایانامه ای را برای دریافت پیام مشخص کنید."
154
 
155
- #: contact_form.php:321
156
  msgid "Additional options"
157
  msgstr "گزینه های بیشتر"
158
 
159
- #: contact_form.php:324
160
  msgid "Display Attachment block"
161
  msgstr "نمایش گزینه پیوست"
162
 
163
- #: contact_form.php:329
164
  msgid "Users can attach files of the following types"
165
  msgstr "کاربران قادر به ارسال این نوع فایلها می باشند"
166
 
167
- #: contact_form.php:333
168
  msgid "Display Attachment explanations"
169
  msgstr "نمایش توضیحات پیوست"
170
 
171
- #: contact_form.php:338
172
  msgid "Display explanations after Attachment block"
173
  msgstr "نمایش توضیحات بعد از پیوست"
174
 
175
- #: contact_form.php:342
176
  msgid "Display Send me a copy block"
177
  msgstr "نمایش گزینه \"ارسال یک نسخه برای من\""
178
 
179
- #: contact_form.php:348
180
  msgid "What use?"
181
  msgstr "چه استفاده ای؟"
182
 
183
- #: contact_form.php:353
184
  msgid "Wp-mail"
185
  msgstr "افزونه ارسال رایانامه Wp-mail"
186
 
187
- #: contact_form.php:354
188
  msgid "To send mail you can use the wordpress wp_mail function"
189
  msgstr "جهت ارسال رایانامه افزونه Wp-mail نصب کنید"
190
 
191
- #: contact_form.php:362
192
  msgid "Mail"
193
  msgstr "رایانامه"
194
 
195
- #: contact_form.php:363
196
  msgid "To send mail you can use the php mail function"
197
  msgstr "برای ارسال رایانامه می توانید از امکانات PHP استفاده کنید"
198
 
199
- #: contact_form.php:367
200
- msgid "Change FROM fields of the contact form"
 
201
  msgstr "از طریق موارد فرم ارتباط با مدیریت تغییر دهید"
202
 
203
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  msgid "Display phone field"
205
  msgstr "نمایش فیلد شماره تماس"
206
 
207
- #: contact_form.php:379
208
  msgid "Required field"
209
  msgstr ""
210
 
211
- #: contact_form.php:388 contact_form.php:775
212
  msgid "Name"
213
  msgstr "نام "
214
 
215
- #: contact_form.php:389
216
  #, fuzzy
217
  msgid "E-Mail Address"
218
  msgstr "رایانامه "
219
 
220
- #: contact_form.php:390 contact_form.php:783
221
  msgid "Phone"
222
  msgstr "شماره تماس"
223
 
224
- #: contact_form.php:391 contact_form.php:786
225
  msgid "Subject"
226
  msgstr "موضوع "
227
 
228
- #: contact_form.php:392 contact_form.php:789
229
  msgid "Message"
230
  msgstr "متن پیام "
231
 
232
- #: contact_form.php:396
233
  msgid "Display additional info in email"
234
  msgstr "اطلاعات بیشتر را در رایانامه نمایش بده"
235
 
236
- #: contact_form.php:401 contact_form.php:747
237
  msgid "Sent from (ip address)"
238
  msgstr "ارسال از سوی (ip address)"
239
 
240
- #: contact_form.php:402 contact_form.php:752
241
  msgid "Date/Time"
242
  msgstr "روز / زمان"
243
 
244
- #: contact_form.php:403 contact_form.php:757
245
  msgid "Coming from (referer)"
246
  msgstr "دریافت از سوی (referer)"
247
 
248
- #: contact_form.php:404 contact_form.php:762
249
  msgid "Using (user agent)"
250
  msgstr "استفاده از (user agent)"
251
 
252
- #: contact_form.php:408
253
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
254
  msgstr "تغییر عناوین فیلدهای فرم تماس با مدیریت "
255
 
256
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  msgid "Action after the send mail"
258
  msgstr "عکس العمل پس از ارسال"
259
 
260
- #: contact_form.php:424
261
  msgid "Display text"
262
  msgstr "نمایش متن"
263
 
264
- #: contact_form.php:425
265
  msgid "Text"
266
  msgstr "متن"
267
 
268
- #: contact_form.php:426
269
  msgid "Redirect to page"
270
  msgstr "انتقال به "
271
 
272
- #: contact_form.php:427
273
  msgid "Url"
274
  msgstr "تارنما"
275
 
276
- #: contact_form.php:432
277
  msgid "Save Changes"
278
  msgstr "ثبت تغییرات"
279
 
280
- #: contact_form.php:470
281
  msgid "Sorry, your e-mail could not be delivered."
282
  msgstr "امکان ارسال رایانامه برای شما وجود ندارد."
283
 
284
- #: contact_form.php:540
285
  msgid "You can attach files of the following types"
286
  msgstr "می توانید فایل با این فرمت ارسال فرمایید "
287
 
288
- #: contact_form.php:548
289
  msgid "Send me a copy"
290
  msgstr "به رایانامه من ارسال شود"
291
 
292
- #: contact_form.php:558
293
- msgid "Submit"
294
- msgstr "ارسال"
295
-
296
- #: contact_form.php:598
297
- msgid "Your name is required."
298
- msgstr "نام ضروری می باشد. "
299
-
300
- #: contact_form.php:600
301
- msgid "A proper e-mail address is required."
302
- msgstr "رایانامه ضروری می باشد. "
303
-
304
- #: contact_form.php:602
305
- msgid "Subject text is required."
306
- msgstr "عنوان ضروری می باشد. "
307
-
308
- #: contact_form.php:604
309
- msgid "Message text is required."
310
- msgstr "متن پیام ضروری می باشد. "
311
-
312
- #: contact_form.php:606
313
- #, fuzzy
314
- msgid "Phone is required field."
315
- msgstr "نام ضروری می باشد. "
316
-
317
- #: contact_form.php:607
318
- msgid "Please make corrections below and try again."
319
- msgstr "لطفا پس از انجام اصلاحات دوباره ارسال نمایید. "
320
-
321
- #: contact_form.php:639
322
- msgid "Attachment is broken."
323
- msgstr "فایل آسیب دیده می باشد. "
324
-
325
- #: contact_form.php:654
326
- msgid "Please complete the CAPTCHA."
327
- msgstr "لطفا کد امنیتی را وارد کنید. "
328
-
329
- #: contact_form.php:770
330
  msgid "Contact from"
331
  msgstr "فرم ارتباط با مدیریت"
332
 
333
- #: contact_form.php:778
334
  msgid "Email"
335
  msgstr "رایانامه "
336
 
337
- #: contact_form.php:792
338
  msgid "Site"
339
  msgstr "سایت"
340
 
341
- #: contact_form.php:837
342
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
343
  msgstr "اگر می توانید این MIME کاربران را ببینید، نوع آن قابل پذیرش نیست!"
344
 
345
- #: contact_form.php:891
346
  msgid "FAQ"
347
  msgstr "سئوالات مطرح"
348
 
349
- #: contact_form.php:892
350
  msgid "Support"
351
  msgstr "پشتیبانی"
352
 
 
 
 
 
353
  #~ msgid "E-Mail Addresse:"
354
  #~ msgstr "Indirizzo e-mail:"
355
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: MAM <shahrpajuh@gmail.com>\n"
8
  "Language-Team: AlirezaJamali <me@alirezaJamali.net>\n"
9
  "Language: fa_IR\n"
24
  msgid "Read more"
25
  msgstr "متن کامل"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "تنظیمات"
30
 
57
  "چنانچه سئوالی دارید لطفا از طریق رایانامه plugin@bestwebsoft.com یا فرم "
58
  "ارتباطی سایت با با تماس بگیرید."
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "گزینه های فرم ارتباط با مدیریت"
63
 
65
  msgid "Contact Form"
66
  msgstr "فرم ارتباط با مدیریت"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "نام "
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "رایانامه "
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr "شماره تماس "
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "موضوع "
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "متن پیام "
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "پیوست "
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "ارسال"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "نام ضروری می باشد. "
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "رایانامه ضروری می باشد. "
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "عنوان ضروری می باشد. "
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "متن پیام ضروری می باشد. "
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "نام ضروری می باشد. "
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "فایل آسیب دیده می باشد. "
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "لطفا کد امنیتی را وارد کنید. "
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "لطفا پس از انجام اصلاحات دوباره ارسال نمایید. "
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "قدردان همیاری شما هستیم."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
  "اگر گزینه \"انتقال به\" انتخاب شود بایستی فیلد مربوط به تارنما را تکمیل کنید"
139
 
140
+ #: contact_form.php:365
 
 
 
 
141
  msgid "Such user is not exist. Settings are not saved."
142
  msgstr "این کاربر وجود ندارد، تغییرات ثبت نشد."
143
 
144
+ #: contact_form.php:370
145
  msgid "Please input correct email. Settings are not saved."
146
  msgstr "لطفا از صحت رایانامه اطمینان حاصل فرمایید، تغییرات ثبت نشد."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr "لطفا از صحت رایانامه اطمینان حاصل فرمایید، تغییرات ثبت نشد."
152
+
153
+ #: contact_form.php:381
154
+ msgid "Options saved."
155
+ msgstr "تغییرات ثبت شد."
156
+
157
+ #: contact_form.php:406
158
  msgid ""
159
  "If you would like to add a Contact Form to your website, just copy and put "
160
  "this shortcode onto your post or page or widget:"
162
  "اگر مایل به استفاده از فرم ارتباط با مدیریت می باشید، کد را در صفحه یا نوشته "
163
  "دلخواه قرار دهید : "
164
 
165
+ #: contact_form.php:407
166
  msgid ""
167
  "If information in the below fields are empty then the message will be send "
168
  "to an address which was specified during registration."
169
  msgstr ""
170
  "اگر اطلاعات درخواستی زیر تکمیل نشود پیام به آدرس ثبت نام ارسال خواهد شد."
171
 
172
+ #: contact_form.php:411
173
  msgid "Use email of wordpress user:"
174
  msgstr "از رایانامه کاربران استفاده کن : "
175
 
176
+ #: contact_form.php:415
177
  msgid "Select user name"
178
  msgstr "انتخاب شناسه کاربری"
179
 
180
+ #: contact_form.php:420
181
  msgid "Set a name of user who will get messages from a contact form."
182
  msgstr "نام کاربری را که پیام را دریافت می کند مشخص کنید. "
183
 
184
+ #: contact_form.php:424
185
  msgid "Use this email:"
186
  msgstr "استفاده از این رایانامه : "
187
 
188
+ #: contact_form.php:427
189
  msgid "Set an email address which will be used for messages receiving."
190
  msgstr "رایانامه ای را برای دریافت پیام مشخص کنید."
191
 
192
+ #: contact_form.php:431
193
  msgid "Additional options"
194
  msgstr "گزینه های بیشتر"
195
 
196
+ #: contact_form.php:434
197
  msgid "Display Attachment block"
198
  msgstr "نمایش گزینه پیوست"
199
 
200
+ #: contact_form.php:436
201
  msgid "Users can attach files of the following types"
202
  msgstr "کاربران قادر به ارسال این نوع فایلها می باشند"
203
 
204
+ #: contact_form.php:440
205
  msgid "Display Attachment explanations"
206
  msgstr "نمایش توضیحات پیوست"
207
 
208
+ #: contact_form.php:442
209
  msgid "Display explanations after Attachment block"
210
  msgstr "نمایش توضیحات بعد از پیوست"
211
 
212
+ #: contact_form.php:446
213
  msgid "Display Send me a copy block"
214
  msgstr "نمایش گزینه \"ارسال یک نسخه برای من\""
215
 
216
+ #: contact_form.php:452
217
  msgid "What use?"
218
  msgstr "چه استفاده ای؟"
219
 
220
+ #: contact_form.php:455
221
  msgid "Wp-mail"
222
  msgstr "افزونه ارسال رایانامه Wp-mail"
223
 
224
+ #: contact_form.php:456
225
  msgid "To send mail you can use the wordpress wp_mail function"
226
  msgstr "جهت ارسال رایانامه افزونه Wp-mail نصب کنید"
227
 
228
+ #: contact_form.php:462
229
  msgid "Mail"
230
  msgstr "رایانامه"
231
 
232
+ #: contact_form.php:463
233
  msgid "To send mail you can use the php mail function"
234
  msgstr "برای ارسال رایانامه می توانید از امکانات PHP استفاده کنید"
235
 
236
+ #: contact_form.php:467
237
+ #, fuzzy
238
+ msgid "Change text for 'FROM' field of the email"
239
  msgstr "از طریق موارد فرم ارتباط با مدیریت تغییر دهید"
240
 
241
+ #: contact_form.php:473
242
+ msgid "Select email for 'FROM' field of the email"
243
+ msgstr ""
244
+
245
+ #: contact_form.php:475
246
+ msgid ""
247
+ "In the field 'From' in the mail it will use email of that user who fills the "
248
+ "form."
249
+ msgstr ""
250
+
251
+ #: contact_form.php:477
252
+ msgid "In the field 'From' it will use this email."
253
+ msgstr ""
254
+
255
+ #: contact_form.php:481
256
  msgid "Display phone field"
257
  msgstr "نمایش فیلد شماره تماس"
258
 
259
+ #: contact_form.php:487
260
  msgid "Required field"
261
  msgstr ""
262
 
263
+ #: contact_form.php:489 contact_form.php:953
264
  msgid "Name"
265
  msgstr "نام "
266
 
267
+ #: contact_form.php:490
268
  #, fuzzy
269
  msgid "E-Mail Address"
270
  msgstr "رایانامه "
271
 
272
+ #: contact_form.php:491 contact_form.php:961
273
  msgid "Phone"
274
  msgstr "شماره تماس"
275
 
276
+ #: contact_form.php:492 contact_form.php:964
277
  msgid "Subject"
278
  msgstr "موضوع "
279
 
280
+ #: contact_form.php:493 contact_form.php:967
281
  msgid "Message"
282
  msgstr "متن پیام "
283
 
284
+ #: contact_form.php:497
285
  msgid "Display additional info in email"
286
  msgstr "اطلاعات بیشتر را در رایانامه نمایش بده"
287
 
288
+ #: contact_form.php:502 contact_form.php:925
289
  msgid "Sent from (ip address)"
290
  msgstr "ارسال از سوی (ip address)"
291
 
292
+ #: contact_form.php:503 contact_form.php:930
293
  msgid "Date/Time"
294
  msgstr "روز / زمان"
295
 
296
+ #: contact_form.php:504 contact_form.php:935
297
  msgid "Coming from (referer)"
298
  msgstr "دریافت از سوی (referer)"
299
 
300
+ #: contact_form.php:505 contact_form.php:940
301
  msgid "Using (user agent)"
302
  msgstr "استفاده از (user agent)"
303
 
304
+ #: contact_form.php:509
305
+ msgid "Language settings for label fields"
306
+ msgstr ""
307
+
308
+ #: contact_form.php:518
309
+ msgid "Add language"
310
+ msgstr ""
311
+
312
+ #: contact_form.php:522
313
+ #, fuzzy
314
+ msgid "Change label for fields of the contact form and error messages"
315
  msgstr "تغییر عناوین فیلدهای فرم تماس با مدیریت "
316
 
317
+ #: contact_form.php:527 contact_form.php:580
318
+ msgid "English"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:542 contact_form.php:562
322
+ msgid "Error message for name field"
323
+ msgstr ""
324
+
325
+ #: contact_form.php:543 contact_form.php:563
326
+ msgid "Error message for email field"
327
+ msgstr ""
328
+
329
+ #: contact_form.php:544 contact_form.php:564
330
+ msgid "Error message for phone field"
331
+ msgstr ""
332
+
333
+ #: contact_form.php:545 contact_form.php:565
334
+ msgid "Error message for subject field"
335
+ msgstr ""
336
+
337
+ #: contact_form.php:546 contact_form.php:566
338
+ msgid "Error message for message field"
339
+ msgstr ""
340
+
341
+ #: contact_form.php:547 contact_form.php:567
342
+ msgid "Error message for attachment field"
343
+ msgstr ""
344
+
345
+ #: contact_form.php:548 contact_form.php:568
346
+ msgid "Error message for captcha"
347
+ msgstr ""
348
+
349
+ #: contact_form.php:549 contact_form.php:569
350
+ msgid "Error message for all form"
351
+ msgstr ""
352
+
353
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
354
+ #: contact_form.php:595
355
+ msgid "Use shortcode"
356
+ msgstr ""
357
+
358
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
359
+ #: contact_form.php:595
360
+ msgid "for this language"
361
+ msgstr ""
362
+
363
+ #: contact_form.php:577
364
  msgid "Action after the send mail"
365
  msgstr "عکس العمل پس از ارسال"
366
 
367
+ #: contact_form.php:579
368
  msgid "Display text"
369
  msgstr "نمایش متن"
370
 
371
+ #: contact_form.php:588 contact_form.php:594
372
  msgid "Text"
373
  msgstr "متن"
374
 
375
+ #: contact_form.php:601
376
  msgid "Redirect to page"
377
  msgstr "انتقال به "
378
 
379
+ #: contact_form.php:602
380
  msgid "Url"
381
  msgstr "تارنما"
382
 
383
+ #: contact_form.php:607
384
  msgid "Save Changes"
385
  msgstr "ثبت تغییرات"
386
 
387
+ #: contact_form.php:646
388
  msgid "Sorry, your e-mail could not be delivered."
389
  msgstr "امکان ارسال رایانامه برای شما وجود ندارد."
390
 
391
+ #: contact_form.php:716
392
  msgid "You can attach files of the following types"
393
  msgstr "می توانید فایل با این فرمت ارسال فرمایید "
394
 
395
+ #: contact_form.php:724
396
  msgid "Send me a copy"
397
  msgstr "به رایانامه من ارسال شود"
398
 
399
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  msgid "Contact from"
401
  msgstr "فرم ارتباط با مدیریت"
402
 
403
+ #: contact_form.php:956
404
  msgid "Email"
405
  msgstr "رایانامه "
406
 
407
+ #: contact_form.php:970
408
  msgid "Site"
409
  msgstr "سایت"
410
 
411
+ #: contact_form.php:1021
412
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
413
  msgstr "اگر می توانید این MIME کاربران را ببینید، نوع آن قابل پذیرش نیست!"
414
 
415
+ #: contact_form.php:1078
416
  msgid "FAQ"
417
  msgstr "سئوالات مطرح"
418
 
419
+ #: contact_form.php:1079
420
  msgid "Support"
421
  msgstr "پشتیبانی"
422
 
423
+ #: contact_form.php:1125
424
+ msgid "Are you sure you want to delete this language?"
425
+ msgstr ""
426
+
427
  #~ msgid "E-Mail Addresse:"
428
  #~ msgstr "Indirizzo e-mail:"
429
 
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -25,7 +25,7 @@ msgstr "Plugin activé"
25
  msgid "Read more"
26
  msgstr "Lire la suite"
27
 
28
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
29
  msgid "Settings"
30
  msgstr "Réglages"
31
 
@@ -58,7 +58,7 @@ msgstr ""
58
  "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou "
59
  "d'utilisez le formulaire de contact \"contact form\" sur notre site"
60
 
61
- #: contact_form.php:108 contact_form.php:286
62
  msgid "Contact Form Options"
63
  msgstr "Options du Formulaire de Contact"
64
 
@@ -66,40 +66,72 @@ msgstr "Options du Formulaire de Contact"
66
  msgid "Contact Form"
67
  msgstr "Formulaire de Contact"
68
 
69
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
70
- #: contact_form.php:413
71
  msgid "Name:"
72
  msgstr "Nom:"
73
 
74
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
75
- #: contact_form.php:414
76
  msgid "E-Mail Address:"
77
  msgstr "Adresse e-mail:"
78
 
79
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
80
  msgid "Phone:"
81
  msgstr ""
82
 
83
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
84
- #: contact_form.php:416
85
  msgid "Subject:"
86
  msgstr "Sujet:"
87
 
88
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
89
- #: contact_form.php:417
90
  msgid "Message:"
91
  msgstr "Message:"
92
 
93
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
94
- #: contact_form.php:418
95
  msgid "Attachment:"
96
  msgstr "Pièce-jointe:"
97
 
98
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Thank you for contacting us."
100
  msgstr "Merci de nous avoir contacté."
101
 
102
- #: contact_form.php:253
103
  msgid ""
104
  "If the option 'Redirect to page' is selected then url field should be "
105
  "fillied in the following format"
@@ -107,22 +139,29 @@ msgstr ""
107
  "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
108
  "doit être rempli avec le format suivant"
109
 
110
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
111
- msgid "Options saved."
112
- msgstr "Options sauvegardées."
113
-
114
- #: contact_form.php:268
115
  msgid "Such user is not exist. Settings are not saved."
116
  msgstr ""
117
  "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
118
 
119
- #: contact_form.php:278
120
  msgid "Please input correct email. Settings are not saved."
121
  msgstr ""
122
  "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas "
123
  "sauvegardées."
124
 
125
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
 
126
  msgid ""
127
  "If you would like to add a Contact Form to your website, just copy and put "
128
  "this shortcode onto your post or page or widget:"
@@ -130,7 +169,7 @@ msgstr ""
130
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
131
  "juste ce code dans un article ou sur une page ou un widget:"
132
 
133
- #: contact_form.php:292
134
  msgid ""
135
  "If information in the below fields are empty then the message will be send "
136
  "to an address which was specified during registration."
@@ -138,229 +177,266 @@ msgstr ""
138
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
139
  "l'adresse spécifiée lors de l'enregistrement."
140
 
141
- #: contact_form.php:296
142
  msgid "Use email of wordpress user:"
143
  msgstr "Utiliser l'e-mail du compte wordpress:"
144
 
145
- #: contact_form.php:302
146
  msgid "Select user name"
147
  msgstr "Choisir un nom d'utilisateur"
148
 
149
- #: contact_form.php:307
150
  msgid "Set a name of user who will get messages from a contact form."
151
  msgstr ""
152
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
153
  "formulaire de contact."
154
 
155
- #: contact_form.php:311
156
  msgid "Use this email:"
157
  msgstr "Utiliser cette adresse e-mail:"
158
 
159
- #: contact_form.php:317
160
  msgid "Set an email address which will be used for messages receiving."
161
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
162
 
163
- #: contact_form.php:321
164
  msgid "Additional options"
165
  msgstr "Options supplémentaires"
166
 
167
- #: contact_form.php:324
168
  msgid "Display Attachment block"
169
  msgstr "Afficher le bloc pièce-jointe"
170
 
171
- #: contact_form.php:329
172
  msgid "Users can attach files of the following types"
173
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
174
 
175
- #: contact_form.php:333
176
  msgid "Display Attachment explanations"
177
  msgstr "Afficher les explications sur les pièces jointes"
178
 
179
- #: contact_form.php:338
180
  msgid "Display explanations after Attachment block"
181
  msgstr "Afficher les explications après le bloc des pièces jointes"
182
 
183
- #: contact_form.php:342
184
  msgid "Display Send me a copy block"
185
  msgstr "Afficher \"M'envoyer une copie\" "
186
 
187
- #: contact_form.php:348
188
  msgid "What use?"
189
  msgstr "Quel utilisation?"
190
 
191
- #: contact_form.php:353
192
  msgid "Wp-mail"
193
  msgstr "Wp-mail"
194
 
195
- #: contact_form.php:354
196
  msgid "To send mail you can use the wordpress wp_mail function"
197
  msgstr ""
198
  "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
199
 
200
- #: contact_form.php:362
201
  msgid "Mail"
202
  msgstr "E-mail"
203
 
204
- #: contact_form.php:363
205
  msgid "To send mail you can use the php mail function"
206
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
207
 
208
- #: contact_form.php:367
209
- msgid "Change FROM fields of the contact form"
 
210
  msgstr "Modifier des champs du formulaire de contact"
211
 
212
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "Display phone field"
214
  msgstr ""
215
 
216
- #: contact_form.php:379
217
  msgid "Required field"
218
  msgstr ""
219
 
220
- #: contact_form.php:388 contact_form.php:775
221
  msgid "Name"
222
  msgstr "Nom"
223
 
224
- #: contact_form.php:389
225
  #, fuzzy
226
  msgid "E-Mail Address"
227
  msgstr "Adresse e-mail:"
228
 
229
- #: contact_form.php:390 contact_form.php:783
230
  msgid "Phone"
231
  msgstr ""
232
 
233
- #: contact_form.php:391 contact_form.php:786
234
  msgid "Subject"
235
  msgstr "Sujet"
236
 
237
- #: contact_form.php:392 contact_form.php:789
238
  msgid "Message"
239
  msgstr "Message"
240
 
241
- #: contact_form.php:396
242
  msgid "Display additional info in email"
243
  msgstr "Afficher les informations complémentaires dans le courriel"
244
 
245
- #: contact_form.php:401 contact_form.php:747
246
  msgid "Sent from (ip address)"
247
  msgstr "Envoyé de (adresse IP)"
248
 
249
- #: contact_form.php:402 contact_form.php:752
250
  msgid "Date/Time"
251
  msgstr "Date/Heure"
252
 
253
- #: contact_form.php:403 contact_form.php:757
254
  msgid "Coming from (referer)"
255
  msgstr "Envoyer de (référence)"
256
 
257
- #: contact_form.php:404 contact_form.php:762
258
  msgid "Using (user agent)"
259
  msgstr "Depuis (navigateur)"
260
 
261
- #: contact_form.php:408
262
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
263
  msgstr "Modifier le nom des champs du formulaire de contact"
264
 
265
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  msgid "Action after the send mail"
267
  msgstr "Action après l'envoie de l'e-mail"
268
 
269
- #: contact_form.php:424
270
  msgid "Display text"
271
  msgstr "Afficher le texte"
272
 
273
- #: contact_form.php:425
274
  msgid "Text"
275
  msgstr "Texte"
276
 
277
- #: contact_form.php:426
278
  msgid "Redirect to page"
279
  msgstr "Rediriger vers la page"
280
 
281
- #: contact_form.php:427
282
  msgid "Url"
283
  msgstr "Url"
284
 
285
- #: contact_form.php:432
286
  msgid "Save Changes"
287
  msgstr "Sauvegarder les modifications"
288
 
289
- #: contact_form.php:470
290
  msgid "Sorry, your e-mail could not be delivered."
291
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
292
 
293
- #: contact_form.php:540
294
  msgid "You can attach files of the following types"
295
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
296
 
297
- #: contact_form.php:548
298
  msgid "Send me a copy"
299
  msgstr "M'envoyer une copie"
300
 
301
- #: contact_form.php:558
302
- msgid "Submit"
303
- msgstr "Envoyer"
304
-
305
- #: contact_form.php:598
306
- msgid "Your name is required."
307
- msgstr "Un nom est obligatoire."
308
-
309
- #: contact_form.php:600
310
- msgid "A proper e-mail address is required."
311
- msgstr "Une adresse e-mail valide est obligatoire."
312
-
313
- #: contact_form.php:602
314
- msgid "Subject text is required."
315
- msgstr "Sujet obligatoire."
316
-
317
- #: contact_form.php:604
318
- msgid "Message text is required."
319
- msgstr "Un message est obligatoire."
320
-
321
- #: contact_form.php:606
322
- #, fuzzy
323
- msgid "Phone is required field."
324
- msgstr "Un nom est obligatoire."
325
-
326
- #: contact_form.php:607
327
- msgid "Please make corrections below and try again."
328
- msgstr "Merci de faire les corrections suivantes et de réessayer."
329
-
330
- #: contact_form.php:639
331
- msgid "Attachment is broken."
332
- msgstr "La pièce-jointe n'est pas valide."
333
-
334
- #: contact_form.php:654
335
- msgid "Please complete the CAPTCHA."
336
- msgstr "Merci de compléter le CAPTCHA."
337
-
338
- #: contact_form.php:770
339
  msgid "Contact from"
340
  msgstr "Contact de"
341
 
342
- #: contact_form.php:778
343
  msgid "Email"
344
  msgstr "E-mail"
345
 
346
- #: contact_form.php:792
347
  msgid "Site"
348
  msgstr "Site"
349
 
350
- #: contact_form.php:837
351
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
352
  msgstr ""
353
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
354
  "MIME !"
355
 
356
- #: contact_form.php:891
357
  msgid "FAQ"
358
  msgstr "FAQ"
359
 
360
- #: contact_form.php:892
361
  msgid "Support"
362
  msgstr "Support"
363
 
 
 
 
 
364
  #, fuzzy
365
  #~ msgid ""
366
  #~ "If you would like to add a Contact Form to your website, just copy and "
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
25
  msgid "Read more"
26
  msgstr "Lire la suite"
27
 
28
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
29
  msgid "Settings"
30
  msgstr "Réglages"
31
 
58
  "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou "
59
  "d'utilisez le formulaire de contact \"contact form\" sur notre site"
60
 
61
+ #: contact_form.php:108 contact_form.php:401
62
  msgid "Contact Form Options"
63
  msgstr "Options du Formulaire de Contact"
64
 
66
  msgid "Contact Form"
67
  msgstr "Formulaire de Contact"
68
 
69
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
70
  msgid "Name:"
71
  msgstr "Nom:"
72
 
73
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
74
  msgid "E-Mail Address:"
75
  msgstr "Adresse e-mail:"
76
 
77
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
78
  msgid "Phone:"
79
  msgstr ""
80
 
81
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
82
  msgid "Subject:"
83
  msgstr "Sujet:"
84
 
85
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
86
  msgid "Message:"
87
  msgstr "Message:"
88
 
89
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
90
  msgid "Attachment:"
91
  msgstr "Pièce-jointe:"
92
 
93
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
94
+ msgid "Submit"
95
+ msgstr "Envoyer"
96
+
97
+ #: contact_form.php:152
98
+ msgid "Your name is required."
99
+ msgstr "Un nom est obligatoire."
100
+
101
+ #: contact_form.php:153
102
+ msgid "A proper e-mail address is required."
103
+ msgstr "Une adresse e-mail valide est obligatoire."
104
+
105
+ #: contact_form.php:154
106
+ msgid "Subject text is required."
107
+ msgstr "Sujet obligatoire."
108
+
109
+ #: contact_form.php:155
110
+ msgid "Message text is required."
111
+ msgstr "Un message est obligatoire."
112
+
113
+ #: contact_form.php:156
114
+ #, fuzzy
115
+ msgid "Phone is required field."
116
+ msgstr "Un nom est obligatoire."
117
+
118
+ #: contact_form.php:157
119
+ msgid "Attachment is broken."
120
+ msgstr "La pièce-jointe n'est pas valide."
121
+
122
+ #: contact_form.php:158
123
+ msgid "Please complete the CAPTCHA."
124
+ msgstr "Merci de compléter le CAPTCHA."
125
+
126
+ #: contact_form.php:159
127
+ msgid "Please make corrections below and try again."
128
+ msgstr "Merci de faire les corrections suivantes et de réessayer."
129
+
130
+ #: contact_form.php:161
131
  msgid "Thank you for contacting us."
132
  msgstr "Merci de nous avoir contacté."
133
 
134
+ #: contact_form.php:356
135
  msgid ""
136
  "If the option 'Redirect to page' is selected then url field should be "
137
  "fillied in the following format"
139
  "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
140
  "doit être rempli avec le format suivant"
141
 
142
+ #: contact_form.php:365
 
 
 
 
143
  msgid "Such user is not exist. Settings are not saved."
144
  msgstr ""
145
  "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
146
 
147
+ #: contact_form.php:370
148
  msgid "Please input correct email. Settings are not saved."
149
  msgstr ""
150
  "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas "
151
  "sauvegardées."
152
 
153
+ #: contact_form.php:376
154
+ #, fuzzy
155
+ msgid "Please input correct 'FROM' email. Settings are not saved."
156
+ msgstr ""
157
+ "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas "
158
+ "sauvegardées."
159
+
160
+ #: contact_form.php:381
161
+ msgid "Options saved."
162
+ msgstr "Options sauvegardées."
163
+
164
+ #: contact_form.php:406
165
  msgid ""
166
  "If you would like to add a Contact Form to your website, just copy and put "
167
  "this shortcode onto your post or page or widget:"
169
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
170
  "juste ce code dans un article ou sur une page ou un widget:"
171
 
172
+ #: contact_form.php:407
173
  msgid ""
174
  "If information in the below fields are empty then the message will be send "
175
  "to an address which was specified during registration."
177
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
178
  "l'adresse spécifiée lors de l'enregistrement."
179
 
180
+ #: contact_form.php:411
181
  msgid "Use email of wordpress user:"
182
  msgstr "Utiliser l'e-mail du compte wordpress:"
183
 
184
+ #: contact_form.php:415
185
  msgid "Select user name"
186
  msgstr "Choisir un nom d'utilisateur"
187
 
188
+ #: contact_form.php:420
189
  msgid "Set a name of user who will get messages from a contact form."
190
  msgstr ""
191
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
192
  "formulaire de contact."
193
 
194
+ #: contact_form.php:424
195
  msgid "Use this email:"
196
  msgstr "Utiliser cette adresse e-mail:"
197
 
198
+ #: contact_form.php:427
199
  msgid "Set an email address which will be used for messages receiving."
200
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
201
 
202
+ #: contact_form.php:431
203
  msgid "Additional options"
204
  msgstr "Options supplémentaires"
205
 
206
+ #: contact_form.php:434
207
  msgid "Display Attachment block"
208
  msgstr "Afficher le bloc pièce-jointe"
209
 
210
+ #: contact_form.php:436
211
  msgid "Users can attach files of the following types"
212
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
213
 
214
+ #: contact_form.php:440
215
  msgid "Display Attachment explanations"
216
  msgstr "Afficher les explications sur les pièces jointes"
217
 
218
+ #: contact_form.php:442
219
  msgid "Display explanations after Attachment block"
220
  msgstr "Afficher les explications après le bloc des pièces jointes"
221
 
222
+ #: contact_form.php:446
223
  msgid "Display Send me a copy block"
224
  msgstr "Afficher \"M'envoyer une copie\" "
225
 
226
+ #: contact_form.php:452
227
  msgid "What use?"
228
  msgstr "Quel utilisation?"
229
 
230
+ #: contact_form.php:455
231
  msgid "Wp-mail"
232
  msgstr "Wp-mail"
233
 
234
+ #: contact_form.php:456
235
  msgid "To send mail you can use the wordpress wp_mail function"
236
  msgstr ""
237
  "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
238
 
239
+ #: contact_form.php:462
240
  msgid "Mail"
241
  msgstr "E-mail"
242
 
243
+ #: contact_form.php:463
244
  msgid "To send mail you can use the php mail function"
245
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
246
 
247
+ #: contact_form.php:467
248
+ #, fuzzy
249
+ msgid "Change text for 'FROM' field of the email"
250
  msgstr "Modifier des champs du formulaire de contact"
251
 
252
+ #: contact_form.php:473
253
+ msgid "Select email for 'FROM' field of the email"
254
+ msgstr ""
255
+
256
+ #: contact_form.php:475
257
+ msgid ""
258
+ "In the field 'From' in the mail it will use email of that user who fills the "
259
+ "form."
260
+ msgstr ""
261
+
262
+ #: contact_form.php:477
263
+ msgid "In the field 'From' it will use this email."
264
+ msgstr ""
265
+
266
+ #: contact_form.php:481
267
  msgid "Display phone field"
268
  msgstr ""
269
 
270
+ #: contact_form.php:487
271
  msgid "Required field"
272
  msgstr ""
273
 
274
+ #: contact_form.php:489 contact_form.php:953
275
  msgid "Name"
276
  msgstr "Nom"
277
 
278
+ #: contact_form.php:490
279
  #, fuzzy
280
  msgid "E-Mail Address"
281
  msgstr "Adresse e-mail:"
282
 
283
+ #: contact_form.php:491 contact_form.php:961
284
  msgid "Phone"
285
  msgstr ""
286
 
287
+ #: contact_form.php:492 contact_form.php:964
288
  msgid "Subject"
289
  msgstr "Sujet"
290
 
291
+ #: contact_form.php:493 contact_form.php:967
292
  msgid "Message"
293
  msgstr "Message"
294
 
295
+ #: contact_form.php:497
296
  msgid "Display additional info in email"
297
  msgstr "Afficher les informations complémentaires dans le courriel"
298
 
299
+ #: contact_form.php:502 contact_form.php:925
300
  msgid "Sent from (ip address)"
301
  msgstr "Envoyé de (adresse IP)"
302
 
303
+ #: contact_form.php:503 contact_form.php:930
304
  msgid "Date/Time"
305
  msgstr "Date/Heure"
306
 
307
+ #: contact_form.php:504 contact_form.php:935
308
  msgid "Coming from (referer)"
309
  msgstr "Envoyer de (référence)"
310
 
311
+ #: contact_form.php:505 contact_form.php:940
312
  msgid "Using (user agent)"
313
  msgstr "Depuis (navigateur)"
314
 
315
+ #: contact_form.php:509
316
+ msgid "Language settings for label fields"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:518
320
+ msgid "Add language"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:522
324
+ #, fuzzy
325
+ msgid "Change label for fields of the contact form and error messages"
326
  msgstr "Modifier le nom des champs du formulaire de contact"
327
 
328
+ #: contact_form.php:527 contact_form.php:580
329
+ msgid "English"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:542 contact_form.php:562
333
+ msgid "Error message for name field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:543 contact_form.php:563
337
+ msgid "Error message for email field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:544 contact_form.php:564
341
+ msgid "Error message for phone field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:545 contact_form.php:565
345
+ msgid "Error message for subject field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:546 contact_form.php:566
349
+ msgid "Error message for message field"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:547 contact_form.php:567
353
+ msgid "Error message for attachment field"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:548 contact_form.php:568
357
+ msgid "Error message for captcha"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:549 contact_form.php:569
361
+ msgid "Error message for all form"
362
+ msgstr ""
363
+
364
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
365
+ #: contact_form.php:595
366
+ msgid "Use shortcode"
367
+ msgstr ""
368
+
369
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
370
+ #: contact_form.php:595
371
+ msgid "for this language"
372
+ msgstr ""
373
+
374
+ #: contact_form.php:577
375
  msgid "Action after the send mail"
376
  msgstr "Action après l'envoie de l'e-mail"
377
 
378
+ #: contact_form.php:579
379
  msgid "Display text"
380
  msgstr "Afficher le texte"
381
 
382
+ #: contact_form.php:588 contact_form.php:594
383
  msgid "Text"
384
  msgstr "Texte"
385
 
386
+ #: contact_form.php:601
387
  msgid "Redirect to page"
388
  msgstr "Rediriger vers la page"
389
 
390
+ #: contact_form.php:602
391
  msgid "Url"
392
  msgstr "Url"
393
 
394
+ #: contact_form.php:607
395
  msgid "Save Changes"
396
  msgstr "Sauvegarder les modifications"
397
 
398
+ #: contact_form.php:646
399
  msgid "Sorry, your e-mail could not be delivered."
400
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
401
 
402
+ #: contact_form.php:716
403
  msgid "You can attach files of the following types"
404
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
405
 
406
+ #: contact_form.php:724
407
  msgid "Send me a copy"
408
  msgstr "M'envoyer une copie"
409
 
410
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
  msgid "Contact from"
412
  msgstr "Contact de"
413
 
414
+ #: contact_form.php:956
415
  msgid "Email"
416
  msgstr "E-mail"
417
 
418
+ #: contact_form.php:970
419
  msgid "Site"
420
  msgstr "Site"
421
 
422
+ #: contact_form.php:1021
423
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
424
  msgstr ""
425
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
426
  "MIME !"
427
 
428
+ #: contact_form.php:1078
429
  msgid "FAQ"
430
  msgstr "FAQ"
431
 
432
+ #: contact_form.php:1079
433
  msgid "Support"
434
  msgstr "Support"
435
 
436
+ #: contact_form.php:1125
437
+ msgid "Are you sure you want to delete this language?"
438
+ msgstr ""
439
+
440
  #, fuzzy
441
  #~ msgid ""
442
  #~ "If you would like to add a Contact Form to your website, just copy and "
languages/contact_form-gl_ES.mo ADDED
Binary file
languages/contact_form-gl_ES.po ADDED
@@ -0,0 +1,442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
+ "Last-Translator: prios <prios@dinahosting.com>\n"
8
+ "Language-Team: Paula Rios <paulacompos@gmail.com>\n"
9
+ "Language: gl_ES\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: contact_form.php:76
21
+ msgid "Activated plugins"
22
+ msgstr "Plugins activados"
23
+
24
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
25
+ msgid "Read more"
26
+ msgstr "Ler máis"
27
+
28
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
29
+ msgid "Settings"
30
+ msgstr "Configuracións"
31
+
32
+ #: contact_form.php:84
33
+ msgid "Installed plugins"
34
+ msgstr "Plugins instalados"
35
+
36
+ #: contact_form.php:92
37
+ msgid "Recommended plugins"
38
+ msgstr "Plugins recomendados"
39
+
40
+ #: contact_form.php:94
41
+ msgid "Download"
42
+ msgstr "Baixar"
43
+
44
+ #: contact_form.php:94
45
+ #, php-format
46
+ msgid "Install %s"
47
+ msgstr "Instalar %s"
48
+
49
+ #: contact_form.php:94
50
+ msgid "Install now from wordpress.org"
51
+ msgstr "Instalar agora desde wordpress.org"
52
+
53
+ #: contact_form.php:96
54
+ msgid ""
55
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
56
+ "fill in our contact form on our site"
57
+ msgstr ""
58
+ "Se tes calquera dúbida, contacta no email plugin@bestwebsoft.com ou por "
59
+ "medio do noso formulário de contato no sitio web."
60
+
61
+ #: contact_form.php:108 contact_form.php:401
62
+ msgid "Contact Form Options"
63
+ msgstr "Configuracións do Formulário de contato"
64
+
65
+ #: contact_form.php:108
66
+ msgid "Contact Form"
67
+ msgstr "Formulario de contato"
68
+
69
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
70
+ msgid "Name:"
71
+ msgstr "Nome:"
72
+
73
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
74
+ msgid "E-Mail Address:"
75
+ msgstr "Enderezo electrónico:"
76
+
77
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
78
+ msgid "Phone:"
79
+ msgstr "Teléfono:"
80
+
81
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
82
+ msgid "Subject:"
83
+ msgstr "Asunto:"
84
+
85
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
86
+ msgid "Message:"
87
+ msgstr "Mensaxe:"
88
+
89
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
90
+ msgid "Attachment:"
91
+ msgstr "Anexo:"
92
+
93
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
94
+ msgid "Submit"
95
+ msgstr "Enviar"
96
+
97
+ #: contact_form.php:152
98
+ msgid "Your name is required."
99
+ msgstr "O teu nome é obrigatorio."
100
+
101
+ #: contact_form.php:153
102
+ msgid "A proper e-mail address is required."
103
+ msgstr "É obrigatorio un enderezo de correo válido."
104
+
105
+ #: contact_form.php:154
106
+ msgid "Subject text is required."
107
+ msgstr "O Assunto é obrigatorio."
108
+
109
+ #: contact_form.php:155
110
+ msgid "Message text is required."
111
+ msgstr "O texto da Mensaxe é obrigatorio."
112
+
113
+ #: contact_form.php:156
114
+ msgid "Phone is required field."
115
+ msgstr "O teléfono é obrigatorio."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Non é posíbel anexar o arquivo. "
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Por favor, completa o CAPTCHA."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Por favor, fai as correccións abaixo e tenta enviar de novo a mensaxe."
128
+
129
+ #: contact_form.php:161
130
+ msgid "Thank you for contacting us."
131
+ msgstr "Moitas grazas contatares con nós."
132
+
133
+ #: contact_form.php:356
134
+ msgid ""
135
+ "If the option 'Redirect to page' is selected then url field should be "
136
+ "fillied in the following format"
137
+ msgstr ""
138
+ "Se seleccionas a opción de Redireccionar para a páxina, tes que engadir un "
139
+ "URL no seguinte campo"
140
+
141
+ #: contact_form.php:365
142
+ msgid "Such user is not exist. Settings are not saved."
143
+ msgstr "Non existe esta persoa usuaria. No se gardaron as configuracións."
144
+
145
+ #: contact_form.php:370
146
+ msgid "Please input correct email. Settings are not saved."
147
+ msgstr ""
148
+ "Por favor intorduce un enderezo electrónico válido. Non se gardaron as "
149
+ "configuracións."
150
+
151
+ #: contact_form.php:376
152
+ msgid "Please input correct 'FROM' email. Settings are not saved."
153
+ msgstr ""
154
+ "Por favor intorduce un enderezo electrónico válido. Non se gardaron as "
155
+ "configuracións."
156
+
157
+ #: contact_form.php:381
158
+ msgid "Options saved."
159
+ msgstr "Configuracións gardadas."
160
+
161
+ #: contact_form.php:406
162
+ msgid ""
163
+ "If you would like to add a Contact Form to your website, just copy and put "
164
+ "this shortcode onto your post or page or widget:"
165
+ msgstr ""
166
+ "Se queres engadir o Formulário de Contato no seu sitio web, só tes que "
167
+ "copiar e colar este código no artigo, páxina ou widget:"
168
+
169
+ #: contact_form.php:407
170
+ msgid ""
171
+ "If information in the below fields are empty then the message will be send "
172
+ "to an address which was specified during registration."
173
+ msgstr ""
174
+ "Se a inforación nos campos abaixo está baleira, as mensaxes han ser enviadas "
175
+ "para um enderezo que xa foi especificado durante o rexistro."
176
+
177
+ #: contact_form.php:411
178
+ msgid "Use email of wordpress user:"
179
+ msgstr "Usar o enderezo dunha das persoas usuarias:"
180
+
181
+ #: contact_form.php:415
182
+ msgid "Select user name"
183
+ msgstr "Seleciona o nome da persoa usuaria"
184
+
185
+ #: contact_form.php:420
186
+ msgid "Set a name of user who will get messages from a contact form."
187
+ msgstr ""
188
+ "Determina a persoa usuaria que recibirá as mensaxes enviadas polo Formulario "
189
+ "de Contato."
190
+
191
+ #: contact_form.php:424
192
+ msgid "Use this email:"
193
+ msgstr "Usar este enderezo electrónico:"
194
+
195
+ #: contact_form.php:427
196
+ msgid "Set an email address which will be used for messages receiving."
197
+ msgstr ""
198
+ "Configura o enderezo electrónico que vai ser usado para recibires as "
199
+ "mensaxes."
200
+
201
+ #: contact_form.php:431
202
+ msgid "Additional options"
203
+ msgstr "Opcións adicionais"
204
+
205
+ #: contact_form.php:434
206
+ msgid "Display Attachment block"
207
+ msgstr "Mostrar a opción para anexar arquivos"
208
+
209
+ #: contact_form.php:436
210
+ msgid "Users can attach files of the following types"
211
+ msgstr "As persoas usuarias poden anexar arquivos do tipo:"
212
+
213
+ #: contact_form.php:440
214
+ msgid "Display Attachment explanations"
215
+ msgstr "Ver as explicacións dos anexos"
216
+
217
+ #: contact_form.php:442
218
+ msgid "Display explanations after Attachment block"
219
+ msgstr "Amosar explicacións tras o bloqueo de arquivos adxuntos"
220
+
221
+ #: contact_form.php:446
222
+ msgid "Display Send me a copy block"
223
+ msgstr "Mostrar a opción Enviarme unha cópia"
224
+
225
+ #: contact_form.php:452
226
+ msgid "What use?"
227
+ msgstr "Que queres usar?"
228
+
229
+ #: contact_form.php:455
230
+ msgid "Wp-mail"
231
+ msgstr "Wp-mail"
232
+
233
+ #: contact_form.php:456
234
+ msgid "To send mail you can use the wordpress wp_mail function"
235
+ msgstr "Para enviar o correo podes usar a función wp_mail do WordPress"
236
+
237
+ #: contact_form.php:462
238
+ msgid "Mail"
239
+ msgstr "Enderezo electrónico"
240
+
241
+ #: contact_form.php:463
242
+ msgid "To send mail you can use the php mail function"
243
+ msgstr "Para enviar o correo podes usar a función php mail"
244
+
245
+ #: contact_form.php:467
246
+ msgid "Change text for 'FROM' field of the email"
247
+ msgstr "Mudar campos do formulario de contato"
248
+
249
+ #: contact_form.php:473
250
+ msgid "Select email for 'FROM' field of the email"
251
+ msgstr ""
252
+
253
+ #: contact_form.php:475
254
+ msgid ""
255
+ "In the field 'From' in the mail it will use email of that user who fills the "
256
+ "form."
257
+ msgstr ""
258
+
259
+ #: contact_form.php:477
260
+ msgid "In the field 'From' it will use this email."
261
+ msgstr ""
262
+
263
+ #: contact_form.php:481
264
+ msgid "Display phone field"
265
+ msgstr "Amosar campo teléfono"
266
+
267
+ #: contact_form.php:487
268
+ msgid "Required field"
269
+ msgstr "Campo obrigatorio"
270
+
271
+ #: contact_form.php:489 contact_form.php:953
272
+ msgid "Name"
273
+ msgstr "Nome"
274
+
275
+ #: contact_form.php:490
276
+ msgid "E-Mail Address"
277
+ msgstr "Enderezo electrónico:"
278
+
279
+ #: contact_form.php:491 contact_form.php:961
280
+ msgid "Phone"
281
+ msgstr "Teléfono"
282
+
283
+ #: contact_form.php:492 contact_form.php:964
284
+ msgid "Subject"
285
+ msgstr "Asunto"
286
+
287
+ #: contact_form.php:493 contact_form.php:967
288
+ msgid "Message"
289
+ msgstr "Mensaxe"
290
+
291
+ #: contact_form.php:497
292
+ msgid "Display additional info in email"
293
+ msgstr "Ver Información adicional no correo"
294
+
295
+ #: contact_form.php:502 contact_form.php:925
296
+ msgid "Sent from (ip address)"
297
+ msgstr "Enviado desde (Enderezo IP)"
298
+
299
+ #: contact_form.php:503 contact_form.php:930
300
+ msgid "Date/Time"
301
+ msgstr "Data/Hora"
302
+
303
+ #: contact_form.php:504 contact_form.php:935
304
+ msgid "Coming from (referer)"
305
+ msgstr "Procedente de de (orixe)"
306
+
307
+ #: contact_form.php:505 contact_form.php:940
308
+ msgid "Using (user agent)"
309
+ msgstr "Usando (cliente de email)"
310
+
311
+ #: contact_form.php:509
312
+ msgid "Language settings for label fields"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:518
316
+ msgid "Add language"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:522
320
+ msgid "Change label for fields of the contact form and error messages"
321
+ msgstr "Mudar a etiqueta dos campos no Formulario de contato"
322
+
323
+ #: contact_form.php:527 contact_form.php:580
324
+ msgid "English"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:542 contact_form.php:562
328
+ msgid "Error message for name field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:543 contact_form.php:563
332
+ msgid "Error message for email field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:544 contact_form.php:564
336
+ msgid "Error message for phone field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:545 contact_form.php:565
340
+ msgid "Error message for subject field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:546 contact_form.php:566
344
+ msgid "Error message for message field"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:547 contact_form.php:567
348
+ msgid "Error message for attachment field"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:548 contact_form.php:568
352
+ msgid "Error message for captcha"
353
+ msgstr ""
354
+
355
+ #: contact_form.php:549 contact_form.php:569
356
+ msgid "Error message for all form"
357
+ msgstr ""
358
+
359
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
360
+ #: contact_form.php:595
361
+ msgid "Use shortcode"
362
+ msgstr ""
363
+
364
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
365
+ #: contact_form.php:595
366
+ msgid "for this language"
367
+ msgstr ""
368
+
369
+ #: contact_form.php:577
370
+ msgid "Action after the send mail"
371
+ msgstr "Acción despois do envío de correo"
372
+
373
+ #: contact_form.php:579
374
+ msgid "Display text"
375
+ msgstr "Mostrar a opción para anexar arquivos"
376
+
377
+ #: contact_form.php:588 contact_form.php:594
378
+ msgid "Text"
379
+ msgstr "Texto"
380
+
381
+ #: contact_form.php:601
382
+ msgid "Redirect to page"
383
+ msgstr "Redirecionar á páxina"
384
+
385
+ #: contact_form.php:602
386
+ msgid "Url"
387
+ msgstr "URL"
388
+
389
+ #: contact_form.php:607
390
+ msgid "Save Changes"
391
+ msgstr "Gardar as mudanzas"
392
+
393
+ #: contact_form.php:646
394
+ msgid "Sorry, your e-mail could not be delivered."
395
+ msgstr "Sentímoscho, o teu correo non pode ser entregado."
396
+
397
+ #: contact_form.php:716
398
+ msgid "You can attach files of the following types"
399
+ msgstr "Podes anexar arquivos do tipo:"
400
+
401
+ #: contact_form.php:724
402
+ msgid "Send me a copy"
403
+ msgstr "Enviarme unha copia"
404
+
405
+ #: contact_form.php:948
406
+ msgid "Contact from"
407
+ msgstr "Formulario de contato"
408
+
409
+ #: contact_form.php:956
410
+ msgid "Email"
411
+ msgstr "Correo electrónico"
412
+
413
+ #: contact_form.php:970
414
+ msgid "Site"
415
+ msgstr "Sitio web"
416
+
417
+ #: contact_form.php:1021
418
+ msgid "If you can see this MIME than your client doesn't accept MIME types!"
419
+ msgstr ""
420
+ "Se consegues ver esta MENSAXE entón é que o teu cliente non acepta tipos "
421
+ "MIME! Por favor utiliza un cliente máis actualizado."
422
+
423
+ #: contact_form.php:1078
424
+ msgid "FAQ"
425
+ msgstr "Preguntas frecuentes"
426
+
427
+ #: contact_form.php:1079
428
+ msgid "Support"
429
+ msgstr "Soporte"
430
+
431
+ #: contact_form.php:1125
432
+ msgid "Are you sure you want to delete this language?"
433
+ msgstr ""
434
+
435
+ #~ msgid "E-Mail Addresse:"
436
+ #~ msgstr "Indirizzo e-mail:"
437
+
438
+ #~ msgid "Install Now"
439
+ #~ msgstr "Installa Ora"
440
+
441
+ #~ msgid "BWS Plugins"
442
+ #~ msgstr "BWS Plugins"
languages/contact_form-he_IL.mo CHANGED
Binary file
languages/contact_form-he_IL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.20\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: he_IL\n"
@@ -30,7 +30,7 @@ msgid "Read more"
30
  msgstr "קרא עוד"
31
 
32
  # @ contact_form
33
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
34
  msgid "Settings"
35
  msgstr "הגדרות"
36
 
@@ -70,7 +70,7 @@ msgstr ""
70
  "את טופס יצירת הקשר באתר שלנו"
71
 
72
  # @ contact_form
73
- #: contact_form.php:108 contact_form.php:286
74
  msgid "Contact Form Options"
75
  msgstr "אפשרויות טופס צור קשר"
76
 
@@ -80,46 +80,87 @@ msgid "Contact Form"
80
  msgstr "טופס צור קשר"
81
 
82
  # @ contact_form
83
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
84
- #: contact_form.php:413
85
  msgid "Name:"
86
  msgstr "שם:"
87
 
88
  # @ contact_form
89
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
90
- #: contact_form.php:414
91
  msgid "E-Mail Address:"
92
  msgstr "כתובת דוא\\\"ל:"
93
 
94
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
95
  msgid "Phone:"
96
  msgstr ""
97
 
98
  # @ contact_form
99
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
100
- #: contact_form.php:416
101
  msgid "Subject:"
102
  msgstr "נושא:"
103
 
104
  # @ contact_form
105
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
106
- #: contact_form.php:417
107
  msgid "Message:"
108
  msgstr "הודעה:"
109
 
110
  # @ contact_form
111
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
112
- #: contact_form.php:418
113
  msgid "Attachment:"
114
  msgstr "קובץ מצורף:"
115
 
116
  # @ contact_form
117
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  msgid "Thank you for contacting us."
119
  msgstr "תודה שיצרת עמנו קשר."
120
 
121
  # @ contact_form
122
- #: contact_form.php:253
123
  msgid ""
124
  "If the option 'Redirect to page' is selected then url field should be "
125
  "fillied in the following format"
@@ -128,22 +169,28 @@ msgstr ""
128
  "הבא"
129
 
130
  # @ contact_form
131
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
132
- msgid "Options saved."
133
- msgstr "האפשרויות נשמרו."
134
-
135
- # @ contact_form
136
- #: contact_form.php:268
137
  msgid "Such user is not exist. Settings are not saved."
138
  msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
139
 
140
  # @ contact_form
141
- #: contact_form.php:278
142
  msgid "Please input correct email. Settings are not saved."
143
  msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
144
 
145
  # @ contact_form
146
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
 
147
  msgid ""
148
  "If you would like to add a Contact Form to your website, just copy and put "
149
  "this shortcode onto your post or page or widget:"
@@ -152,278 +199,306 @@ msgstr ""
152
  "אל הפוסט או הדף או הוידג'ט שלך:"
153
 
154
  # @ contact_form
155
- #: contact_form.php:292
156
  msgid ""
157
  "If information in the below fields are empty then the message will be send "
158
  "to an address which was specified during registration."
159
  msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
160
 
161
  # @ contact_form
162
- #: contact_form.php:296
163
  msgid "Use email of wordpress user:"
164
  msgstr "השתמש במייל של משתמש וורדפרס:"
165
 
166
  # @ contact_form
167
- #: contact_form.php:302
168
  msgid "Select user name"
169
  msgstr "בחר שם משתמש"
170
 
171
  # @ contact_form
172
- #: contact_form.php:307
173
  msgid "Set a name of user who will get messages from a contact form."
174
  msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
175
 
176
  # @ contact_form
177
- #: contact_form.php:311
178
  msgid "Use this email:"
179
  msgstr "השתמש במייל זה:"
180
 
181
  # @ contact_form
182
- #: contact_form.php:317
183
  msgid "Set an email address which will be used for messages receiving."
184
  msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
185
 
186
  # @ contact_form
187
- #: contact_form.php:321
188
  msgid "Additional options"
189
  msgstr "אפשרויות נוספות"
190
 
191
  # @ contact_form
192
- #: contact_form.php:324
193
  msgid "Display Attachment block"
194
  msgstr "הצג אפשרות קובץ מצורף"
195
 
196
  # @ contact_form
197
- #: contact_form.php:329
198
  msgid "Users can attach files of the following types"
199
  msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
200
 
201
  # @ contact_form
202
- #: contact_form.php:333
203
  msgid "Display Attachment explanations"
204
  msgstr "הצג הסברי קובץ מצורף"
205
 
206
  # @ contact_form
207
- #: contact_form.php:338
208
  msgid "Display explanations after Attachment block"
209
  msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
210
 
211
  # @ contact_form
212
- #: contact_form.php:342
213
  msgid "Display Send me a copy block"
214
  msgstr "הצג תיבת שלח לי עותק"
215
 
216
  # @ contact_form
217
- #: contact_form.php:348
218
  msgid "What use?"
219
  msgstr "איזה שימוש?"
220
 
221
  # @ mail-send
222
- #: contact_form.php:353
223
  msgid "Wp-mail"
224
  msgstr ""
225
 
226
  # @ mail_send
227
- #: contact_form.php:354
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr ""
230
 
231
  # @ mail-send
232
- #: contact_form.php:362
233
  msgid "Mail"
234
  msgstr ""
235
 
236
  # @ mail_send
237
- #: contact_form.php:363
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
  # @ contact_form
242
- #: contact_form.php:367
243
- msgid "Change FROM fields of the contact form"
 
244
  msgstr "שנה את השדות של טופס יצירת הקשר"
245
 
246
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "Display phone field"
248
  msgstr ""
249
 
250
- #: contact_form.php:379
251
  msgid "Required field"
252
  msgstr ""
253
 
254
  # @ contact_form
255
- #: contact_form.php:388 contact_form.php:775
256
  msgid "Name"
257
  msgstr "שם"
258
 
259
  # @ contact_form
260
- #: contact_form.php:389
261
  #, fuzzy
262
  msgid "E-Mail Address"
263
  msgstr "כתובת דוא\\\"ל:"
264
 
265
- #: contact_form.php:390 contact_form.php:783
266
  msgid "Phone"
267
  msgstr ""
268
 
269
  # @ contact_form
270
- #: contact_form.php:391 contact_form.php:786
271
  msgid "Subject"
272
  msgstr "נושא"
273
 
274
  # @ contact_form
275
- #: contact_form.php:392 contact_form.php:789
276
  msgid "Message"
277
  msgstr "תוכן ההודעה"
278
 
279
  # @ contact_form
280
- #: contact_form.php:396
281
  msgid "Display additional info in email"
282
  msgstr "הצג מידע נוסף במייל"
283
 
284
  # @ contact_form
285
- #: contact_form.php:401 contact_form.php:747
286
  msgid "Sent from (ip address)"
287
  msgstr "נשלח מ (כתובת IP)"
288
 
289
  # @ contact_form
290
- #: contact_form.php:402 contact_form.php:752
291
  msgid "Date/Time"
292
  msgstr "תאריך\\שעה"
293
 
294
  # @ contact_form
295
- #: contact_form.php:403 contact_form.php:757
296
  msgid "Coming from (referer)"
297
  msgstr "מגיע מ (השולח)"
298
 
299
  # @ contact_form
300
- #: contact_form.php:404 contact_form.php:762
301
  msgid "Using (user agent)"
302
  msgstr "משתמש ב (user agent)"
303
 
 
 
 
 
 
 
 
 
304
  # @ contact_form
305
- #: contact_form.php:408
306
- msgid "Change label for fields of the contact form"
 
307
  msgstr "שנה את תוויות הטופס"
308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  # @ contact_form
310
- #: contact_form.php:422
311
  msgid "Action after the send mail"
312
  msgstr "הפעולה שלאחר שליחת הטופס"
313
 
314
  # @ contact_form
315
- #: contact_form.php:424
316
  msgid "Display text"
317
  msgstr "הטקסט המוצג"
318
 
319
  # @ contact_form
320
- #: contact_form.php:425
321
  msgid "Text"
322
  msgstr "טקסט"
323
 
324
  # @ contact_form
325
- #: contact_form.php:426
326
  msgid "Redirect to page"
327
  msgstr "הפנה אל הדף"
328
 
329
  # @ contact_form
330
- #: contact_form.php:427
331
  msgid "Url"
332
  msgstr "URL"
333
 
334
  # @ default
335
- #: contact_form.php:432
336
  msgid "Save Changes"
337
  msgstr ""
338
 
339
  # @ contact_form
340
- #: contact_form.php:470
341
  msgid "Sorry, your e-mail could not be delivered."
342
  msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
343
 
344
  # @ contact_form
345
- #: contact_form.php:540
346
  msgid "You can attach files of the following types"
347
  msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
348
 
349
  # @ contact_form
350
- #: contact_form.php:548
351
  msgid "Send me a copy"
352
  msgstr "שלח לי עותק"
353
 
354
  # @ contact_form
355
- #: contact_form.php:558
356
- msgid "Submit"
357
- msgstr "שלח"
358
-
359
- # @ contact_form
360
- #: contact_form.php:598
361
- msgid "Your name is required."
362
- msgstr "השם שלך הכרחי."
363
-
364
- # @ contact_form
365
- #: contact_form.php:600
366
- msgid "A proper e-mail address is required."
367
- msgstr "כתובת מייל תקנית הכרחית."
368
-
369
- # @ contact_form
370
- #: contact_form.php:602
371
- msgid "Subject text is required."
372
- msgstr "הנושא הכרחי."
373
-
374
- # @ contact_form
375
- #: contact_form.php:604
376
- msgid "Message text is required."
377
- msgstr "מילוי שדה ההודעה הכרחי."
378
-
379
- # @ contact_form
380
- #: contact_form.php:606
381
- #, fuzzy
382
- msgid "Phone is required field."
383
- msgstr "השם שלך הכרחי."
384
-
385
- # @ contact_form
386
- #: contact_form.php:607
387
- msgid "Please make corrections below and try again."
388
- msgstr "אנא עשה תיקונים להלן ונסה שוב."
389
-
390
- # @ contact_form
391
- #: contact_form.php:639
392
- msgid "Attachment is broken."
393
- msgstr "הקובץ המצורף שבור"
394
-
395
- # @ contact_form
396
- #: contact_form.php:654
397
- msgid "Please complete the CAPTCHA."
398
- msgstr "אנא השלם את קוד האימות."
399
-
400
- # @ contact_form
401
- #: contact_form.php:770
402
  msgid "Contact from"
403
  msgstr "טופס צור קשר"
404
 
405
  # @ contact_form
406
- #: contact_form.php:778
407
  msgid "Email"
408
  msgstr "כתובת מייל"
409
 
410
  # @ contact_form
411
- #: contact_form.php:792
412
  msgid "Site"
413
  msgstr "אתר"
414
 
415
  # @ contact_form
416
- #: contact_form.php:837
417
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
418
  msgstr ""
419
  "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
420
 
421
  # @ contact_form
422
- #: contact_form.php:891
423
  msgid "FAQ"
424
  msgstr "שאלות ותשובות"
425
 
426
  # @ contact_form
427
- #: contact_form.php:892
428
  msgid "Support"
429
  msgstr "תמיכה"
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.20\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: he_IL\n"
30
  msgstr "קרא עוד"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
34
  msgid "Settings"
35
  msgstr "הגדרות"
36
 
70
  "את טופס יצירת הקשר באתר שלנו"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:108 contact_form.php:401
74
  msgid "Contact Form Options"
75
  msgstr "אפשרויות טופס צור קשר"
76
 
80
  msgstr "טופס צור קשר"
81
 
82
  # @ contact_form
83
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
84
  msgid "Name:"
85
  msgstr "שם:"
86
 
87
  # @ contact_form
88
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
89
  msgid "E-Mail Address:"
90
  msgstr "כתובת דוא\\\"ל:"
91
 
92
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
93
  msgid "Phone:"
94
  msgstr ""
95
 
96
  # @ contact_form
97
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
98
  msgid "Subject:"
99
  msgstr "נושא:"
100
 
101
  # @ contact_form
102
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
103
  msgid "Message:"
104
  msgstr "הודעה:"
105
 
106
  # @ contact_form
107
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
108
  msgid "Attachment:"
109
  msgstr "קובץ מצורף:"
110
 
111
  # @ contact_form
112
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
113
+ msgid "Submit"
114
+ msgstr "שלח"
115
+
116
+ # @ contact_form
117
+ #: contact_form.php:152
118
+ msgid "Your name is required."
119
+ msgstr "השם שלך הכרחי."
120
+
121
+ # @ contact_form
122
+ #: contact_form.php:153
123
+ msgid "A proper e-mail address is required."
124
+ msgstr "כתובת מייל תקנית הכרחית."
125
+
126
+ # @ contact_form
127
+ #: contact_form.php:154
128
+ msgid "Subject text is required."
129
+ msgstr "הנושא הכרחי."
130
+
131
+ # @ contact_form
132
+ #: contact_form.php:155
133
+ msgid "Message text is required."
134
+ msgstr "מילוי שדה ההודעה הכרחי."
135
+
136
+ # @ contact_form
137
+ #: contact_form.php:156
138
+ #, fuzzy
139
+ msgid "Phone is required field."
140
+ msgstr "השם שלך הכרחי."
141
+
142
+ # @ contact_form
143
+ #: contact_form.php:157
144
+ msgid "Attachment is broken."
145
+ msgstr "הקובץ המצורף שבור"
146
+
147
+ # @ contact_form
148
+ #: contact_form.php:158
149
+ msgid "Please complete the CAPTCHA."
150
+ msgstr "אנא השלם את קוד האימות."
151
+
152
+ # @ contact_form
153
+ #: contact_form.php:159
154
+ msgid "Please make corrections below and try again."
155
+ msgstr "אנא עשה תיקונים להלן ונסה שוב."
156
+
157
+ # @ contact_form
158
+ #: contact_form.php:161
159
  msgid "Thank you for contacting us."
160
  msgstr "תודה שיצרת עמנו קשר."
161
 
162
  # @ contact_form
163
+ #: contact_form.php:356
164
  msgid ""
165
  "If the option 'Redirect to page' is selected then url field should be "
166
  "fillied in the following format"
169
  "הבא"
170
 
171
  # @ contact_form
172
+ #: contact_form.php:365
 
 
 
 
 
173
  msgid "Such user is not exist. Settings are not saved."
174
  msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
175
 
176
  # @ contact_form
177
+ #: contact_form.php:370
178
  msgid "Please input correct email. Settings are not saved."
179
  msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
180
 
181
  # @ contact_form
182
+ #: contact_form.php:376
183
+ #, fuzzy
184
+ msgid "Please input correct 'FROM' email. Settings are not saved."
185
+ msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
186
+
187
+ # @ contact_form
188
+ #: contact_form.php:381
189
+ msgid "Options saved."
190
+ msgstr "האפשרויות נשמרו."
191
+
192
+ # @ contact_form
193
+ #: contact_form.php:406
194
  msgid ""
195
  "If you would like to add a Contact Form to your website, just copy and put "
196
  "this shortcode onto your post or page or widget:"
199
  "אל הפוסט או הדף או הוידג'ט שלך:"
200
 
201
  # @ contact_form
202
+ #: contact_form.php:407
203
  msgid ""
204
  "If information in the below fields are empty then the message will be send "
205
  "to an address which was specified during registration."
206
  msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
207
 
208
  # @ contact_form
209
+ #: contact_form.php:411
210
  msgid "Use email of wordpress user:"
211
  msgstr "השתמש במייל של משתמש וורדפרס:"
212
 
213
  # @ contact_form
214
+ #: contact_form.php:415
215
  msgid "Select user name"
216
  msgstr "בחר שם משתמש"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:420
220
  msgid "Set a name of user who will get messages from a contact form."
221
  msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
222
 
223
  # @ contact_form
224
+ #: contact_form.php:424
225
  msgid "Use this email:"
226
  msgstr "השתמש במייל זה:"
227
 
228
  # @ contact_form
229
+ #: contact_form.php:427
230
  msgid "Set an email address which will be used for messages receiving."
231
  msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
232
 
233
  # @ contact_form
234
+ #: contact_form.php:431
235
  msgid "Additional options"
236
  msgstr "אפשרויות נוספות"
237
 
238
  # @ contact_form
239
+ #: contact_form.php:434
240
  msgid "Display Attachment block"
241
  msgstr "הצג אפשרות קובץ מצורף"
242
 
243
  # @ contact_form
244
+ #: contact_form.php:436
245
  msgid "Users can attach files of the following types"
246
  msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
247
 
248
  # @ contact_form
249
+ #: contact_form.php:440
250
  msgid "Display Attachment explanations"
251
  msgstr "הצג הסברי קובץ מצורף"
252
 
253
  # @ contact_form
254
+ #: contact_form.php:442
255
  msgid "Display explanations after Attachment block"
256
  msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
257
 
258
  # @ contact_form
259
+ #: contact_form.php:446
260
  msgid "Display Send me a copy block"
261
  msgstr "הצג תיבת שלח לי עותק"
262
 
263
  # @ contact_form
264
+ #: contact_form.php:452
265
  msgid "What use?"
266
  msgstr "איזה שימוש?"
267
 
268
  # @ mail-send
269
+ #: contact_form.php:455
270
  msgid "Wp-mail"
271
  msgstr ""
272
 
273
  # @ mail_send
274
+ #: contact_form.php:456
275
  msgid "To send mail you can use the wordpress wp_mail function"
276
  msgstr ""
277
 
278
  # @ mail-send
279
+ #: contact_form.php:462
280
  msgid "Mail"
281
  msgstr ""
282
 
283
  # @ mail_send
284
+ #: contact_form.php:463
285
  msgid "To send mail you can use the php mail function"
286
  msgstr ""
287
 
288
  # @ contact_form
289
+ #: contact_form.php:467
290
+ #, fuzzy
291
+ msgid "Change text for 'FROM' field of the email"
292
  msgstr "שנה את השדות של טופס יצירת הקשר"
293
 
294
+ #: contact_form.php:473
295
+ msgid "Select email for 'FROM' field of the email"
296
+ msgstr ""
297
+
298
+ #: contact_form.php:475
299
+ msgid ""
300
+ "In the field 'From' in the mail it will use email of that user who fills the "
301
+ "form."
302
+ msgstr ""
303
+
304
+ #: contact_form.php:477
305
+ msgid "In the field 'From' it will use this email."
306
+ msgstr ""
307
+
308
+ #: contact_form.php:481
309
  msgid "Display phone field"
310
  msgstr ""
311
 
312
+ #: contact_form.php:487
313
  msgid "Required field"
314
  msgstr ""
315
 
316
  # @ contact_form
317
+ #: contact_form.php:489 contact_form.php:953
318
  msgid "Name"
319
  msgstr "שם"
320
 
321
  # @ contact_form
322
+ #: contact_form.php:490
323
  #, fuzzy
324
  msgid "E-Mail Address"
325
  msgstr "כתובת דוא\\\"ל:"
326
 
327
+ #: contact_form.php:491 contact_form.php:961
328
  msgid "Phone"
329
  msgstr ""
330
 
331
  # @ contact_form
332
+ #: contact_form.php:492 contact_form.php:964
333
  msgid "Subject"
334
  msgstr "נושא"
335
 
336
  # @ contact_form
337
+ #: contact_form.php:493 contact_form.php:967
338
  msgid "Message"
339
  msgstr "תוכן ההודעה"
340
 
341
  # @ contact_form
342
+ #: contact_form.php:497
343
  msgid "Display additional info in email"
344
  msgstr "הצג מידע נוסף במייל"
345
 
346
  # @ contact_form
347
+ #: contact_form.php:502 contact_form.php:925
348
  msgid "Sent from (ip address)"
349
  msgstr "נשלח מ (כתובת IP)"
350
 
351
  # @ contact_form
352
+ #: contact_form.php:503 contact_form.php:930
353
  msgid "Date/Time"
354
  msgstr "תאריך\\שעה"
355
 
356
  # @ contact_form
357
+ #: contact_form.php:504 contact_form.php:935
358
  msgid "Coming from (referer)"
359
  msgstr "מגיע מ (השולח)"
360
 
361
  # @ contact_form
362
+ #: contact_form.php:505 contact_form.php:940
363
  msgid "Using (user agent)"
364
  msgstr "משתמש ב (user agent)"
365
 
366
+ #: contact_form.php:509
367
+ msgid "Language settings for label fields"
368
+ msgstr ""
369
+
370
+ #: contact_form.php:518
371
+ msgid "Add language"
372
+ msgstr ""
373
+
374
  # @ contact_form
375
+ #: contact_form.php:522
376
+ #, fuzzy
377
+ msgid "Change label for fields of the contact form and error messages"
378
  msgstr "שנה את תוויות הטופס"
379
 
380
+ #: contact_form.php:527 contact_form.php:580
381
+ msgid "English"
382
+ msgstr ""
383
+
384
+ #: contact_form.php:542 contact_form.php:562
385
+ msgid "Error message for name field"
386
+ msgstr ""
387
+
388
+ #: contact_form.php:543 contact_form.php:563
389
+ msgid "Error message for email field"
390
+ msgstr ""
391
+
392
+ #: contact_form.php:544 contact_form.php:564
393
+ msgid "Error message for phone field"
394
+ msgstr ""
395
+
396
+ #: contact_form.php:545 contact_form.php:565
397
+ msgid "Error message for subject field"
398
+ msgstr ""
399
+
400
+ #: contact_form.php:546 contact_form.php:566
401
+ msgid "Error message for message field"
402
+ msgstr ""
403
+
404
+ #: contact_form.php:547 contact_form.php:567
405
+ msgid "Error message for attachment field"
406
+ msgstr ""
407
+
408
+ #: contact_form.php:548 contact_form.php:568
409
+ msgid "Error message for captcha"
410
+ msgstr ""
411
+
412
+ #: contact_form.php:549 contact_form.php:569
413
+ msgid "Error message for all form"
414
+ msgstr ""
415
+
416
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
417
+ #: contact_form.php:595
418
+ msgid "Use shortcode"
419
+ msgstr ""
420
+
421
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
422
+ #: contact_form.php:595
423
+ msgid "for this language"
424
+ msgstr ""
425
+
426
  # @ contact_form
427
+ #: contact_form.php:577
428
  msgid "Action after the send mail"
429
  msgstr "הפעולה שלאחר שליחת הטופס"
430
 
431
  # @ contact_form
432
+ #: contact_form.php:579
433
  msgid "Display text"
434
  msgstr "הטקסט המוצג"
435
 
436
  # @ contact_form
437
+ #: contact_form.php:588 contact_form.php:594
438
  msgid "Text"
439
  msgstr "טקסט"
440
 
441
  # @ contact_form
442
+ #: contact_form.php:601
443
  msgid "Redirect to page"
444
  msgstr "הפנה אל הדף"
445
 
446
  # @ contact_form
447
+ #: contact_form.php:602
448
  msgid "Url"
449
  msgstr "URL"
450
 
451
  # @ default
452
+ #: contact_form.php:607
453
  msgid "Save Changes"
454
  msgstr ""
455
 
456
  # @ contact_form
457
+ #: contact_form.php:646
458
  msgid "Sorry, your e-mail could not be delivered."
459
  msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
460
 
461
  # @ contact_form
462
+ #: contact_form.php:716
463
  msgid "You can attach files of the following types"
464
  msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
465
 
466
  # @ contact_form
467
+ #: contact_form.php:724
468
  msgid "Send me a copy"
469
  msgstr "שלח לי עותק"
470
 
471
  # @ contact_form
472
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
  msgid "Contact from"
474
  msgstr "טופס צור קשר"
475
 
476
  # @ contact_form
477
+ #: contact_form.php:956
478
  msgid "Email"
479
  msgstr "כתובת מייל"
480
 
481
  # @ contact_form
482
+ #: contact_form.php:970
483
  msgid "Site"
484
  msgstr "אתר"
485
 
486
  # @ contact_form
487
+ #: contact_form.php:1021
488
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
489
  msgstr ""
490
  "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
491
 
492
  # @ contact_form
493
+ #: contact_form.php:1078
494
  msgid "FAQ"
495
  msgstr "שאלות ותשובות"
496
 
497
  # @ contact_form
498
+ #: contact_form.php:1079
499
  msgid "Support"
500
  msgstr "תמיכה"
501
+
502
+ #: contact_form.php:1125
503
+ msgid "Are you sure you want to delete this language?"
504
+ msgstr ""
languages/contact_form-hi_IN.mo CHANGED
Binary file
languages/contact_form-hi_IN.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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
9
  "Language: hi_IN\n"
@@ -24,7 +24,7 @@ msgstr "सक्रिय प्लगिन"
24
  msgid "Read more"
25
  msgstr "अधिक पढ़ें"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "सेटिंग्स"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट "
58
  "पर हमारे संपर्क फार्म में भरें"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "संपर्क प्रपत्र विकल्प"
63
 
@@ -65,58 +65,95 @@ msgstr "संपर्क प्रपत्र विकल्प"
65
  msgid "Contact Form"
66
  msgstr "संपर्क प्रपत्र"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "नाम:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "ई - मेल पता:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "विषय:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "संदेश:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "लगाव:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "विकल्प बचाया."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,7 +161,7 @@ msgstr ""
124
  "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या "
125
  "पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
@@ -132,228 +169,265 @@ msgstr ""
132
  "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया "
133
  "गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
134
 
135
- #: contact_form.php:296
136
  msgid "Use email of wordpress user:"
137
  msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
138
 
139
- #: contact_form.php:302
140
  msgid "Select user name"
141
  msgstr "उपयोगकर्ता नाम का चयन करें"
142
 
143
- #: contact_form.php:307
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
146
 
147
- #: contact_form.php:311
148
  msgid "Use this email:"
149
  msgstr "इस ईमेल का उपयोग करें:"
150
 
151
- #: contact_form.php:317
152
  msgid "Set an email address which will be used for messages receiving."
153
  msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
154
 
155
- #: contact_form.php:321
156
  msgid "Additional options"
157
  msgstr "अतिरिक्त विकल्प"
158
 
159
- #: contact_form.php:324
160
  msgid "Display Attachment block"
161
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
162
 
163
- #: contact_form.php:329
164
  msgid "Users can attach files of the following types"
165
  msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
166
 
167
- #: contact_form.php:333
168
  #, fuzzy
169
  msgid "Display Attachment explanations"
170
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
171
 
172
- #: contact_form.php:338
173
  #, fuzzy
174
  msgid "Display explanations after Attachment block"
175
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
176
 
177
- #: contact_form.php:342
178
  msgid "Display Send me a copy block"
179
  msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
180
 
181
- #: contact_form.php:348
182
  msgid "What use?"
183
  msgstr "किस का उपयोग करें?."
184
 
185
- #: contact_form.php:353
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
- #: contact_form.php:354
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
192
 
193
- #: contact_form.php:362
194
  msgid "Mail"
195
  msgstr "मेल"
196
 
197
- #: contact_form.php:363
198
  msgid "To send mail you can use the php mail function"
199
  msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
200
 
201
- #: contact_form.php:367
202
- msgid "Change FROM fields of the contact form"
 
203
  msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
204
 
205
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Display phone field"
207
  msgstr ""
208
 
209
- #: contact_form.php:379
210
  msgid "Required field"
211
  msgstr ""
212
 
213
- #: contact_form.php:388 contact_form.php:775
214
  msgid "Name"
215
  msgstr "नाम"
216
 
217
- #: contact_form.php:389
218
  #, fuzzy
219
  msgid "E-Mail Address"
220
  msgstr "ई - मेल पता:"
221
 
222
- #: contact_form.php:390 contact_form.php:783
223
  msgid "Phone"
224
  msgstr ""
225
 
226
- #: contact_form.php:391 contact_form.php:786
227
  msgid "Subject"
228
  msgstr "विषय"
229
 
230
- #: contact_form.php:392 contact_form.php:789
231
  msgid "Message"
232
  msgstr "संदेश"
233
 
234
- #: contact_form.php:396
235
  msgid "Display additional info in email"
236
  msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
237
 
238
- #: contact_form.php:401 contact_form.php:747
239
  msgid "Sent from (ip address)"
240
  msgstr "(आईपी पते से भेजा गया)"
241
 
242
- #: contact_form.php:402 contact_form.php:752
243
  msgid "Date/Time"
244
  msgstr "दिनांक / समय"
245
 
246
- #: contact_form.php:403 contact_form.php:757
247
  msgid "Coming from (referer)"
248
  msgstr "से आ रहा है (referer)"
249
 
250
- #: contact_form.php:404 contact_form.php:762
251
  msgid "Using (user agent)"
252
  msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
253
 
254
- #: contact_form.php:408
255
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
256
  msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
257
 
258
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Action after the send mail"
260
  msgstr ""
261
 
262
- #: contact_form.php:424
263
  #, fuzzy
264
  msgid "Display text"
265
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr ""
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr ""
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr ""
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "परिवर्तन सहेजें"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "मुझे एक प्रतिलिपि भेजें"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "सबमिट"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "आपका नाम की आवश्यकता है."
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "एक उचित ई - मेल पते की आवश्यकता है."
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "विषय पाठ की आवश्यकता होती है"
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "संदेश पाठ की आवश्यकता है."
314
-
315
- #: contact_form.php:606
316
- #, fuzzy
317
- msgid "Phone is required field."
318
- msgstr "आपका नाम की आवश्यकता है."
319
-
320
- #: contact_form.php:607
321
- msgid "Please make corrections below and try again."
322
- msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "अटैचमेंट टूटा ."
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "कॅप्चा पूरा करें."
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "संपर्क करें"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "ईमेल"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "साइट"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr ""
347
  "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "समर्थन"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Indirizzo e-mail:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
9
  "Language: hi_IN\n"
24
  msgid "Read more"
25
  msgstr "अधिक पढ़ें"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "सेटिंग्स"
30
 
57
  "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट "
58
  "पर हमारे संपर्क फार्म में भरें"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "संपर्क प्रपत्र विकल्प"
63
 
65
  msgid "Contact Form"
66
  msgstr "संपर्क प्रपत्र"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "नाम:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "ई - मेल पता:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "विषय:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "संदेश:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "लगाव:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "सबमिट"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "आपका नाम की आवश्यकता है."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "एक उचित ई - मेल पते की आवश्यकता है."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "विषय पाठ की आवश्यकता होती है"
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "संदेश पाठ की आवश्यकता है."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "आपका नाम की आवश्यकता है."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "अटैचमेंट टूटा ."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "कॅप्चा पूरा करें."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
146
 
147
+ #: contact_form.php:376
148
+ #, fuzzy
149
+ msgid "Please input correct 'FROM' email. Settings are not saved."
150
+ msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
151
+
152
+ #: contact_form.php:381
153
+ msgid "Options saved."
154
+ msgstr "विकल्प बचाया."
155
+
156
+ #: contact_form.php:406
157
  msgid ""
158
  "If you would like to add a Contact Form to your website, just copy and put "
159
  "this shortcode onto your post or page or widget:"
161
  "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या "
162
  "पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
163
 
164
+ #: contact_form.php:407
165
  msgid ""
166
  "If information in the below fields are empty then the message will be send "
167
  "to an address which was specified during registration."
169
  "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया "
170
  "गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
171
 
172
+ #: contact_form.php:411
173
  msgid "Use email of wordpress user:"
174
  msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
175
 
176
+ #: contact_form.php:415
177
  msgid "Select user name"
178
  msgstr "उपयोगकर्ता नाम का चयन करें"
179
 
180
+ #: contact_form.php:420
181
  msgid "Set a name of user who will get messages from a contact form."
182
  msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
183
 
184
+ #: contact_form.php:424
185
  msgid "Use this email:"
186
  msgstr "इस ईमेल का उपयोग करें:"
187
 
188
+ #: contact_form.php:427
189
  msgid "Set an email address which will be used for messages receiving."
190
  msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
191
 
192
+ #: contact_form.php:431
193
  msgid "Additional options"
194
  msgstr "अतिरिक्त विकल्प"
195
 
196
+ #: contact_form.php:434
197
  msgid "Display Attachment block"
198
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
199
 
200
+ #: contact_form.php:436
201
  msgid "Users can attach files of the following types"
202
  msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
203
 
204
+ #: contact_form.php:440
205
  #, fuzzy
206
  msgid "Display Attachment explanations"
207
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
208
 
209
+ #: contact_form.php:442
210
  #, fuzzy
211
  msgid "Display explanations after Attachment block"
212
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
213
 
214
+ #: contact_form.php:446
215
  msgid "Display Send me a copy block"
216
  msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
217
 
218
+ #: contact_form.php:452
219
  msgid "What use?"
220
  msgstr "किस का उपयोग करें?."
221
 
222
+ #: contact_form.php:455
223
  msgid "Wp-mail"
224
  msgstr "Wp-mail"
225
 
226
+ #: contact_form.php:456
227
  msgid "To send mail you can use the wordpress wp_mail function"
228
  msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
229
 
230
+ #: contact_form.php:462
231
  msgid "Mail"
232
  msgstr "मेल"
233
 
234
+ #: contact_form.php:463
235
  msgid "To send mail you can use the php mail function"
236
  msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
237
 
238
+ #: contact_form.php:467
239
+ #, fuzzy
240
+ msgid "Change text for 'FROM' field of the email"
241
  msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
242
 
243
+ #: contact_form.php:473
244
+ msgid "Select email for 'FROM' field of the email"
245
+ msgstr ""
246
+
247
+ #: contact_form.php:475
248
+ msgid ""
249
+ "In the field 'From' in the mail it will use email of that user who fills the "
250
+ "form."
251
+ msgstr ""
252
+
253
+ #: contact_form.php:477
254
+ msgid "In the field 'From' it will use this email."
255
+ msgstr ""
256
+
257
+ #: contact_form.php:481
258
  msgid "Display phone field"
259
  msgstr ""
260
 
261
+ #: contact_form.php:487
262
  msgid "Required field"
263
  msgstr ""
264
 
265
+ #: contact_form.php:489 contact_form.php:953
266
  msgid "Name"
267
  msgstr "नाम"
268
 
269
+ #: contact_form.php:490
270
  #, fuzzy
271
  msgid "E-Mail Address"
272
  msgstr "ई - मेल पता:"
273
 
274
+ #: contact_form.php:491 contact_form.php:961
275
  msgid "Phone"
276
  msgstr ""
277
 
278
+ #: contact_form.php:492 contact_form.php:964
279
  msgid "Subject"
280
  msgstr "विषय"
281
 
282
+ #: contact_form.php:493 contact_form.php:967
283
  msgid "Message"
284
  msgstr "संदेश"
285
 
286
+ #: contact_form.php:497
287
  msgid "Display additional info in email"
288
  msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
289
 
290
+ #: contact_form.php:502 contact_form.php:925
291
  msgid "Sent from (ip address)"
292
  msgstr "(आईपी पते से भेजा गया)"
293
 
294
+ #: contact_form.php:503 contact_form.php:930
295
  msgid "Date/Time"
296
  msgstr "दिनांक / समय"
297
 
298
+ #: contact_form.php:504 contact_form.php:935
299
  msgid "Coming from (referer)"
300
  msgstr "से आ रहा है (referer)"
301
 
302
+ #: contact_form.php:505 contact_form.php:940
303
  msgid "Using (user agent)"
304
  msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
305
 
306
+ #: contact_form.php:509
307
+ msgid "Language settings for label fields"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:518
311
+ msgid "Add language"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:522
315
+ #, fuzzy
316
+ msgid "Change label for fields of the contact form and error messages"
317
  msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
318
 
319
+ #: contact_form.php:527 contact_form.php:580
320
+ msgid "English"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:542 contact_form.php:562
324
+ msgid "Error message for name field"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:543 contact_form.php:563
328
+ msgid "Error message for email field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:544 contact_form.php:564
332
+ msgid "Error message for phone field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:545 contact_form.php:565
336
+ msgid "Error message for subject field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:546 contact_form.php:566
340
+ msgid "Error message for message field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:547 contact_form.php:567
344
+ msgid "Error message for attachment field"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:548 contact_form.php:568
348
+ msgid "Error message for captcha"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:549 contact_form.php:569
352
+ msgid "Error message for all form"
353
+ msgstr ""
354
+
355
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
356
+ #: contact_form.php:595
357
+ msgid "Use shortcode"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
361
+ #: contact_form.php:595
362
+ msgid "for this language"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:577
366
  msgid "Action after the send mail"
367
  msgstr ""
368
 
369
+ #: contact_form.php:579
370
  #, fuzzy
371
  msgid "Display text"
372
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr ""
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr ""
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr ""
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "परिवर्तन सहेजें"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "मुझे एक प्रतिलिपि भेजें"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "संपर्क करें"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "ईमेल"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "साइट"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr ""
417
  "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "समर्थन"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "Indirizzo e-mail:"
433
 
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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: it_IT\n"
@@ -24,7 +24,7 @@ msgstr "Plugin attivati"
24
  msgid "Read more"
25
  msgstr "Leggi"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Settaggi"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il "
58
  "modulo \"contact form\" sul nostro sito"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Opzioni Contact Form"
63
 
@@ -65,58 +65,95 @@ msgstr "Opzioni Contact Form"
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Nome:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Indirizzo e-mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Oggetto:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Messaggio:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Attachment:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Grazie per averci contattato."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Opzioni salvate."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,7 +161,7 @@ msgstr ""
124
  "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo "
125
  "shortcode nei tuoi post o nelle tue pagine o widget:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
@@ -133,227 +170,264 @@ msgstr ""
133
  "inviato ad un indirizzo che è stato specificato durante la fase di "
134
  "registrazione. "
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "Seleziona nome utente"
143
 
144
- #: contact_form.php:307
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr ""
147
  "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Utilizza questa e-mail:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
156
 
157
- #: contact_form.php:321
158
  msgid "Additional options"
159
  msgstr "Impostazioni aggiuntive"
160
 
161
- #: contact_form.php:324
162
  msgid "Display Attachment block"
163
  msgstr "Visualizza l'attachment"
164
 
165
- #: contact_form.php:329
166
  msgid "Users can attach files of the following types"
167
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
168
 
169
- #: contact_form.php:333
170
  msgid "Display Attachment explanations"
171
  msgstr ""
172
 
173
- #: contact_form.php:338
174
  msgid "Display explanations after Attachment block"
175
  msgstr ""
176
 
177
- #: contact_form.php:342
178
  msgid "Display Send me a copy block"
179
  msgstr "Visualizza il blocco \"Inviami una copia\" "
180
 
181
- #: contact_form.php:348
182
  msgid "What use?"
183
  msgstr ""
184
 
185
- #: contact_form.php:353
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
- #: contact_form.php:354
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr ""
192
 
193
- #: contact_form.php:362
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
- #: contact_form.php:363
198
  msgid "To send mail you can use the php mail function"
199
  msgstr ""
200
 
201
- #: contact_form.php:367
202
- msgid "Change FROM fields of the contact form"
 
203
  msgstr "Modifica da campi del contact form"
204
 
205
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Display phone field"
207
  msgstr ""
208
 
209
- #: contact_form.php:379
210
  msgid "Required field"
211
  msgstr ""
212
 
213
- #: contact_form.php:388 contact_form.php:775
214
  msgid "Name"
215
  msgstr "Nome"
216
 
217
- #: contact_form.php:389
218
  #, fuzzy
219
  msgid "E-Mail Address"
220
  msgstr "Indirizzo e-mail:"
221
 
222
- #: contact_form.php:390 contact_form.php:783
223
  msgid "Phone"
224
  msgstr ""
225
 
226
- #: contact_form.php:391 contact_form.php:786
227
  msgid "Subject"
228
  msgstr "Oggetto"
229
 
230
- #: contact_form.php:392 contact_form.php:789
231
  msgid "Message"
232
  msgstr "Messaggio"
233
 
234
- #: contact_form.php:396
235
  msgid "Display additional info in email"
236
  msgstr ""
237
 
238
- #: contact_form.php:401 contact_form.php:747
239
  msgid "Sent from (ip address)"
240
  msgstr "Inviato da (indirizzi IP)"
241
 
242
- #: contact_form.php:402 contact_form.php:752
243
  msgid "Date/Time"
244
  msgstr "Data/Ora"
245
 
246
- #: contact_form.php:403 contact_form.php:757
247
  msgid "Coming from (referer)"
248
  msgstr "Da (referente)"
249
 
250
- #: contact_form.php:404 contact_form.php:762
251
  msgid "Using (user agent)"
252
  msgstr "Utilizza (user agent)"
253
 
254
- #: contact_form.php:408
255
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
256
  msgstr "Modifica le etichette dei campi del contact form"
257
 
258
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Action after the send mail"
260
  msgstr ""
261
 
262
- #: contact_form.php:424
263
  #, fuzzy
264
  msgid "Display text"
265
  msgstr "Visualizza l'attachment"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr ""
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr ""
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr ""
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "Salva le modifiche"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "Inviami una copia"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "Invia"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "Il nome è obbligatorio"
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "È richiesto un indirizzo e-mail corretto"
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "L'oggetto è obbligatorio"
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "Il campo messaggio è obbligatorio"
314
-
315
- #: contact_form.php:606
316
- #, fuzzy
317
- msgid "Phone is required field."
318
- msgstr "Il nome è obbligatorio"
319
-
320
- #: contact_form.php:607
321
- msgid "Please make corrections below and try again."
322
- msgstr "Controlla i dati del modulo e riprova!"
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "L'attachment non è corretto"
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "Completa il CAPTCHA"
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "Contact from"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "e-mail"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "Sito"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr ""
347
  "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "FAQ"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Supporto"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Indirizzo e-mail:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: it_IT\n"
24
  msgid "Read more"
25
  msgstr "Leggi"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Settaggi"
30
 
57
  "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il "
58
  "modulo \"contact form\" sul nostro sito"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Opzioni Contact Form"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Nome:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Indirizzo e-mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Oggetto:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Messaggio:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Attachment:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Invia"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Il nome è obbligatorio"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "È richiesto un indirizzo e-mail corretto"
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "L'oggetto è obbligatorio"
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Il campo messaggio è obbligatorio"
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Il nome è obbligatorio"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "L'attachment non è corretto"
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Completa il CAPTCHA"
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Controlla i dati del modulo e riprova!"
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Grazie per averci contattato."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
146
 
147
+ #: contact_form.php:376
148
+ #, fuzzy
149
+ msgid "Please input correct 'FROM' email. Settings are not saved."
150
+ msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
151
+
152
+ #: contact_form.php:381
153
+ msgid "Options saved."
154
+ msgstr "Opzioni salvate."
155
+
156
+ #: contact_form.php:406
157
  msgid ""
158
  "If you would like to add a Contact Form to your website, just copy and put "
159
  "this shortcode onto your post or page or widget:"
161
  "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo "
162
  "shortcode nei tuoi post o nelle tue pagine o widget:"
163
 
164
+ #: contact_form.php:407
165
  msgid ""
166
  "If information in the below fields are empty then the message will be send "
167
  "to an address which was specified during registration."
170
  "inviato ad un indirizzo che è stato specificato durante la fase di "
171
  "registrazione. "
172
 
173
+ #: contact_form.php:411
174
  msgid "Use email of wordpress user:"
175
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
176
 
177
+ #: contact_form.php:415
178
  msgid "Select user name"
179
  msgstr "Seleziona nome utente"
180
 
181
+ #: contact_form.php:420
182
  msgid "Set a name of user who will get messages from a contact form."
183
  msgstr ""
184
  "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "Utilizza questa e-mail:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
193
 
194
+ #: contact_form.php:431
195
  msgid "Additional options"
196
  msgstr "Impostazioni aggiuntive"
197
 
198
+ #: contact_form.php:434
199
  msgid "Display Attachment block"
200
  msgstr "Visualizza l'attachment"
201
 
202
+ #: contact_form.php:436
203
  msgid "Users can attach files of the following types"
204
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
205
 
206
+ #: contact_form.php:440
207
  msgid "Display Attachment explanations"
208
  msgstr ""
209
 
210
+ #: contact_form.php:442
211
  msgid "Display explanations after Attachment block"
212
  msgstr ""
213
 
214
+ #: contact_form.php:446
215
  msgid "Display Send me a copy block"
216
  msgstr "Visualizza il blocco \"Inviami una copia\" "
217
 
218
+ #: contact_form.php:452
219
  msgid "What use?"
220
  msgstr ""
221
 
222
+ #: contact_form.php:455
223
  msgid "Wp-mail"
224
  msgstr "Wp-mail"
225
 
226
+ #: contact_form.php:456
227
  msgid "To send mail you can use the wordpress wp_mail function"
228
  msgstr ""
229
 
230
+ #: contact_form.php:462
231
  msgid "Mail"
232
  msgstr "Mail"
233
 
234
+ #: contact_form.php:463
235
  msgid "To send mail you can use the php mail function"
236
  msgstr ""
237
 
238
+ #: contact_form.php:467
239
+ #, fuzzy
240
+ msgid "Change text for 'FROM' field of the email"
241
  msgstr "Modifica da campi del contact form"
242
 
243
+ #: contact_form.php:473
244
+ msgid "Select email for 'FROM' field of the email"
245
+ msgstr ""
246
+
247
+ #: contact_form.php:475
248
+ msgid ""
249
+ "In the field 'From' in the mail it will use email of that user who fills the "
250
+ "form."
251
+ msgstr ""
252
+
253
+ #: contact_form.php:477
254
+ msgid "In the field 'From' it will use this email."
255
+ msgstr ""
256
+
257
+ #: contact_form.php:481
258
  msgid "Display phone field"
259
  msgstr ""
260
 
261
+ #: contact_form.php:487
262
  msgid "Required field"
263
  msgstr ""
264
 
265
+ #: contact_form.php:489 contact_form.php:953
266
  msgid "Name"
267
  msgstr "Nome"
268
 
269
+ #: contact_form.php:490
270
  #, fuzzy
271
  msgid "E-Mail Address"
272
  msgstr "Indirizzo e-mail:"
273
 
274
+ #: contact_form.php:491 contact_form.php:961
275
  msgid "Phone"
276
  msgstr ""
277
 
278
+ #: contact_form.php:492 contact_form.php:964
279
  msgid "Subject"
280
  msgstr "Oggetto"
281
 
282
+ #: contact_form.php:493 contact_form.php:967
283
  msgid "Message"
284
  msgstr "Messaggio"
285
 
286
+ #: contact_form.php:497
287
  msgid "Display additional info in email"
288
  msgstr ""
289
 
290
+ #: contact_form.php:502 contact_form.php:925
291
  msgid "Sent from (ip address)"
292
  msgstr "Inviato da (indirizzi IP)"
293
 
294
+ #: contact_form.php:503 contact_form.php:930
295
  msgid "Date/Time"
296
  msgstr "Data/Ora"
297
 
298
+ #: contact_form.php:504 contact_form.php:935
299
  msgid "Coming from (referer)"
300
  msgstr "Da (referente)"
301
 
302
+ #: contact_form.php:505 contact_form.php:940
303
  msgid "Using (user agent)"
304
  msgstr "Utilizza (user agent)"
305
 
306
+ #: contact_form.php:509
307
+ msgid "Language settings for label fields"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:518
311
+ msgid "Add language"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:522
315
+ #, fuzzy
316
+ msgid "Change label for fields of the contact form and error messages"
317
  msgstr "Modifica le etichette dei campi del contact form"
318
 
319
+ #: contact_form.php:527 contact_form.php:580
320
+ msgid "English"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:542 contact_form.php:562
324
+ msgid "Error message for name field"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:543 contact_form.php:563
328
+ msgid "Error message for email field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:544 contact_form.php:564
332
+ msgid "Error message for phone field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:545 contact_form.php:565
336
+ msgid "Error message for subject field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:546 contact_form.php:566
340
+ msgid "Error message for message field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:547 contact_form.php:567
344
+ msgid "Error message for attachment field"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:548 contact_form.php:568
348
+ msgid "Error message for captcha"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:549 contact_form.php:569
352
+ msgid "Error message for all form"
353
+ msgstr ""
354
+
355
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
356
+ #: contact_form.php:595
357
+ msgid "Use shortcode"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
361
+ #: contact_form.php:595
362
+ msgid "for this language"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:577
366
  msgid "Action after the send mail"
367
  msgstr ""
368
 
369
+ #: contact_form.php:579
370
  #, fuzzy
371
  msgid "Display text"
372
  msgstr "Visualizza l'attachment"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr ""
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr ""
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr ""
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "Salva le modifiche"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "Inviami una copia"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "Contact from"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "e-mail"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "Sito"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr ""
417
  "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "FAQ"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "Supporto"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "Indirizzo e-mail:"
433
 
languages/contact_form-ja.mo CHANGED
Binary file
languages/contact_form-ja.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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: ja_JP\n"
@@ -24,7 +24,7 @@ msgstr "有効なプラグイン"
24
  msgid "Read more"
25
  msgstr "もっと読む"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "設定"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "もそご質問がある場合は、plugin@bestwebsoft.comにご連絡頂くか、我々のサイトの"
58
  "コンタクトフォームからお願いします。"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "コンタクトフォーム オプション"
63
 
@@ -65,58 +65,95 @@ msgstr "コンタクトフォーム オプション"
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "名前:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-Mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "件名:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "メッセージ:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "添付:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "ご連絡ありがとうございます"
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "オプション保存."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "このようなユーザは存在しません。設定は保存されません。"
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "正確なemailを入力して下さい。設定は保存されません。"
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  #, fuzzy
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
@@ -125,7 +162,7 @@ msgstr ""
125
  "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投"
126
  "稿またはページにコピーして貼り付けるだけです。"
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
@@ -133,230 +170,266 @@ msgstr ""
133
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
134
  "ます。"
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "wordpressユーザのemailを利用r:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "ユーザ名の選択"
143
 
144
- #: contact_form.php:307
145
  #, fuzzy
146
  msgid "Set a name of user who will get messages from a contact form."
147
  msgstr "コンタクトフォームからメッセージを受け取るユーザ名を設定。"
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "このemailを利用:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "メッセージ受信用のemailを設定。"
156
 
157
- #: contact_form.php:321
158
  msgid "Additional options"
159
  msgstr "追加オプション"
160
 
161
- #: contact_form.php:324
162
  msgid "Display Attachment block"
163
  msgstr "添付ブロックを表示"
164
 
165
- #: contact_form.php:329
166
  msgid "Users can attach files of the following types"
167
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
168
 
169
- #: contact_form.php:333
170
  #, fuzzy
171
  msgid "Display Attachment explanations"
172
  msgstr "添付ブロックを表示"
173
 
174
- #: contact_form.php:338
175
  #, fuzzy
176
  msgid "Display explanations after Attachment block"
177
  msgstr "添付ブロックを表示"
178
 
179
- #: contact_form.php:342
180
  msgid "Display Send me a copy block"
181
  msgstr "コピーブロックを自分に送るを表示"
182
 
183
- #: contact_form.php:348
184
  msgid "What use?"
185
  msgstr ""
186
 
187
- #: contact_form.php:353
188
  #, fuzzy
189
  msgid "Wp-mail"
190
  msgstr "E-Mail"
191
 
192
- #: contact_form.php:354
193
  msgid "To send mail you can use the wordpress wp_mail function"
194
  msgstr ""
195
 
196
- #: contact_form.php:362
197
  msgid "Mail"
198
  msgstr ""
199
 
200
- #: contact_form.php:363
201
  msgid "To send mail you can use the php mail function"
202
  msgstr ""
203
 
204
- #: contact_form.php:367
205
  #, fuzzy
206
- msgid "Change FROM fields of the contact form"
207
  msgstr "コンタクトフォームのフィールドのラベルを変更"
208
 
209
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  msgid "Display phone field"
211
  msgstr ""
212
 
213
- #: contact_form.php:379
214
  msgid "Required field"
215
  msgstr ""
216
 
217
- #: contact_form.php:388 contact_form.php:775
218
  msgid "Name"
219
  msgstr "名前"
220
 
221
- #: contact_form.php:389
222
  #, fuzzy
223
  msgid "E-Mail Address"
224
  msgstr "E-Mail:"
225
 
226
- #: contact_form.php:390 contact_form.php:783
227
  msgid "Phone"
228
  msgstr ""
229
 
230
- #: contact_form.php:391 contact_form.php:786
231
  msgid "Subject"
232
  msgstr "件名"
233
 
234
- #: contact_form.php:392 contact_form.php:789
235
  msgid "Message"
236
  msgstr "メッセージ"
237
 
238
- #: contact_form.php:396
239
  msgid "Display additional info in email"
240
  msgstr ""
241
 
242
- #: contact_form.php:401 contact_form.php:747
243
  msgid "Sent from (ip address)"
244
  msgstr "(IP-Adresse)から送られた"
245
 
246
- #: contact_form.php:402 contact_form.php:752
247
  msgid "Date/Time"
248
  msgstr "日時"
249
 
250
- #: contact_form.php:403 contact_form.php:757
251
  msgid "Coming from (referer)"
252
  msgstr "(referer)から送られている"
253
 
254
- #: contact_form.php:404 contact_form.php:762
255
  msgid "Using (user agent)"
256
  msgstr "(user agent)使用"
257
 
258
- #: contact_form.php:408
259
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
260
  msgstr "コンタクトフォームのフィールドのラベルを変更"
261
 
262
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  msgid "Action after the send mail"
264
  msgstr ""
265
 
266
- #: contact_form.php:424
267
  #, fuzzy
268
  msgid "Display text"
269
  msgstr "添付ブロックを表示"
270
 
271
- #: contact_form.php:425
272
  msgid "Text"
273
  msgstr ""
274
 
275
- #: contact_form.php:426
276
  msgid "Redirect to page"
277
  msgstr ""
278
 
279
- #: contact_form.php:427
280
  msgid "Url"
281
  msgstr ""
282
 
283
- #: contact_form.php:432
284
  msgid "Save Changes"
285
  msgstr "変更を保存"
286
 
287
- #: contact_form.php:470
288
  msgid "Sorry, your e-mail could not be delivered."
289
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
290
 
291
- #: contact_form.php:540
292
  msgid "You can attach files of the following types"
293
  msgstr "貴方は、以下のタイプのファイルを添付できます"
294
 
295
- #: contact_form.php:548
296
  msgid "Send me a copy"
297
  msgstr "コピーを自分に送る"
298
 
299
- #: contact_form.php:558
300
- msgid "Submit"
301
- msgstr "送信"
302
-
303
- #: contact_form.php:598
304
- msgid "Your name is required."
305
- msgstr "名前は必須です。"
306
-
307
- #: contact_form.php:600
308
- msgid "A proper e-mail address is required."
309
- msgstr "正確なemailが必須です。"
310
-
311
- #: contact_form.php:602
312
- msgid "Subject text is required."
313
- msgstr "件名は必須です。"
314
-
315
- #: contact_form.php:604
316
- msgid "Message text is required."
317
- msgstr "メッセージ本文は必須です。"
318
-
319
- #: contact_form.php:606
320
- #, fuzzy
321
- msgid "Phone is required field."
322
- msgstr "名前は必須です。"
323
-
324
- #: contact_form.php:607
325
- msgid "Please make corrections below and try again."
326
- msgstr "以下を修正し、再度試して下さい。"
327
-
328
- #: contact_form.php:639
329
- msgid "Attachment is broken."
330
- msgstr "添付が壊れています。"
331
-
332
- #: contact_form.php:654
333
- msgid "Please complete the CAPTCHA."
334
- msgstr "CAPTCHAを入力して下さい。"
335
-
336
- #: contact_form.php:770
337
  msgid "Contact from"
338
  msgstr "コンタクトフォーム"
339
 
340
- #: contact_form.php:778
341
  msgid "Email"
342
  msgstr "E-Mail"
343
 
344
- #: contact_form.php:792
345
  msgid "Site"
346
  msgstr "サイト"
347
 
348
- #: contact_form.php:837
349
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
350
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
351
 
352
- #: contact_form.php:891
353
  msgid "FAQ"
354
  msgstr "FAQ"
355
 
356
- #: contact_form.php:892
357
  msgid "Support"
358
  msgstr "サポート"
359
 
 
 
 
 
360
  #~ msgid "E-Mail Addresse:"
361
  #~ msgstr "Indirizzo e-mail:"
362
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: ja_JP\n"
24
  msgid "Read more"
25
  msgstr "もっと読む"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "設定"
30
 
57
  "もそご質問がある場合は、plugin@bestwebsoft.comにご連絡頂くか、我々のサイトの"
58
  "コンタクトフォームからお願いします。"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "コンタクトフォーム オプション"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "名前:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-Mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "件名:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "メッセージ:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "添付:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "送信"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "名前は必須です。"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "正確なemailが必須です。"
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "件名は必須です。"
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "メッセージ本文は必須です。"
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "名前は必須です。"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "添付が壊れています。"
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "CAPTCHAを入力して下さい。"
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "以下を修正し、再度試して下さい。"
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "ご連絡ありがとうございます"
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "このようなユーザは存在しません。設定は保存されません。"
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr "正確なemailを入力して下さい。設定は保存されません。"
146
 
147
+ #: contact_form.php:376
148
+ #, fuzzy
149
+ msgid "Please input correct 'FROM' email. Settings are not saved."
150
+ msgstr "正確なemailを入力して下さい。設定は保存されません。"
151
+
152
+ #: contact_form.php:381
153
+ msgid "Options saved."
154
+ msgstr "オプション保存."
155
+
156
+ #: contact_form.php:406
157
  #, fuzzy
158
  msgid ""
159
  "If you would like to add a Contact Form to your website, just copy and put "
162
  "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投"
163
  "稿またはページにコピーして貼り付けるだけです。"
164
 
165
+ #: contact_form.php:407
166
  msgid ""
167
  "If information in the below fields are empty then the message will be send "
168
  "to an address which was specified during registration."
170
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
171
  "ます。"
172
 
173
+ #: contact_form.php:411
174
  msgid "Use email of wordpress user:"
175
  msgstr "wordpressユーザのemailを利用r:"
176
 
177
+ #: contact_form.php:415
178
  msgid "Select user name"
179
  msgstr "ユーザ名の選択"
180
 
181
+ #: contact_form.php:420
182
  #, fuzzy
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr "コンタクトフォームからメッセージを受け取るユーザ名を設定。"
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "このemailを利用:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr "メッセージ受信用のemailを設定。"
193
 
194
+ #: contact_form.php:431
195
  msgid "Additional options"
196
  msgstr "追加オプション"
197
 
198
+ #: contact_form.php:434
199
  msgid "Display Attachment block"
200
  msgstr "添付ブロックを表示"
201
 
202
+ #: contact_form.php:436
203
  msgid "Users can attach files of the following types"
204
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
205
 
206
+ #: contact_form.php:440
207
  #, fuzzy
208
  msgid "Display Attachment explanations"
209
  msgstr "添付ブロックを表示"
210
 
211
+ #: contact_form.php:442
212
  #, fuzzy
213
  msgid "Display explanations after Attachment block"
214
  msgstr "添付ブロックを表示"
215
 
216
+ #: contact_form.php:446
217
  msgid "Display Send me a copy block"
218
  msgstr "コピーブロックを自分に送るを表示"
219
 
220
+ #: contact_form.php:452
221
  msgid "What use?"
222
  msgstr ""
223
 
224
+ #: contact_form.php:455
225
  #, fuzzy
226
  msgid "Wp-mail"
227
  msgstr "E-Mail"
228
 
229
+ #: contact_form.php:456
230
  msgid "To send mail you can use the wordpress wp_mail function"
231
  msgstr ""
232
 
233
+ #: contact_form.php:462
234
  msgid "Mail"
235
  msgstr ""
236
 
237
+ #: contact_form.php:463
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
+ #: contact_form.php:467
242
  #, fuzzy
243
+ msgid "Change text for 'FROM' field of the email"
244
  msgstr "コンタクトフォームのフィールドのラベルを変更"
245
 
246
+ #: contact_form.php:473
247
+ msgid "Select email for 'FROM' field of the email"
248
+ msgstr ""
249
+
250
+ #: contact_form.php:475
251
+ msgid ""
252
+ "In the field 'From' in the mail it will use email of that user who fills the "
253
+ "form."
254
+ msgstr ""
255
+
256
+ #: contact_form.php:477
257
+ msgid "In the field 'From' it will use this email."
258
+ msgstr ""
259
+
260
+ #: contact_form.php:481
261
  msgid "Display phone field"
262
  msgstr ""
263
 
264
+ #: contact_form.php:487
265
  msgid "Required field"
266
  msgstr ""
267
 
268
+ #: contact_form.php:489 contact_form.php:953
269
  msgid "Name"
270
  msgstr "名前"
271
 
272
+ #: contact_form.php:490
273
  #, fuzzy
274
  msgid "E-Mail Address"
275
  msgstr "E-Mail:"
276
 
277
+ #: contact_form.php:491 contact_form.php:961
278
  msgid "Phone"
279
  msgstr ""
280
 
281
+ #: contact_form.php:492 contact_form.php:964
282
  msgid "Subject"
283
  msgstr "件名"
284
 
285
+ #: contact_form.php:493 contact_form.php:967
286
  msgid "Message"
287
  msgstr "メッセージ"
288
 
289
+ #: contact_form.php:497
290
  msgid "Display additional info in email"
291
  msgstr ""
292
 
293
+ #: contact_form.php:502 contact_form.php:925
294
  msgid "Sent from (ip address)"
295
  msgstr "(IP-Adresse)から送られた"
296
 
297
+ #: contact_form.php:503 contact_form.php:930
298
  msgid "Date/Time"
299
  msgstr "日時"
300
 
301
+ #: contact_form.php:504 contact_form.php:935
302
  msgid "Coming from (referer)"
303
  msgstr "(referer)から送られている"
304
 
305
+ #: contact_form.php:505 contact_form.php:940
306
  msgid "Using (user agent)"
307
  msgstr "(user agent)使用"
308
 
309
+ #: contact_form.php:509
310
+ msgid "Language settings for label fields"
311
+ msgstr ""
312
+
313
+ #: contact_form.php:518
314
+ msgid "Add language"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:522
318
+ #, fuzzy
319
+ msgid "Change label for fields of the contact form and error messages"
320
  msgstr "コンタクトフォームのフィールドのラベルを変更"
321
 
322
+ #: contact_form.php:527 contact_form.php:580
323
+ msgid "English"
324
+ msgstr ""
325
+
326
+ #: contact_form.php:542 contact_form.php:562
327
+ msgid "Error message for name field"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:543 contact_form.php:563
331
+ msgid "Error message for email field"
332
+ msgstr ""
333
+
334
+ #: contact_form.php:544 contact_form.php:564
335
+ msgid "Error message for phone field"
336
+ msgstr ""
337
+
338
+ #: contact_form.php:545 contact_form.php:565
339
+ msgid "Error message for subject field"
340
+ msgstr ""
341
+
342
+ #: contact_form.php:546 contact_form.php:566
343
+ msgid "Error message for message field"
344
+ msgstr ""
345
+
346
+ #: contact_form.php:547 contact_form.php:567
347
+ msgid "Error message for attachment field"
348
+ msgstr ""
349
+
350
+ #: contact_form.php:548 contact_form.php:568
351
+ msgid "Error message for captcha"
352
+ msgstr ""
353
+
354
+ #: contact_form.php:549 contact_form.php:569
355
+ msgid "Error message for all form"
356
+ msgstr ""
357
+
358
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
359
+ #: contact_form.php:595
360
+ msgid "Use shortcode"
361
+ msgstr ""
362
+
363
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
364
+ #: contact_form.php:595
365
+ msgid "for this language"
366
+ msgstr ""
367
+
368
+ #: contact_form.php:577
369
  msgid "Action after the send mail"
370
  msgstr ""
371
 
372
+ #: contact_form.php:579
373
  #, fuzzy
374
  msgid "Display text"
375
  msgstr "添付ブロックを表示"
376
 
377
+ #: contact_form.php:588 contact_form.php:594
378
  msgid "Text"
379
  msgstr ""
380
 
381
+ #: contact_form.php:601
382
  msgid "Redirect to page"
383
  msgstr ""
384
 
385
+ #: contact_form.php:602
386
  msgid "Url"
387
  msgstr ""
388
 
389
+ #: contact_form.php:607
390
  msgid "Save Changes"
391
  msgstr "変更を保存"
392
 
393
+ #: contact_form.php:646
394
  msgid "Sorry, your e-mail could not be delivered."
395
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
396
 
397
+ #: contact_form.php:716
398
  msgid "You can attach files of the following types"
399
  msgstr "貴方は、以下のタイプのファイルを添付できます"
400
 
401
+ #: contact_form.php:724
402
  msgid "Send me a copy"
403
  msgstr "コピーを自分に送る"
404
 
405
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgid "Contact from"
407
  msgstr "コンタクトフォーム"
408
 
409
+ #: contact_form.php:956
410
  msgid "Email"
411
  msgstr "E-Mail"
412
 
413
+ #: contact_form.php:970
414
  msgid "Site"
415
  msgstr "サイト"
416
 
417
+ #: contact_form.php:1021
418
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
419
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
420
 
421
+ #: contact_form.php:1078
422
  msgid "FAQ"
423
  msgstr "FAQ"
424
 
425
+ #: contact_form.php:1079
426
  msgid "Support"
427
  msgstr "サポート"
428
 
429
+ #: contact_form.php:1125
430
+ msgid "Are you sure you want to delete this language?"
431
+ msgstr ""
432
+
433
  #~ msgid "E-Mail Addresse:"
434
  #~ msgstr "Indirizzo e-mail:"
435
 
languages/contact_form-lt_LT.mo CHANGED
Binary file
languages/contact_form-lt_LT.po CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2012-11-20 10:15+0200\n"
7
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
8
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "Language: lt\n"
@@ -27,7 +27,7 @@ msgstr "Aktyvuoti įskiepiai"
27
  msgid "Read more"
28
  msgstr "Skaityti daugiau"
29
 
30
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
31
  msgid "Settings"
32
  msgstr "Nustatymai"
33
 
@@ -60,7 +60,7 @@ msgstr ""
60
  "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com "
61
  "arba užpildykite mūsų kontaktų formą mūsų svetainėje"
62
 
63
- #: contact_form.php:108 contact_form.php:286
64
  msgid "Contact Form Options"
65
  msgstr "Kontaktų formos parinktys"
66
 
@@ -68,58 +68,95 @@ msgstr "Kontaktų formos parinktys"
68
  msgid "Contact Form"
69
  msgstr "Kontaktų forma"
70
 
71
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
72
- #: contact_form.php:413
73
  msgid "Name:"
74
  msgstr "Vardas:"
75
 
76
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
77
- #: contact_form.php:414
78
  msgid "E-Mail Address:"
79
  msgstr "El. pašto adresas:"
80
 
81
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
82
  msgid "Phone:"
83
  msgstr ""
84
 
85
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
86
- #: contact_form.php:416
87
  msgid "Subject:"
88
  msgstr "Tema:"
89
 
90
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
91
- #: contact_form.php:417
92
  msgid "Message:"
93
  msgstr "Pranešimas:"
94
 
95
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
96
- #: contact_form.php:418
97
  msgid "Attachment:"
98
  msgstr "Priedas:"
99
 
100
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Thank you for contacting us."
102
  msgstr "Dėkojame, kad su mumis susisiekėte."
103
 
104
- #: contact_form.php:253
105
  msgid ""
106
  "If the option 'Redirect to page' is selected then url field should be "
107
  "fillied in the following format"
108
  msgstr ""
109
 
110
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
111
- msgid "Options saved."
112
- msgstr "Parinktys išsaugotos."
113
-
114
- #: contact_form.php:268
115
  msgid "Such user is not exist. Settings are not saved."
116
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
117
 
118
- #: contact_form.php:278
119
  msgid "Please input correct email. Settings are not saved."
120
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
121
 
122
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
123
  msgid ""
124
  "If you would like to add a Contact Form to your website, just copy and put "
125
  "this shortcode onto your post or page or widget:"
@@ -127,7 +164,7 @@ msgstr ""
127
  "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite "
128
  "šį trumpą kodą į savo puslapį ar elementą:"
129
 
130
- #: contact_form.php:292
131
  msgid ""
132
  "If information in the below fields are empty then the message will be send "
133
  "to an address which was specified during registration."
@@ -135,225 +172,262 @@ msgstr ""
135
  "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas "
136
  "adresu, kuris buvo nurodytas prisiregistravimo metu."
137
 
138
- #: contact_form.php:296
139
  msgid "Use email of wordpress user:"
140
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
141
 
142
- #: contact_form.php:302
143
  msgid "Select user name"
144
  msgstr "Pasirinkite vartotojo vardą"
145
 
146
- #: contact_form.php:307
147
  msgid "Set a name of user who will get messages from a contact form."
148
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
149
 
150
- #: contact_form.php:311
151
  msgid "Use this email:"
152
  msgstr "Naudoti šį el. pašto adresą:"
153
 
154
- #: contact_form.php:317
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
157
 
158
- #: contact_form.php:321
159
  msgid "Additional options"
160
  msgstr "Papildomos parinktys"
161
 
162
- #: contact_form.php:324
163
  msgid "Display Attachment block"
164
  msgstr "Rodyti priedų įrašą"
165
 
166
- #: contact_form.php:329
167
  msgid "Users can attach files of the following types"
168
  msgstr "Vartotojai gali prikabinti šių tipų failus"
169
 
170
- #: contact_form.php:333
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
- #: contact_form.php:338
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr ""
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "Vardas"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "El. pašto adresas:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Tema"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Tekstas"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr ""
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Siųsta iš (ip adresas)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Data/laikas"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Ateita iš (nukreipiklis)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "Naudoja (naršyklės įrašas)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr ""
262
 
263
- #: contact_form.php:424
264
  #, fuzzy
265
  msgid "Display text"
266
  msgstr "Rodyti priedų įrašą"
267
 
268
- #: contact_form.php:425
269
  msgid "Text"
270
  msgstr ""
271
 
272
- #: contact_form.php:426
273
  msgid "Redirect to page"
274
  msgstr ""
275
 
276
- #: contact_form.php:427
277
  msgid "Url"
278
  msgstr ""
279
 
280
- #: contact_form.php:432
281
  msgid "Save Changes"
282
  msgstr "Įrašyti pakeitimus"
283
 
284
- #: contact_form.php:470
285
  msgid "Sorry, your e-mail could not be delivered."
286
  msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
287
 
288
- #: contact_form.php:540
289
  msgid "You can attach files of the following types"
290
  msgstr "Galite prikabinti šių tipų failus"
291
 
292
- #: contact_form.php:548
293
  msgid "Send me a copy"
294
  msgstr "Siųsti kopiją man"
295
 
296
- #: contact_form.php:558
297
- msgid "Submit"
298
- msgstr "Siųsti"
299
-
300
- #: contact_form.php:598
301
- msgid "Your name is required."
302
- msgstr "Būtina įrašyti vardą."
303
-
304
- #: contact_form.php:600
305
- msgid "A proper e-mail address is required."
306
- msgstr "Būtina įrašyti teisingą el. pašto adresą."
307
-
308
- #: contact_form.php:602
309
- msgid "Subject text is required."
310
- msgstr "Būtina įrašyti temą."
311
-
312
- #: contact_form.php:604
313
- msgid "Message text is required."
314
- msgstr "Būtina įrašyti laiško turinį."
315
-
316
- #: contact_form.php:606
317
- #, fuzzy
318
- msgid "Phone is required field."
319
- msgstr "Būtina įrašyti vardą."
320
-
321
- #: contact_form.php:607
322
- msgid "Please make corrections below and try again."
323
- msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
324
-
325
- #: contact_form.php:639
326
- msgid "Attachment is broken."
327
- msgstr "Pridedamas failas sugadintas."
328
-
329
- #: contact_form.php:654
330
- msgid "Please complete the CAPTCHA."
331
- msgstr "Prašome užpildyti CAPTCHA."
332
-
333
- #: contact_form.php:770
334
  msgid "Contact from"
335
  msgstr "Kontaktų forma"
336
 
337
- #: contact_form.php:778
338
  msgid "Email"
339
  msgstr "El. paštas"
340
 
341
- #: contact_form.php:792
342
  msgid "Site"
343
  msgstr "Svetainė"
344
 
345
- #: contact_form.php:837
346
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
347
  msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "DUK"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Palaikymas"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "E-mail адрес:"
359
 
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
7
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
8
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "Language: lt\n"
27
  msgid "Read more"
28
  msgstr "Skaityti daugiau"
29
 
30
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
31
  msgid "Settings"
32
  msgstr "Nustatymai"
33
 
60
  "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com "
61
  "arba užpildykite mūsų kontaktų formą mūsų svetainėje"
62
 
63
+ #: contact_form.php:108 contact_form.php:401
64
  msgid "Contact Form Options"
65
  msgstr "Kontaktų formos parinktys"
66
 
68
  msgid "Contact Form"
69
  msgstr "Kontaktų forma"
70
 
71
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
72
  msgid "Name:"
73
  msgstr "Vardas:"
74
 
75
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
76
  msgid "E-Mail Address:"
77
  msgstr "El. pašto adresas:"
78
 
79
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
80
  msgid "Phone:"
81
  msgstr ""
82
 
83
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
84
  msgid "Subject:"
85
  msgstr "Tema:"
86
 
87
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
88
  msgid "Message:"
89
  msgstr "Pranešimas:"
90
 
91
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
92
  msgid "Attachment:"
93
  msgstr "Priedas:"
94
 
95
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
96
+ msgid "Submit"
97
+ msgstr "Siųsti"
98
+
99
+ #: contact_form.php:152
100
+ msgid "Your name is required."
101
+ msgstr "Būtina įrašyti vardą."
102
+
103
+ #: contact_form.php:153
104
+ msgid "A proper e-mail address is required."
105
+ msgstr "Būtina įrašyti teisingą el. pašto adresą."
106
+
107
+ #: contact_form.php:154
108
+ msgid "Subject text is required."
109
+ msgstr "Būtina įrašyti temą."
110
+
111
+ #: contact_form.php:155
112
+ msgid "Message text is required."
113
+ msgstr "Būtina įrašyti laiško turinį."
114
+
115
+ #: contact_form.php:156
116
+ #, fuzzy
117
+ msgid "Phone is required field."
118
+ msgstr "Būtina įrašyti vardą."
119
+
120
+ #: contact_form.php:157
121
+ msgid "Attachment is broken."
122
+ msgstr "Pridedamas failas sugadintas."
123
+
124
+ #: contact_form.php:158
125
+ msgid "Please complete the CAPTCHA."
126
+ msgstr "Prašome užpildyti CAPTCHA."
127
+
128
+ #: contact_form.php:159
129
+ msgid "Please make corrections below and try again."
130
+ msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
131
+
132
+ #: contact_form.php:161
133
  msgid "Thank you for contacting us."
134
  msgstr "Dėkojame, kad su mumis susisiekėte."
135
 
136
+ #: contact_form.php:356
137
  msgid ""
138
  "If the option 'Redirect to page' is selected then url field should be "
139
  "fillied in the following format"
140
  msgstr ""
141
 
142
+ #: contact_form.php:365
 
 
 
 
143
  msgid "Such user is not exist. Settings are not saved."
144
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
145
 
146
+ #: contact_form.php:370
147
  msgid "Please input correct email. Settings are not saved."
148
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
149
 
150
+ #: contact_form.php:376
151
+ #, fuzzy
152
+ msgid "Please input correct 'FROM' email. Settings are not saved."
153
+ msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
154
+
155
+ #: contact_form.php:381
156
+ msgid "Options saved."
157
+ msgstr "Parinktys išsaugotos."
158
+
159
+ #: contact_form.php:406
160
  msgid ""
161
  "If you would like to add a Contact Form to your website, just copy and put "
162
  "this shortcode onto your post or page or widget:"
164
  "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite "
165
  "šį trumpą kodą į savo puslapį ar elementą:"
166
 
167
+ #: contact_form.php:407
168
  msgid ""
169
  "If information in the below fields are empty then the message will be send "
170
  "to an address which was specified during registration."
172
  "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas "
173
  "adresu, kuris buvo nurodytas prisiregistravimo metu."
174
 
175
+ #: contact_form.php:411
176
  msgid "Use email of wordpress user:"
177
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
178
 
179
+ #: contact_form.php:415
180
  msgid "Select user name"
181
  msgstr "Pasirinkite vartotojo vardą"
182
 
183
+ #: contact_form.php:420
184
  msgid "Set a name of user who will get messages from a contact form."
185
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
186
 
187
+ #: contact_form.php:424
188
  msgid "Use this email:"
189
  msgstr "Naudoti šį el. pašto adresą:"
190
 
191
+ #: contact_form.php:427
192
  msgid "Set an email address which will be used for messages receiving."
193
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
194
 
195
+ #: contact_form.php:431
196
  msgid "Additional options"
197
  msgstr "Papildomos parinktys"
198
 
199
+ #: contact_form.php:434
200
  msgid "Display Attachment block"
201
  msgstr "Rodyti priedų įrašą"
202
 
203
+ #: contact_form.php:436
204
  msgid "Users can attach files of the following types"
205
  msgstr "Vartotojai gali prikabinti šių tipų failus"
206
 
207
+ #: contact_form.php:440
208
  msgid "Display Attachment explanations"
209
  msgstr ""
210
 
211
+ #: contact_form.php:442
212
  msgid "Display explanations after Attachment block"
213
  msgstr ""
214
 
215
+ #: contact_form.php:446
216
  msgid "Display Send me a copy block"
217
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
218
 
219
+ #: contact_form.php:452
220
  msgid "What use?"
221
  msgstr ""
222
 
223
+ #: contact_form.php:455
224
  msgid "Wp-mail"
225
  msgstr "Wp-mail"
226
 
227
+ #: contact_form.php:456
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr ""
230
 
231
+ #: contact_form.php:462
232
  msgid "Mail"
233
  msgstr "Mail"
234
 
235
+ #: contact_form.php:463
236
  msgid "To send mail you can use the php mail function"
237
  msgstr ""
238
 
239
+ #: contact_form.php:467
240
+ #, fuzzy
241
+ msgid "Change text for 'FROM' field of the email"
242
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
243
 
244
+ #: contact_form.php:473
245
+ msgid "Select email for 'FROM' field of the email"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:475
249
+ msgid ""
250
+ "In the field 'From' in the mail it will use email of that user who fills the "
251
+ "form."
252
+ msgstr ""
253
+
254
+ #: contact_form.php:477
255
+ msgid "In the field 'From' it will use this email."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:481
259
  msgid "Display phone field"
260
  msgstr ""
261
 
262
+ #: contact_form.php:487
263
  msgid "Required field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:489 contact_form.php:953
267
  msgid "Name"
268
  msgstr "Vardas"
269
 
270
+ #: contact_form.php:490
271
  #, fuzzy
272
  msgid "E-Mail Address"
273
  msgstr "El. pašto adresas:"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr ""
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "Tema"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "Tekstas"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr ""
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "Siųsta iš (ip adresas)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "Data/laikas"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Ateita iš (nukreipiklis)"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "Naudoja (naršyklės įrašas)"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr ""
369
 
370
+ #: contact_form.php:579
371
  #, fuzzy
372
  msgid "Display text"
373
  msgstr "Rodyti priedų įrašą"
374
 
375
+ #: contact_form.php:588 contact_form.php:594
376
  msgid "Text"
377
  msgstr ""
378
 
379
+ #: contact_form.php:601
380
  msgid "Redirect to page"
381
  msgstr ""
382
 
383
+ #: contact_form.php:602
384
  msgid "Url"
385
  msgstr ""
386
 
387
+ #: contact_form.php:607
388
  msgid "Save Changes"
389
  msgstr "Įrašyti pakeitimus"
390
 
391
+ #: contact_form.php:646
392
  msgid "Sorry, your e-mail could not be delivered."
393
  msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
394
 
395
+ #: contact_form.php:716
396
  msgid "You can attach files of the following types"
397
  msgstr "Galite prikabinti šių tipų failus"
398
 
399
+ #: contact_form.php:724
400
  msgid "Send me a copy"
401
  msgstr "Siųsti kopiją man"
402
 
403
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  msgid "Contact from"
405
  msgstr "Kontaktų forma"
406
 
407
+ #: contact_form.php:956
408
  msgid "Email"
409
  msgstr "El. paštas"
410
 
411
+ #: contact_form.php:970
412
  msgid "Site"
413
  msgstr "Svetainė"
414
 
415
+ #: contact_form.php:1021
416
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
417
  msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "DUK"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "Palaikymas"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "E-mail адрес:"
433
 
languages/contact_form-nb_NO.mo CHANGED
Binary file
languages/contact_form-nb_NO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: de_DE\n"
@@ -24,7 +24,7 @@ msgstr "Aktiverte innstikk"
24
  msgid "Read more"
25
  msgstr "Les mer"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Innstilllinger"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller "
58
  "bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Innstillinger for kontaktskjema"
63
 
@@ -65,59 +65,97 @@ msgstr "Innstillinger for kontaktskjema"
65
  msgid "Contact Form"
66
  msgstr "Kontaktskjema"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Navn:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Epostadresse:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Tema:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Melding:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Vedlegg:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Takk for at du tok kontakt med oss"
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Innstillinger lagret."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr ""
118
  "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
119
 
120
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
123
  "this shortcode onto your post or page or widget:"
@@ -125,7 +163,7 @@ msgstr ""
125
  "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put "
126
  "denne koden i kommentaren din eller på siden din: "
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
@@ -133,226 +171,263 @@ msgstr ""
133
  "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som "
134
  "var spesifisert ved registrering."
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benytt eposten til wordpressbruker:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "Velg brukernavn"
143
 
144
- #: contact_form.php:307
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
147
 
148
- #: contact_form.php:311
149
  msgid "Use this email:"
150
  msgstr "Benytt denne epostadressen:"
151
 
152
- #: contact_form.php:317
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
155
 
156
- #: contact_form.php:321
157
  msgid "Additional options"
158
  msgstr "Flere valg"
159
 
160
- #: contact_form.php:324
161
  msgid "Display Attachment block"
162
  msgstr "Vis vedlegg"
163
 
164
- #: contact_form.php:329
165
  msgid "Users can attach files of the following types"
166
  msgstr "Brukere kan legge ved filer av følgende typer"
167
 
168
- #: contact_form.php:333
169
  msgid "Display Attachment explanations"
170
  msgstr ""
171
 
172
- #: contact_form.php:338
173
  msgid "Display explanations after Attachment block"
174
  msgstr ""
175
 
176
- #: contact_form.php:342
177
  msgid "Display Send me a copy block"
178
  msgstr "Vis send meg en kopi"
179
 
180
- #: contact_form.php:348
181
  msgid "What use?"
182
  msgstr ""
183
 
184
- #: contact_form.php:353
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
- #: contact_form.php:354
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr ""
191
 
192
- #: contact_form.php:362
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
- #: contact_form.php:363
197
  msgid "To send mail you can use the php mail function"
198
  msgstr ""
199
 
200
- #: contact_form.php:367
201
- msgid "Change FROM fields of the contact form"
 
202
  msgstr "Endring fra feltene i kontaktskjemaet"
203
 
204
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  msgid "Display phone field"
206
  msgstr ""
207
 
208
- #: contact_form.php:379
209
  msgid "Required field"
210
  msgstr ""
211
 
212
- #: contact_form.php:388 contact_form.php:775
213
  msgid "Name"
214
  msgstr "Navn"
215
 
216
- #: contact_form.php:389
217
  #, fuzzy
218
  msgid "E-Mail Address"
219
  msgstr "Epostadresse:"
220
 
221
- #: contact_form.php:390 contact_form.php:783
222
  msgid "Phone"
223
  msgstr ""
224
 
225
- #: contact_form.php:391 contact_form.php:786
226
  msgid "Subject"
227
  msgstr "Tema"
228
 
229
- #: contact_form.php:392 contact_form.php:789
230
  msgid "Message"
231
  msgstr "Melding"
232
 
233
- #: contact_form.php:396
234
  msgid "Display additional info in email"
235
  msgstr ""
236
 
237
- #: contact_form.php:401 contact_form.php:747
238
  msgid "Sent from (ip address)"
239
  msgstr "Sendt fra (IP-adresse)"
240
 
241
- #: contact_form.php:402 contact_form.php:752
242
  msgid "Date/Time"
243
  msgstr "Dato/tid"
244
 
245
- #: contact_form.php:403 contact_form.php:757
246
  msgid "Coming from (referer)"
247
  msgstr "Sendt fra (referent)"
248
 
249
- #: contact_form.php:404 contact_form.php:762
250
  msgid "Using (user agent)"
251
  msgstr "med (user agent)"
252
 
253
- #: contact_form.php:408
254
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
255
  msgstr "Forandre etikett for felter i kontaktskjemaet"
256
 
257
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  msgid "Action after the send mail"
259
  msgstr ""
260
 
261
- #: contact_form.php:424
262
  #, fuzzy
263
  msgid "Display text"
264
  msgstr "Vis vedlegg"
265
 
266
- #: contact_form.php:425
267
  msgid "Text"
268
  msgstr ""
269
 
270
- #: contact_form.php:426
271
  msgid "Redirect to page"
272
  msgstr ""
273
 
274
- #: contact_form.php:427
275
  msgid "Url"
276
  msgstr ""
277
 
278
- #: contact_form.php:432
279
  msgid "Save Changes"
280
  msgstr "Lagre endringer"
281
 
282
- #: contact_form.php:470
283
  msgid "Sorry, your e-mail could not be delivered."
284
  msgstr "Beklager, eposten din kunne ikke leveres."
285
 
286
- #: contact_form.php:540
287
  msgid "You can attach files of the following types"
288
  msgstr "Du kan legge til filer av følgende typer"
289
 
290
- #: contact_form.php:548
291
  msgid "Send me a copy"
292
  msgstr "Send meg en kopi"
293
 
294
- #: contact_form.php:558
295
- msgid "Submit"
296
- msgstr "Send"
297
-
298
- #: contact_form.php:598
299
- msgid "Your name is required."
300
- msgstr "Navnet ditt er påkrevet."
301
-
302
- #: contact_form.php:600
303
- msgid "A proper e-mail address is required."
304
- msgstr "En korrekt epostadresse er påkrevet."
305
-
306
- #: contact_form.php:602
307
- msgid "Subject text is required."
308
- msgstr "Tekst i temafeltet er påkrevet."
309
-
310
- #: contact_form.php:604
311
- msgid "Message text is required."
312
- msgstr "Tekst i meldingsfeltet er påkrevet"
313
-
314
- #: contact_form.php:606
315
- #, fuzzy
316
- msgid "Phone is required field."
317
- msgstr "Navnet ditt er påkrevet."
318
-
319
- #: contact_form.php:607
320
- msgid "Please make corrections below and try again."
321
- msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
322
-
323
- #: contact_form.php:639
324
- msgid "Attachment is broken."
325
- msgstr "Vedlegget fungerer ikke."
326
-
327
- #: contact_form.php:654
328
- msgid "Please complete the CAPTCHA."
329
- msgstr "Vennligst fyll ut CAPTCHA"
330
-
331
- #: contact_form.php:770
332
  msgid "Contact from"
333
  msgstr "Kontakt fra"
334
 
335
- #: contact_form.php:778
336
  msgid "Email"
337
  msgstr "Epost"
338
 
339
- #: contact_form.php:792
340
  msgid "Site"
341
  msgstr "Site"
342
 
343
- #: contact_form.php:837
344
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
345
  msgstr ""
346
  "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
347
 
348
- #: contact_form.php:891
349
  msgid "FAQ"
350
  msgstr "Vanlige spørsmål"
351
 
352
- #: contact_form.php:892
353
  msgid "Support"
354
  msgstr "Support"
355
 
 
 
 
 
356
  #~ msgid "E-Mail Addresse:"
357
  #~ msgstr "Indirizzo e-mail:"
358
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: de_DE\n"
24
  msgid "Read more"
25
  msgstr "Les mer"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Innstilllinger"
30
 
57
  "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller "
58
  "bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Innstillinger for kontaktskjema"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontaktskjema"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Navn:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Epostadresse:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Tema:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Melding:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Vedlegg:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Send"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Navnet ditt er påkrevet."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "En korrekt epostadresse er påkrevet."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Tekst i temafeltet er påkrevet."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Tekst i meldingsfeltet er påkrevet"
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Navnet ditt er påkrevet."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Vedlegget fungerer ikke."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Vennligst fyll ut CAPTCHA"
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Takk for at du tok kontakt med oss"
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr ""
146
  "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr ""
152
+ "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Innstillinger lagret."
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put "
164
  "denne koden i kommentaren din eller på siden din: "
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som "
172
  "var spesifisert ved registrering."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Benytt eposten til wordpressbruker:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Velg brukernavn"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "Benytt denne epostadressen:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
193
 
194
+ #: contact_form.php:431
195
  msgid "Additional options"
196
  msgstr "Flere valg"
197
 
198
+ #: contact_form.php:434
199
  msgid "Display Attachment block"
200
  msgstr "Vis vedlegg"
201
 
202
+ #: contact_form.php:436
203
  msgid "Users can attach files of the following types"
204
  msgstr "Brukere kan legge ved filer av følgende typer"
205
 
206
+ #: contact_form.php:440
207
  msgid "Display Attachment explanations"
208
  msgstr ""
209
 
210
+ #: contact_form.php:442
211
  msgid "Display explanations after Attachment block"
212
  msgstr ""
213
 
214
+ #: contact_form.php:446
215
  msgid "Display Send me a copy block"
216
  msgstr "Vis send meg en kopi"
217
 
218
+ #: contact_form.php:452
219
  msgid "What use?"
220
  msgstr ""
221
 
222
+ #: contact_form.php:455
223
  msgid "Wp-mail"
224
  msgstr "Wp-mail"
225
 
226
+ #: contact_form.php:456
227
  msgid "To send mail you can use the wordpress wp_mail function"
228
  msgstr ""
229
 
230
+ #: contact_form.php:462
231
  msgid "Mail"
232
  msgstr "Mail"
233
 
234
+ #: contact_form.php:463
235
  msgid "To send mail you can use the php mail function"
236
  msgstr ""
237
 
238
+ #: contact_form.php:467
239
+ #, fuzzy
240
+ msgid "Change text for 'FROM' field of the email"
241
  msgstr "Endring fra feltene i kontaktskjemaet"
242
 
243
+ #: contact_form.php:473
244
+ msgid "Select email for 'FROM' field of the email"
245
+ msgstr ""
246
+
247
+ #: contact_form.php:475
248
+ msgid ""
249
+ "In the field 'From' in the mail it will use email of that user who fills the "
250
+ "form."
251
+ msgstr ""
252
+
253
+ #: contact_form.php:477
254
+ msgid "In the field 'From' it will use this email."
255
+ msgstr ""
256
+
257
+ #: contact_form.php:481
258
  msgid "Display phone field"
259
  msgstr ""
260
 
261
+ #: contact_form.php:487
262
  msgid "Required field"
263
  msgstr ""
264
 
265
+ #: contact_form.php:489 contact_form.php:953
266
  msgid "Name"
267
  msgstr "Navn"
268
 
269
+ #: contact_form.php:490
270
  #, fuzzy
271
  msgid "E-Mail Address"
272
  msgstr "Epostadresse:"
273
 
274
+ #: contact_form.php:491 contact_form.php:961
275
  msgid "Phone"
276
  msgstr ""
277
 
278
+ #: contact_form.php:492 contact_form.php:964
279
  msgid "Subject"
280
  msgstr "Tema"
281
 
282
+ #: contact_form.php:493 contact_form.php:967
283
  msgid "Message"
284
  msgstr "Melding"
285
 
286
+ #: contact_form.php:497
287
  msgid "Display additional info in email"
288
  msgstr ""
289
 
290
+ #: contact_form.php:502 contact_form.php:925
291
  msgid "Sent from (ip address)"
292
  msgstr "Sendt fra (IP-adresse)"
293
 
294
+ #: contact_form.php:503 contact_form.php:930
295
  msgid "Date/Time"
296
  msgstr "Dato/tid"
297
 
298
+ #: contact_form.php:504 contact_form.php:935
299
  msgid "Coming from (referer)"
300
  msgstr "Sendt fra (referent)"
301
 
302
+ #: contact_form.php:505 contact_form.php:940
303
  msgid "Using (user agent)"
304
  msgstr "med (user agent)"
305
 
306
+ #: contact_form.php:509
307
+ msgid "Language settings for label fields"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:518
311
+ msgid "Add language"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:522
315
+ #, fuzzy
316
+ msgid "Change label for fields of the contact form and error messages"
317
  msgstr "Forandre etikett for felter i kontaktskjemaet"
318
 
319
+ #: contact_form.php:527 contact_form.php:580
320
+ msgid "English"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:542 contact_form.php:562
324
+ msgid "Error message for name field"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:543 contact_form.php:563
328
+ msgid "Error message for email field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:544 contact_form.php:564
332
+ msgid "Error message for phone field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:545 contact_form.php:565
336
+ msgid "Error message for subject field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:546 contact_form.php:566
340
+ msgid "Error message for message field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:547 contact_form.php:567
344
+ msgid "Error message for attachment field"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:548 contact_form.php:568
348
+ msgid "Error message for captcha"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:549 contact_form.php:569
352
+ msgid "Error message for all form"
353
+ msgstr ""
354
+
355
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
356
+ #: contact_form.php:595
357
+ msgid "Use shortcode"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
361
+ #: contact_form.php:595
362
+ msgid "for this language"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:577
366
  msgid "Action after the send mail"
367
  msgstr ""
368
 
369
+ #: contact_form.php:579
370
  #, fuzzy
371
  msgid "Display text"
372
  msgstr "Vis vedlegg"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr ""
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr ""
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr ""
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "Lagre endringer"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "Beklager, eposten din kunne ikke leveres."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "Du kan legge til filer av følgende typer"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "Send meg en kopi"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "Kontakt fra"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "Epost"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "Site"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr ""
417
  "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "Vanlige spørsmål"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "Support"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "Indirizzo e-mail:"
433
 
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-11-20 10:15+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: nl_NL\n"
@@ -24,7 +24,7 @@ msgstr "Activated plugins"
24
  msgid "Read more"
25
  msgstr "Lees verder"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Instellingen"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com "
58
  "of vul het contactformulier op onze website in."
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Contact Form Opties"
63
 
@@ -65,58 +65,95 @@ msgstr "Contact Form Opties"
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Naam:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Email adres:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Onderwerp:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Bericht:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Bijlage:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Bedankt voor uw bericht."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Instellingen opgeslagen."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,7 +161,7 @@ msgstr ""
124
  "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code "
125
  "in je bericht op op je pagina of widget:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
@@ -132,227 +169,264 @@ msgstr ""
132
  "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden "
133
  "aan het adres dat is gespecificeerd tijdens de registratie."
134
 
135
- #: contact_form.php:296
136
  msgid "Use email of wordpress user:"
137
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
138
 
139
- #: contact_form.php:302
140
  msgid "Select user name"
141
  msgstr "Kies gebruikersnaam"
142
 
143
- #: contact_form.php:307
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr ""
146
  "Voer de naam in van de gebruiker die berichten van dit contact formulier "
147
  "moet ontvangen."
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Gebruik dit email adres:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
156
 
157
- #: contact_form.php:321
158
  msgid "Additional options"
159
  msgstr "Extra opties"
160
 
161
- #: contact_form.php:324
162
  msgid "Display Attachment block"
163
  msgstr "Bijlages toestaan"
164
 
165
- #: contact_form.php:329
166
  msgid "Users can attach files of the following types"
167
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
168
 
169
- #: contact_form.php:333
170
  msgid "Display Attachment explanations"
171
  msgstr ""
172
 
173
- #: contact_form.php:338
174
  msgid "Display explanations after Attachment block"
175
  msgstr ""
176
 
177
- #: contact_form.php:342
178
  msgid "Display Send me a copy block"
179
  msgstr "Geef \"Kopie aan mij sturen\" weer"
180
 
181
- #: contact_form.php:348
182
  msgid "What use?"
183
  msgstr ""
184
 
185
- #: contact_form.php:353
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
- #: contact_form.php:354
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr ""
192
 
193
- #: contact_form.php:362
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
- #: contact_form.php:363
198
  msgid "To send mail you can use the php mail function"
199
  msgstr ""
200
 
201
- #: contact_form.php:367
202
- msgid "Change FROM fields of the contact form"
 
203
  msgstr "Veranderen van velden van het contactformulier"
204
 
205
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Display phone field"
207
  msgstr ""
208
 
209
- #: contact_form.php:379
210
  msgid "Required field"
211
  msgstr ""
212
 
213
- #: contact_form.php:388 contact_form.php:775
214
  msgid "Name"
215
  msgstr "Naam"
216
 
217
- #: contact_form.php:389
218
  #, fuzzy
219
  msgid "E-Mail Address"
220
  msgstr "Email adres:"
221
 
222
- #: contact_form.php:390 contact_form.php:783
223
  msgid "Phone"
224
  msgstr ""
225
 
226
- #: contact_form.php:391 contact_form.php:786
227
  msgid "Subject"
228
  msgstr "Onderwerp"
229
 
230
- #: contact_form.php:392 contact_form.php:789
231
  msgid "Message"
232
  msgstr "Bericht"
233
 
234
- #: contact_form.php:396
235
  msgid "Display additional info in email"
236
  msgstr ""
237
 
238
- #: contact_form.php:401 contact_form.php:747
239
  msgid "Sent from (ip address)"
240
  msgstr "Verstuurd van (IP-adres)"
241
 
242
- #: contact_form.php:402 contact_form.php:752
243
  msgid "Date/Time"
244
  msgstr "Datum/Tijd"
245
 
246
- #: contact_form.php:403 contact_form.php:757
247
  msgid "Coming from (referer)"
248
  msgstr "Verstuurd vanaf (referer)"
249
 
250
- #: contact_form.php:404 contact_form.php:762
251
  msgid "Using (user agent)"
252
  msgstr "Met (user agent)"
253
 
254
- #: contact_form.php:408
255
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
256
  msgstr "Verander de namen van de labels"
257
 
258
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Action after the send mail"
260
  msgstr ""
261
 
262
- #: contact_form.php:424
263
  #, fuzzy
264
  msgid "Display text"
265
  msgstr "Bijlages toestaan"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr ""
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr ""
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr ""
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "Bewaar veranderingen"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "Kopie aan mij sturen"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "Versturen"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "U bent vergeten uw naam op te geven"
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "U bent vergeten uw emailadres op te geven"
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "U bent vergeten een onderwerp op te geven"
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "U bent vergeten een bericht op te geven"
314
-
315
- #: contact_form.php:606
316
- #, fuzzy
317
- msgid "Phone is required field."
318
- msgstr "U bent vergeten uw naam op te geven"
319
-
320
- #: contact_form.php:607
321
- msgid "Please make corrections below and try again."
322
- msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "Bijlage is beschadigd."
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "Vul de CAPTCHA in."
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "Contact van"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "Email"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "Website"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
347
 
348
- #: contact_form.php:891
349
  msgid "FAQ"
350
  msgstr "Veel gestelde vragen (FAQ)"
351
 
352
- #: contact_form.php:892
353
  msgid "Support"
354
  msgstr "Support"
355
 
 
 
 
 
356
  #~ msgid "E-Mail Addresse:"
357
  #~ msgstr "Indirizzo e-mail:"
358
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: nl_NL\n"
24
  msgid "Read more"
25
  msgstr "Lees verder"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Instellingen"
30
 
57
  "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com "
58
  "of vul het contactformulier op onze website in."
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Contact Form Opties"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Naam:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Email adres:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Onderwerp:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Bericht:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Bijlage:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Versturen"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "U bent vergeten uw naam op te geven"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "U bent vergeten uw emailadres op te geven"
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "U bent vergeten een onderwerp op te geven"
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "U bent vergeten een bericht op te geven"
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "U bent vergeten uw naam op te geven"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Bijlage is beschadigd."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Vul de CAPTCHA in."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Bedankt voor uw bericht."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
146
 
147
+ #: contact_form.php:376
148
+ #, fuzzy
149
+ msgid "Please input correct 'FROM' email. Settings are not saved."
150
+ msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
151
+
152
+ #: contact_form.php:381
153
+ msgid "Options saved."
154
+ msgstr "Instellingen opgeslagen."
155
+
156
+ #: contact_form.php:406
157
  msgid ""
158
  "If you would like to add a Contact Form to your website, just copy and put "
159
  "this shortcode onto your post or page or widget:"
161
  "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code "
162
  "in je bericht op op je pagina of widget:"
163
 
164
+ #: contact_form.php:407
165
  msgid ""
166
  "If information in the below fields are empty then the message will be send "
167
  "to an address which was specified during registration."
169
  "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden "
170
  "aan het adres dat is gespecificeerd tijdens de registratie."
171
 
172
+ #: contact_form.php:411
173
  msgid "Use email of wordpress user:"
174
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
175
 
176
+ #: contact_form.php:415
177
  msgid "Select user name"
178
  msgstr "Kies gebruikersnaam"
179
 
180
+ #: contact_form.php:420
181
  msgid "Set a name of user who will get messages from a contact form."
182
  msgstr ""
183
  "Voer de naam in van de gebruiker die berichten van dit contact formulier "
184
  "moet ontvangen."
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "Gebruik dit email adres:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
193
 
194
+ #: contact_form.php:431
195
  msgid "Additional options"
196
  msgstr "Extra opties"
197
 
198
+ #: contact_form.php:434
199
  msgid "Display Attachment block"
200
  msgstr "Bijlages toestaan"
201
 
202
+ #: contact_form.php:436
203
  msgid "Users can attach files of the following types"
204
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
205
 
206
+ #: contact_form.php:440
207
  msgid "Display Attachment explanations"
208
  msgstr ""
209
 
210
+ #: contact_form.php:442
211
  msgid "Display explanations after Attachment block"
212
  msgstr ""
213
 
214
+ #: contact_form.php:446
215
  msgid "Display Send me a copy block"
216
  msgstr "Geef \"Kopie aan mij sturen\" weer"
217
 
218
+ #: contact_form.php:452
219
  msgid "What use?"
220
  msgstr ""
221
 
222
+ #: contact_form.php:455
223
  msgid "Wp-mail"
224
  msgstr "Wp-mail"
225
 
226
+ #: contact_form.php:456
227
  msgid "To send mail you can use the wordpress wp_mail function"
228
  msgstr ""
229
 
230
+ #: contact_form.php:462
231
  msgid "Mail"
232
  msgstr "Mail"
233
 
234
+ #: contact_form.php:463
235
  msgid "To send mail you can use the php mail function"
236
  msgstr ""
237
 
238
+ #: contact_form.php:467
239
+ #, fuzzy
240
+ msgid "Change text for 'FROM' field of the email"
241
  msgstr "Veranderen van velden van het contactformulier"
242
 
243
+ #: contact_form.php:473
244
+ msgid "Select email for 'FROM' field of the email"
245
+ msgstr ""
246
+
247
+ #: contact_form.php:475
248
+ msgid ""
249
+ "In the field 'From' in the mail it will use email of that user who fills the "
250
+ "form."
251
+ msgstr ""
252
+
253
+ #: contact_form.php:477
254
+ msgid "In the field 'From' it will use this email."
255
+ msgstr ""
256
+
257
+ #: contact_form.php:481
258
  msgid "Display phone field"
259
  msgstr ""
260
 
261
+ #: contact_form.php:487
262
  msgid "Required field"
263
  msgstr ""
264
 
265
+ #: contact_form.php:489 contact_form.php:953
266
  msgid "Name"
267
  msgstr "Naam"
268
 
269
+ #: contact_form.php:490
270
  #, fuzzy
271
  msgid "E-Mail Address"
272
  msgstr "Email adres:"
273
 
274
+ #: contact_form.php:491 contact_form.php:961
275
  msgid "Phone"
276
  msgstr ""
277
 
278
+ #: contact_form.php:492 contact_form.php:964
279
  msgid "Subject"
280
  msgstr "Onderwerp"
281
 
282
+ #: contact_form.php:493 contact_form.php:967
283
  msgid "Message"
284
  msgstr "Bericht"
285
 
286
+ #: contact_form.php:497
287
  msgid "Display additional info in email"
288
  msgstr ""
289
 
290
+ #: contact_form.php:502 contact_form.php:925
291
  msgid "Sent from (ip address)"
292
  msgstr "Verstuurd van (IP-adres)"
293
 
294
+ #: contact_form.php:503 contact_form.php:930
295
  msgid "Date/Time"
296
  msgstr "Datum/Tijd"
297
 
298
+ #: contact_form.php:504 contact_form.php:935
299
  msgid "Coming from (referer)"
300
  msgstr "Verstuurd vanaf (referer)"
301
 
302
+ #: contact_form.php:505 contact_form.php:940
303
  msgid "Using (user agent)"
304
  msgstr "Met (user agent)"
305
 
306
+ #: contact_form.php:509
307
+ msgid "Language settings for label fields"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:518
311
+ msgid "Add language"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:522
315
+ #, fuzzy
316
+ msgid "Change label for fields of the contact form and error messages"
317
  msgstr "Verander de namen van de labels"
318
 
319
+ #: contact_form.php:527 contact_form.php:580
320
+ msgid "English"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:542 contact_form.php:562
324
+ msgid "Error message for name field"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:543 contact_form.php:563
328
+ msgid "Error message for email field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:544 contact_form.php:564
332
+ msgid "Error message for phone field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:545 contact_form.php:565
336
+ msgid "Error message for subject field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:546 contact_form.php:566
340
+ msgid "Error message for message field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:547 contact_form.php:567
344
+ msgid "Error message for attachment field"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:548 contact_form.php:568
348
+ msgid "Error message for captcha"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:549 contact_form.php:569
352
+ msgid "Error message for all form"
353
+ msgstr ""
354
+
355
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
356
+ #: contact_form.php:595
357
+ msgid "Use shortcode"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
361
+ #: contact_form.php:595
362
+ msgid "for this language"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:577
366
  msgid "Action after the send mail"
367
  msgstr ""
368
 
369
+ #: contact_form.php:579
370
  #, fuzzy
371
  msgid "Display text"
372
  msgstr "Bijlages toestaan"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr ""
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr ""
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr ""
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "Bewaar veranderingen"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "Kopie aan mij sturen"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "Contact van"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "Email"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "Website"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
417
 
418
+ #: contact_form.php:1078
419
  msgid "FAQ"
420
  msgstr "Veel gestelde vragen (FAQ)"
421
 
422
+ #: contact_form.php:1079
423
  msgid "Support"
424
  msgstr "Support"
425
 
426
+ #: contact_form.php:1125
427
+ msgid "Are you sure you want to delete this language?"
428
+ msgstr ""
429
+
430
  #~ msgid "E-Mail Addresse:"
431
  #~ msgstr "Indirizzo e-mail:"
432
 
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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: pl_PL\n"
@@ -30,7 +30,7 @@ msgid "Read more"
30
  msgstr "Czytaj więcej"
31
 
32
  # @ contact_form
33
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
34
  msgid "Settings"
35
  msgstr "Ustawienia"
36
 
@@ -70,7 +70,7 @@ msgstr ""
70
  "formularza na naszej stronie"
71
 
72
  # @ contact_form
73
- #: contact_form.php:108 contact_form.php:286
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
@@ -80,67 +80,114 @@ msgid "Contact Form"
80
  msgstr "Contact Form"
81
 
82
  # @ contact_form
83
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
84
- #: contact_form.php:413
85
  msgid "Name:"
86
  msgstr "Imię:"
87
 
88
  # @ contact_form
89
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
90
- #: contact_form.php:414
91
  msgid "E-Mail Address:"
92
  msgstr "Adres e-mail"
93
 
94
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
95
  msgid "Phone:"
96
  msgstr ""
97
 
98
  # @ contact_form
99
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
100
- #: contact_form.php:416
101
  msgid "Subject:"
102
  msgstr "Temat:"
103
 
104
  # @ contact_form
105
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
106
- #: contact_form.php:417
107
  msgid "Message:"
108
  msgstr "Treść wiadomości:"
109
 
110
  # @ contact_form
111
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
112
- #: contact_form.php:418
113
  msgid "Attachment:"
114
  msgstr "Załączniki:"
115
 
116
  # @ contact_form
117
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  msgid "Thank you for contacting us."
119
  msgstr "Dziękujemy za wiadomość."
120
 
121
- #: contact_form.php:253
122
  msgid ""
123
  "If the option 'Redirect to page' is selected then url field should be "
124
  "fillied in the following format"
125
  msgstr ""
126
 
127
  # @ contact_form
128
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
129
- msgid "Options saved."
130
- msgstr "Opcje zapisano"
131
-
132
- # @ contact_form
133
- #: contact_form.php:268
134
  msgid "Such user is not exist. Settings are not saved."
135
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
136
 
137
  # @ contact_form
138
- #: contact_form.php:278
139
  msgid "Please input correct email. Settings are not saved."
140
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
141
 
142
  # @ contact_form
143
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
 
144
  msgid ""
145
  "If you would like to add a Contact Form to your website, just copy and put "
146
  "this shortcode onto your post or page or widget:"
@@ -149,7 +196,7 @@ msgstr ""
149
  "wklej go do wpisu lub treści strony lub Widget:"
150
 
151
  # @ contact_form
152
- #: contact_form.php:292
153
  msgid ""
154
  "If information in the below fields are empty then the message will be send "
155
  "to an address which was specified during registration."
@@ -158,262 +205,290 @@ msgstr ""
158
  "podany podczas rejestracji."
159
 
160
  # @ contact_form
161
- #: contact_form.php:296
162
  msgid "Use email of wordpress user:"
163
  msgstr "Użyj adresu e-mail użytkownika:"
164
 
165
  # @ contact_form
166
- #: contact_form.php:302
167
  msgid "Select user name"
168
  msgstr "Wybierz użytkownika"
169
 
170
  # @ contact_form
171
- #: contact_form.php:307
172
  msgid "Set a name of user who will get messages from a contact form."
173
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
174
 
175
  # @ contact_form
176
- #: contact_form.php:311
177
  msgid "Use this email:"
178
  msgstr "Wybierz ten e-mail:"
179
 
180
  # @ contact_form
181
- #: contact_form.php:317
182
  msgid "Set an email address which will be used for messages receiving."
183
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
184
 
185
  # @ contact_form
186
- #: contact_form.php:321
187
  msgid "Additional options"
188
  msgstr "Dodatkowe opcje"
189
 
190
  # @ contact_form
191
- #: contact_form.php:324
192
  msgid "Display Attachment block"
193
  msgstr "Wyświetlaj blok załączników"
194
 
195
  # @ contact_form
196
- #: contact_form.php:329
197
  msgid "Users can attach files of the following types"
198
  msgstr "Można załączać pliki następujących typów"
199
 
200
  # @ contact_form
201
- #: contact_form.php:333
202
  msgid "Display Attachment explanations"
203
  msgstr ""
204
 
205
  # @ contact_form
206
- #: contact_form.php:338
207
  msgid "Display explanations after Attachment block"
208
  msgstr ""
209
 
210
  # @ contact_form
211
- #: contact_form.php:342
212
  msgid "Display Send me a copy block"
213
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
214
 
215
- #: contact_form.php:348
216
  msgid "What use?"
217
  msgstr ""
218
 
219
  # @ contact_form
220
- #: contact_form.php:353
221
  msgid "Wp-mail"
222
  msgstr "Wp-mail"
223
 
224
- #: contact_form.php:354
225
  msgid "To send mail you can use the wordpress wp_mail function"
226
  msgstr ""
227
 
228
  # @ contact_form
229
- #: contact_form.php:362
230
  msgid "Mail"
231
  msgstr "Mail"
232
 
233
- #: contact_form.php:363
234
  msgid "To send mail you can use the php mail function"
235
  msgstr ""
236
 
237
  # @ contact_form
238
- #: contact_form.php:367
239
- msgid "Change FROM fields of the contact form"
 
240
  msgstr "Zmień od pola formularza"
241
 
242
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "Display phone field"
244
  msgstr ""
245
 
246
- #: contact_form.php:379
247
  msgid "Required field"
248
  msgstr ""
249
 
250
  # @ contact_form
251
- #: contact_form.php:388 contact_form.php:775
252
  msgid "Name"
253
  msgstr "Imię"
254
 
255
  # @ contact_form
256
- #: contact_form.php:389
257
  #, fuzzy
258
  msgid "E-Mail Address"
259
  msgstr "Adres e-mail"
260
 
261
- #: contact_form.php:390 contact_form.php:783
262
  msgid "Phone"
263
  msgstr ""
264
 
265
  # @ contact_form
266
- #: contact_form.php:391 contact_form.php:786
267
  msgid "Subject"
268
  msgstr "Temat"
269
 
270
  # @ contact_form
271
- #: contact_form.php:392 contact_form.php:789
272
  msgid "Message"
273
  msgstr "Wiadomość"
274
 
275
- #: contact_form.php:396
276
  msgid "Display additional info in email"
277
  msgstr ""
278
 
279
  # @ contact_form
280
- #: contact_form.php:401 contact_form.php:747
281
  msgid "Sent from (ip address)"
282
  msgstr "Przysłane z (adres IP)"
283
 
284
  # @ contact_form
285
- #: contact_form.php:402 contact_form.php:752
286
  msgid "Date/Time"
287
  msgstr "Data/czas"
288
 
289
  # @ contact_form
290
- #: contact_form.php:403 contact_form.php:757
291
  msgid "Coming from (referer)"
292
  msgstr "Przekierowane z (referrer)"
293
 
294
  # @ contact_form
295
- #: contact_form.php:404 contact_form.php:762
296
  msgid "Using (user agent)"
297
  msgstr "Klient (program użytkownika)"
298
 
 
 
 
 
 
 
 
 
299
  # @ contact_form
300
- #: contact_form.php:408
301
- msgid "Change label for fields of the contact form"
 
302
  msgstr "Zmień etykiety pól formularza"
303
 
304
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  msgid "Action after the send mail"
306
  msgstr ""
307
 
308
  # @ contact_form
309
- #: contact_form.php:424
310
  #, fuzzy
311
  msgid "Display text"
312
  msgstr "Wyświetlaj blok załączników"
313
 
314
- #: contact_form.php:425
315
  msgid "Text"
316
  msgstr ""
317
 
318
- #: contact_form.php:426
319
  msgid "Redirect to page"
320
  msgstr ""
321
 
322
- #: contact_form.php:427
323
  msgid "Url"
324
  msgstr ""
325
 
326
  # @ default
327
- #: contact_form.php:432
328
  msgid "Save Changes"
329
  msgstr "Zapisz zmiany"
330
 
331
  # @ contact_form
332
- #: contact_form.php:470
333
  msgid "Sorry, your e-mail could not be delivered."
334
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
335
 
336
  # @ contact_form
337
- #: contact_form.php:540
338
  msgid "You can attach files of the following types"
339
  msgstr "Możesz załączać pliki następujących typów"
340
 
341
  # @ contact_form
342
- #: contact_form.php:548
343
  msgid "Send me a copy"
344
  msgstr "Wyślij mi kopię"
345
 
346
  # @ contact_form
347
- #: contact_form.php:558
348
- msgid "Submit"
349
- msgstr "Wyślij"
350
-
351
- # @ contact_form
352
- #: contact_form.php:598
353
- msgid "Your name is required."
354
- msgstr "Podanie imienia jest wymagane."
355
-
356
- # @ contact_form
357
- #: contact_form.php:600
358
- msgid "A proper e-mail address is required."
359
- msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
360
-
361
- # @ contact_form
362
- #: contact_form.php:602
363
- msgid "Subject text is required."
364
- msgstr "Podanie tematu jest wymagane."
365
-
366
- # @ contact_form
367
- #: contact_form.php:604
368
- msgid "Message text is required."
369
- msgstr "Wiadomość musi mieć jakąś treść."
370
-
371
- # @ contact_form
372
- #: contact_form.php:606
373
- #, fuzzy
374
- msgid "Phone is required field."
375
- msgstr "Podanie imienia jest wymagane."
376
-
377
- # @ contact_form
378
- #: contact_form.php:607
379
- msgid "Please make corrections below and try again."
380
- msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
381
-
382
- # @ contact_form
383
- #: contact_form.php:639
384
- msgid "Attachment is broken."
385
- msgstr "Załącznik jest uszkodzony."
386
-
387
- # @ contact_form
388
- #: contact_form.php:654
389
- msgid "Please complete the CAPTCHA."
390
- msgstr "Proszę dokładnie przepisać kod."
391
-
392
- # @ contact_form
393
- #: contact_form.php:770
394
  msgid "Contact from"
395
  msgstr "Kontakt z"
396
 
397
  # @ contact_form
398
- #: contact_form.php:778
399
  msgid "Email"
400
  msgstr "E-mail"
401
 
402
  # @ contact_form
403
- #: contact_form.php:792
404
  msgid "Site"
405
  msgstr "Strona www"
406
 
407
- #: contact_form.php:837
408
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
409
  msgstr ""
410
 
411
  # @ contact_form
412
- #: contact_form.php:891
413
  msgid "FAQ"
414
  msgstr "FAQ"
415
 
416
  # @ contact_form
417
- #: contact_form.php:892
418
  msgid "Support"
419
  msgstr "Wsparcie"
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: pl_PL\n"
30
  msgstr "Czytaj więcej"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
34
  msgid "Settings"
35
  msgstr "Ustawienia"
36
 
70
  "formularza na naszej stronie"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:108 contact_form.php:401
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
80
  msgstr "Contact Form"
81
 
82
  # @ contact_form
83
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
84
  msgid "Name:"
85
  msgstr "Imię:"
86
 
87
  # @ contact_form
88
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
89
  msgid "E-Mail Address:"
90
  msgstr "Adres e-mail"
91
 
92
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
93
  msgid "Phone:"
94
  msgstr ""
95
 
96
  # @ contact_form
97
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
98
  msgid "Subject:"
99
  msgstr "Temat:"
100
 
101
  # @ contact_form
102
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
103
  msgid "Message:"
104
  msgstr "Treść wiadomości:"
105
 
106
  # @ contact_form
107
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
108
  msgid "Attachment:"
109
  msgstr "Załączniki:"
110
 
111
  # @ contact_form
112
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
113
+ msgid "Submit"
114
+ msgstr "Wyślij"
115
+
116
+ # @ contact_form
117
+ #: contact_form.php:152
118
+ msgid "Your name is required."
119
+ msgstr "Podanie imienia jest wymagane."
120
+
121
+ # @ contact_form
122
+ #: contact_form.php:153
123
+ msgid "A proper e-mail address is required."
124
+ msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
125
+
126
+ # @ contact_form
127
+ #: contact_form.php:154
128
+ msgid "Subject text is required."
129
+ msgstr "Podanie tematu jest wymagane."
130
+
131
+ # @ contact_form
132
+ #: contact_form.php:155
133
+ msgid "Message text is required."
134
+ msgstr "Wiadomość musi mieć jakąś treść."
135
+
136
+ # @ contact_form
137
+ #: contact_form.php:156
138
+ #, fuzzy
139
+ msgid "Phone is required field."
140
+ msgstr "Podanie imienia jest wymagane."
141
+
142
+ # @ contact_form
143
+ #: contact_form.php:157
144
+ msgid "Attachment is broken."
145
+ msgstr "Załącznik jest uszkodzony."
146
+
147
+ # @ contact_form
148
+ #: contact_form.php:158
149
+ msgid "Please complete the CAPTCHA."
150
+ msgstr "Proszę dokładnie przepisać kod."
151
+
152
+ # @ contact_form
153
+ #: contact_form.php:159
154
+ msgid "Please make corrections below and try again."
155
+ msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
156
+
157
+ # @ contact_form
158
+ #: contact_form.php:161
159
  msgid "Thank you for contacting us."
160
  msgstr "Dziękujemy za wiadomość."
161
 
162
+ #: contact_form.php:356
163
  msgid ""
164
  "If the option 'Redirect to page' is selected then url field should be "
165
  "fillied in the following format"
166
  msgstr ""
167
 
168
  # @ contact_form
169
+ #: contact_form.php:365
 
 
 
 
 
170
  msgid "Such user is not exist. Settings are not saved."
171
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
172
 
173
  # @ contact_form
174
+ #: contact_form.php:370
175
  msgid "Please input correct email. Settings are not saved."
176
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
177
 
178
  # @ contact_form
179
+ #: contact_form.php:376
180
+ #, fuzzy
181
+ msgid "Please input correct 'FROM' email. Settings are not saved."
182
+ msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
183
+
184
+ # @ contact_form
185
+ #: contact_form.php:381
186
+ msgid "Options saved."
187
+ msgstr "Opcje zapisano"
188
+
189
+ # @ contact_form
190
+ #: contact_form.php:406
191
  msgid ""
192
  "If you would like to add a Contact Form to your website, just copy and put "
193
  "this shortcode onto your post or page or widget:"
196
  "wklej go do wpisu lub treści strony lub Widget:"
197
 
198
  # @ contact_form
199
+ #: contact_form.php:407
200
  msgid ""
201
  "If information in the below fields are empty then the message will be send "
202
  "to an address which was specified during registration."
205
  "podany podczas rejestracji."
206
 
207
  # @ contact_form
208
+ #: contact_form.php:411
209
  msgid "Use email of wordpress user:"
210
  msgstr "Użyj adresu e-mail użytkownika:"
211
 
212
  # @ contact_form
213
+ #: contact_form.php:415
214
  msgid "Select user name"
215
  msgstr "Wybierz użytkownika"
216
 
217
  # @ contact_form
218
+ #: contact_form.php:420
219
  msgid "Set a name of user who will get messages from a contact form."
220
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
221
 
222
  # @ contact_form
223
+ #: contact_form.php:424
224
  msgid "Use this email:"
225
  msgstr "Wybierz ten e-mail:"
226
 
227
  # @ contact_form
228
+ #: contact_form.php:427
229
  msgid "Set an email address which will be used for messages receiving."
230
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
231
 
232
  # @ contact_form
233
+ #: contact_form.php:431
234
  msgid "Additional options"
235
  msgstr "Dodatkowe opcje"
236
 
237
  # @ contact_form
238
+ #: contact_form.php:434
239
  msgid "Display Attachment block"
240
  msgstr "Wyświetlaj blok załączników"
241
 
242
  # @ contact_form
243
+ #: contact_form.php:436
244
  msgid "Users can attach files of the following types"
245
  msgstr "Można załączać pliki następujących typów"
246
 
247
  # @ contact_form
248
+ #: contact_form.php:440
249
  msgid "Display Attachment explanations"
250
  msgstr ""
251
 
252
  # @ contact_form
253
+ #: contact_form.php:442
254
  msgid "Display explanations after Attachment block"
255
  msgstr ""
256
 
257
  # @ contact_form
258
+ #: contact_form.php:446
259
  msgid "Display Send me a copy block"
260
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
261
 
262
+ #: contact_form.php:452
263
  msgid "What use?"
264
  msgstr ""
265
 
266
  # @ contact_form
267
+ #: contact_form.php:455
268
  msgid "Wp-mail"
269
  msgstr "Wp-mail"
270
 
271
+ #: contact_form.php:456
272
  msgid "To send mail you can use the wordpress wp_mail function"
273
  msgstr ""
274
 
275
  # @ contact_form
276
+ #: contact_form.php:462
277
  msgid "Mail"
278
  msgstr "Mail"
279
 
280
+ #: contact_form.php:463
281
  msgid "To send mail you can use the php mail function"
282
  msgstr ""
283
 
284
  # @ contact_form
285
+ #: contact_form.php:467
286
+ #, fuzzy
287
+ msgid "Change text for 'FROM' field of the email"
288
  msgstr "Zmień od pola formularza"
289
 
290
+ #: contact_form.php:473
291
+ msgid "Select email for 'FROM' field of the email"
292
+ msgstr ""
293
+
294
+ #: contact_form.php:475
295
+ msgid ""
296
+ "In the field 'From' in the mail it will use email of that user who fills the "
297
+ "form."
298
+ msgstr ""
299
+
300
+ #: contact_form.php:477
301
+ msgid "In the field 'From' it will use this email."
302
+ msgstr ""
303
+
304
+ #: contact_form.php:481
305
  msgid "Display phone field"
306
  msgstr ""
307
 
308
+ #: contact_form.php:487
309
  msgid "Required field"
310
  msgstr ""
311
 
312
  # @ contact_form
313
+ #: contact_form.php:489 contact_form.php:953
314
  msgid "Name"
315
  msgstr "Imię"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:490
319
  #, fuzzy
320
  msgid "E-Mail Address"
321
  msgstr "Adres e-mail"
322
 
323
+ #: contact_form.php:491 contact_form.php:961
324
  msgid "Phone"
325
  msgstr ""
326
 
327
  # @ contact_form
328
+ #: contact_form.php:492 contact_form.php:964
329
  msgid "Subject"
330
  msgstr "Temat"
331
 
332
  # @ contact_form
333
+ #: contact_form.php:493 contact_form.php:967
334
  msgid "Message"
335
  msgstr "Wiadomość"
336
 
337
+ #: contact_form.php:497
338
  msgid "Display additional info in email"
339
  msgstr ""
340
 
341
  # @ contact_form
342
+ #: contact_form.php:502 contact_form.php:925
343
  msgid "Sent from (ip address)"
344
  msgstr "Przysłane z (adres IP)"
345
 
346
  # @ contact_form
347
+ #: contact_form.php:503 contact_form.php:930
348
  msgid "Date/Time"
349
  msgstr "Data/czas"
350
 
351
  # @ contact_form
352
+ #: contact_form.php:504 contact_form.php:935
353
  msgid "Coming from (referer)"
354
  msgstr "Przekierowane z (referrer)"
355
 
356
  # @ contact_form
357
+ #: contact_form.php:505 contact_form.php:940
358
  msgid "Using (user agent)"
359
  msgstr "Klient (program użytkownika)"
360
 
361
+ #: contact_form.php:509
362
+ msgid "Language settings for label fields"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:518
366
+ msgid "Add language"
367
+ msgstr ""
368
+
369
  # @ contact_form
370
+ #: contact_form.php:522
371
+ #, fuzzy
372
+ msgid "Change label for fields of the contact form and error messages"
373
  msgstr "Zmień etykiety pól formularza"
374
 
375
+ #: contact_form.php:527 contact_form.php:580
376
+ msgid "English"
377
+ msgstr ""
378
+
379
+ #: contact_form.php:542 contact_form.php:562
380
+ msgid "Error message for name field"
381
+ msgstr ""
382
+
383
+ #: contact_form.php:543 contact_form.php:563
384
+ msgid "Error message for email field"
385
+ msgstr ""
386
+
387
+ #: contact_form.php:544 contact_form.php:564
388
+ msgid "Error message for phone field"
389
+ msgstr ""
390
+
391
+ #: contact_form.php:545 contact_form.php:565
392
+ msgid "Error message for subject field"
393
+ msgstr ""
394
+
395
+ #: contact_form.php:546 contact_form.php:566
396
+ msgid "Error message for message field"
397
+ msgstr ""
398
+
399
+ #: contact_form.php:547 contact_form.php:567
400
+ msgid "Error message for attachment field"
401
+ msgstr ""
402
+
403
+ #: contact_form.php:548 contact_form.php:568
404
+ msgid "Error message for captcha"
405
+ msgstr ""
406
+
407
+ #: contact_form.php:549 contact_form.php:569
408
+ msgid "Error message for all form"
409
+ msgstr ""
410
+
411
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
412
+ #: contact_form.php:595
413
+ msgid "Use shortcode"
414
+ msgstr ""
415
+
416
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
417
+ #: contact_form.php:595
418
+ msgid "for this language"
419
+ msgstr ""
420
+
421
+ #: contact_form.php:577
422
  msgid "Action after the send mail"
423
  msgstr ""
424
 
425
  # @ contact_form
426
+ #: contact_form.php:579
427
  #, fuzzy
428
  msgid "Display text"
429
  msgstr "Wyświetlaj blok załączników"
430
 
431
+ #: contact_form.php:588 contact_form.php:594
432
  msgid "Text"
433
  msgstr ""
434
 
435
+ #: contact_form.php:601
436
  msgid "Redirect to page"
437
  msgstr ""
438
 
439
+ #: contact_form.php:602
440
  msgid "Url"
441
  msgstr ""
442
 
443
  # @ default
444
+ #: contact_form.php:607
445
  msgid "Save Changes"
446
  msgstr "Zapisz zmiany"
447
 
448
  # @ contact_form
449
+ #: contact_form.php:646
450
  msgid "Sorry, your e-mail could not be delivered."
451
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
452
 
453
  # @ contact_form
454
+ #: contact_form.php:716
455
  msgid "You can attach files of the following types"
456
  msgstr "Możesz załączać pliki następujących typów"
457
 
458
  # @ contact_form
459
+ #: contact_form.php:724
460
  msgid "Send me a copy"
461
  msgstr "Wyślij mi kopię"
462
 
463
  # @ contact_form
464
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
  msgid "Contact from"
466
  msgstr "Kontakt z"
467
 
468
  # @ contact_form
469
+ #: contact_form.php:956
470
  msgid "Email"
471
  msgstr "E-mail"
472
 
473
  # @ contact_form
474
+ #: contact_form.php:970
475
  msgid "Site"
476
  msgstr "Strona www"
477
 
478
+ #: contact_form.php:1021
479
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
480
  msgstr ""
481
 
482
  # @ contact_form
483
+ #: contact_form.php:1078
484
  msgid "FAQ"
485
  msgstr "FAQ"
486
 
487
  # @ contact_form
488
+ #: contact_form.php:1079
489
  msgid "Support"
490
  msgstr "Wsparcie"
491
+
492
+ #: contact_form.php:1125
493
+ msgid "Are you sure you want to delete this language?"
494
+ msgstr ""
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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: de_DE\n"
@@ -24,7 +24,7 @@ msgstr "Plugins ativados"
24
  msgid "Read more"
25
  msgstr "Leia Mais"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Configurações"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Se você tem quaisquer perguntas, por favor entre em contato através do email "
58
  "plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Opções do formulário de contato"
63
 
@@ -65,58 +65,96 @@ msgstr "Opções do formulário de contato"
65
  msgid "Contact Form"
66
  msgstr "Formulário de contato"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Nome:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Endereço de E-mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Assunto:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Mensagem:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Anexo:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Obrigado por nos contatar"
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Opções salvas."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Tal usuári não existe. Configurações não foram salvas."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,7 +162,7 @@ msgstr ""
124
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
125
  "copie e cole este código na sua postagem ou página ou widget:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
@@ -132,232 +170,268 @@ msgstr ""
132
  "Se informações nos campos abaixo estão vazias, então as mensagens serão "
133
  "enviadas para um endereço que foi especificado durante o registro."
134
 
135
- #: contact_form.php:296
136
  msgid "Use email of wordpress user:"
137
  msgstr "Use o email de um usuário do wordpress:"
138
 
139
- #: contact_form.php:302
140
  msgid "Select user name"
141
  msgstr "Selecione o nome do usuário"
142
 
143
- #: contact_form.php:307
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr ""
146
  "Determine um nome de usuário que receberá as mensagens enviadas pelo "
147
  "Formulário de Contato."
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Use este email:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr ""
156
  "Configure um endereço de email que será usado para o recebimento de "
157
  "mensagens."
158
 
159
- #: contact_form.php:321
160
  msgid "Additional options"
161
  msgstr "Opções adicionais"
162
 
163
- #: contact_form.php:324
164
  msgid "Display Attachment block"
165
  msgstr "Mostrar opção para anexar arquivos"
166
 
167
- #: contact_form.php:329
168
  msgid "Users can attach files of the following types"
169
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
170
 
171
- #: contact_form.php:333
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
- #: contact_form.php:338
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
- #: contact_form.php:342
180
  msgid "Display Send me a copy block"
181
  msgstr "Mostrar a opção Envie-me um cópia"
182
 
183
- #: contact_form.php:348
184
  msgid "What use?"
185
  msgstr ""
186
 
187
- #: contact_form.php:353
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
- #: contact_form.php:354
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
- #: contact_form.php:362
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
- #: contact_form.php:363
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
- #: contact_form.php:367
204
- msgid "Change FROM fields of the contact form"
 
205
  msgstr "Mudar de campos do formulário de contato"
206
 
207
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  msgid "Display phone field"
209
  msgstr ""
210
 
211
- #: contact_form.php:379
212
  msgid "Required field"
213
  msgstr ""
214
 
215
- #: contact_form.php:388 contact_form.php:775
216
  msgid "Name"
217
  msgstr "Nome"
218
 
219
- #: contact_form.php:389
220
  #, fuzzy
221
  msgid "E-Mail Address"
222
  msgstr "Endereço de E-mail:"
223
 
224
- #: contact_form.php:390 contact_form.php:783
225
  msgid "Phone"
226
  msgstr ""
227
 
228
- #: contact_form.php:391 contact_form.php:786
229
  msgid "Subject"
230
  msgstr "Assunto"
231
 
232
- #: contact_form.php:392 contact_form.php:789
233
  msgid "Message"
234
  msgstr "Mensagem"
235
 
236
- #: contact_form.php:396
237
  msgid "Display additional info in email"
238
  msgstr ""
239
 
240
- #: contact_form.php:401 contact_form.php:747
241
  msgid "Sent from (ip address)"
242
  msgstr "Enviado de (Endereço IP)"
243
 
244
- #: contact_form.php:402 contact_form.php:752
245
  msgid "Date/Time"
246
  msgstr "DAta / Hora"
247
 
248
- #: contact_form.php:403 contact_form.php:757
249
  msgid "Coming from (referer)"
250
  msgstr "Vindo de (origem)"
251
 
252
- #: contact_form.php:404 contact_form.php:762
253
  msgid "Using (user agent)"
254
  msgstr "Usando (cliente de email)"
255
 
256
- #: contact_form.php:408
257
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
258
  msgstr "Mudar rótulo para os campos no formulário de contato"
259
 
260
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Action after the send mail"
262
  msgstr ""
263
 
264
- #: contact_form.php:424
265
  #, fuzzy
266
  msgid "Display text"
267
  msgstr "Mostrar opção para anexar arquivos"
268
 
269
- #: contact_form.php:425
270
  msgid "Text"
271
  msgstr ""
272
 
273
- #: contact_form.php:426
274
  msgid "Redirect to page"
275
  msgstr ""
276
 
277
- #: contact_form.php:427
278
  msgid "Url"
279
  msgstr ""
280
 
281
- #: contact_form.php:432
282
  msgid "Save Changes"
283
  msgstr "Salvar mudanças"
284
 
285
- #: contact_form.php:470
286
  msgid "Sorry, your e-mail could not be delivered."
287
  msgstr "Desculpe, seu e-mail não pode ser entregue."
288
 
289
- #: contact_form.php:540
290
  msgid "You can attach files of the following types"
291
  msgstr "Você pode anexar arquivos do seguinte tipo"
292
 
293
- #: contact_form.php:548
294
  msgid "Send me a copy"
295
  msgstr "Envie-me uma cópia"
296
 
297
- #: contact_form.php:558
298
- msgid "Submit"
299
- msgstr "Enviar"
300
-
301
- #: contact_form.php:598
302
- msgid "Your name is required."
303
- msgstr "Seu nome é obrigatório"
304
-
305
- #: contact_form.php:600
306
- msgid "A proper e-mail address is required."
307
- msgstr "Um e-mail correto é obrigatório."
308
-
309
- #: contact_form.php:602
310
- msgid "Subject text is required."
311
- msgstr "O Assunto da mensagem é obrigatório."
312
-
313
- #: contact_form.php:604
314
- msgid "Message text is required."
315
- msgstr "O texto da Mensagem é obrigatório."
316
-
317
- #: contact_form.php:606
318
- #, fuzzy
319
- msgid "Phone is required field."
320
- msgstr "Seu nome é obrigatório"
321
-
322
- #: contact_form.php:607
323
- msgid "Please make corrections below and try again."
324
- msgstr ""
325
- "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
326
-
327
- #: contact_form.php:639
328
- msgid "Attachment is broken."
329
- msgstr "Impossível anexar arquivo. "
330
-
331
- #: contact_form.php:654
332
- msgid "Please complete the CAPTCHA."
333
- msgstr "Por favor, complete a resposta da charada ."
334
-
335
- #: contact_form.php:770
336
  msgid "Contact from"
337
  msgstr "Formulário de Contato"
338
 
339
- #: contact_form.php:778
340
  msgid "Email"
341
  msgstr "E-Mail"
342
 
343
- #: contact_form.php:792
344
  msgid "Site"
345
  msgstr "Site"
346
 
347
- #: contact_form.php:837
348
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
349
  msgstr ""
350
  "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! "
351
  "Favor usar um cliente mais atualizado."
352
 
353
- #: contact_form.php:891
354
  msgid "FAQ"
355
  msgstr "Perguntas Frequentes"
356
 
357
- #: contact_form.php:892
358
  msgid "Support"
359
  msgstr "Suporte"
360
 
 
 
 
 
361
  #~ msgid "E-Mail Addresse:"
362
  #~ msgstr "Indirizzo e-mail:"
363
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: de_DE\n"
24
  msgid "Read more"
25
  msgstr "Leia Mais"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Configurações"
30
 
57
  "Se você tem quaisquer perguntas, por favor entre em contato através do email "
58
  "plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Opções do formulário de contato"
63
 
65
  msgid "Contact Form"
66
  msgstr "Formulário de contato"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Nome:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Endereço de E-mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Assunto:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Mensagem:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Anexo:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Enviar"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Seu nome é obrigatório"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Um e-mail correto é obrigatório."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "O Assunto da mensagem é obrigatório."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "O texto da Mensagem é obrigatório."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Seu nome é obrigatório"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Impossível anexar arquivo. "
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Por favor, complete a resposta da charada ."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr ""
128
+ "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
129
+
130
+ #: contact_form.php:161
131
  msgid "Thank you for contacting us."
132
  msgstr "Obrigado por nos contatar"
133
 
134
+ #: contact_form.php:356
135
  msgid ""
136
  "If the option 'Redirect to page' is selected then url field should be "
137
  "fillied in the following format"
138
  msgstr ""
139
 
140
+ #: contact_form.php:365
 
 
 
 
141
  msgid "Such user is not exist. Settings are not saved."
142
  msgstr "Tal usuári não existe. Configurações não foram salvas."
143
 
144
+ #: contact_form.php:370
145
  msgid "Please input correct email. Settings are not saved."
146
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
152
+
153
+ #: contact_form.php:381
154
+ msgid "Options saved."
155
+ msgstr "Opções salvas."
156
+
157
+ #: contact_form.php:406
158
  msgid ""
159
  "If you would like to add a Contact Form to your website, just copy and put "
160
  "this shortcode onto your post or page or widget:"
162
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
163
  "copie e cole este código na sua postagem ou página ou widget:"
164
 
165
+ #: contact_form.php:407
166
  msgid ""
167
  "If information in the below fields are empty then the message will be send "
168
  "to an address which was specified during registration."
170
  "Se informações nos campos abaixo estão vazias, então as mensagens serão "
171
  "enviadas para um endereço que foi especificado durante o registro."
172
 
173
+ #: contact_form.php:411
174
  msgid "Use email of wordpress user:"
175
  msgstr "Use o email de um usuário do wordpress:"
176
 
177
+ #: contact_form.php:415
178
  msgid "Select user name"
179
  msgstr "Selecione o nome do usuário"
180
 
181
+ #: contact_form.php:420
182
  msgid "Set a name of user who will get messages from a contact form."
183
  msgstr ""
184
  "Determine um nome de usuário que receberá as mensagens enviadas pelo "
185
  "Formulário de Contato."
186
 
187
+ #: contact_form.php:424
188
  msgid "Use this email:"
189
  msgstr "Use este email:"
190
 
191
+ #: contact_form.php:427
192
  msgid "Set an email address which will be used for messages receiving."
193
  msgstr ""
194
  "Configure um endereço de email que será usado para o recebimento de "
195
  "mensagens."
196
 
197
+ #: contact_form.php:431
198
  msgid "Additional options"
199
  msgstr "Opções adicionais"
200
 
201
+ #: contact_form.php:434
202
  msgid "Display Attachment block"
203
  msgstr "Mostrar opção para anexar arquivos"
204
 
205
+ #: contact_form.php:436
206
  msgid "Users can attach files of the following types"
207
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
208
 
209
+ #: contact_form.php:440
210
  msgid "Display Attachment explanations"
211
  msgstr ""
212
 
213
+ #: contact_form.php:442
214
  msgid "Display explanations after Attachment block"
215
  msgstr ""
216
 
217
+ #: contact_form.php:446
218
  msgid "Display Send me a copy block"
219
  msgstr "Mostrar a opção Envie-me um cópia"
220
 
221
+ #: contact_form.php:452
222
  msgid "What use?"
223
  msgstr ""
224
 
225
+ #: contact_form.php:455
226
  msgid "Wp-mail"
227
  msgstr "Wp-mail"
228
 
229
+ #: contact_form.php:456
230
  msgid "To send mail you can use the wordpress wp_mail function"
231
  msgstr ""
232
 
233
+ #: contact_form.php:462
234
  msgid "Mail"
235
  msgstr "Mail"
236
 
237
+ #: contact_form.php:463
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
+ #: contact_form.php:467
242
+ #, fuzzy
243
+ msgid "Change text for 'FROM' field of the email"
244
  msgstr "Mudar de campos do formulário de contato"
245
 
246
+ #: contact_form.php:473
247
+ msgid "Select email for 'FROM' field of the email"
248
+ msgstr ""
249
+
250
+ #: contact_form.php:475
251
+ msgid ""
252
+ "In the field 'From' in the mail it will use email of that user who fills the "
253
+ "form."
254
+ msgstr ""
255
+
256
+ #: contact_form.php:477
257
+ msgid "In the field 'From' it will use this email."
258
+ msgstr ""
259
+
260
+ #: contact_form.php:481
261
  msgid "Display phone field"
262
  msgstr ""
263
 
264
+ #: contact_form.php:487
265
  msgid "Required field"
266
  msgstr ""
267
 
268
+ #: contact_form.php:489 contact_form.php:953
269
  msgid "Name"
270
  msgstr "Nome"
271
 
272
+ #: contact_form.php:490
273
  #, fuzzy
274
  msgid "E-Mail Address"
275
  msgstr "Endereço de E-mail:"
276
 
277
+ #: contact_form.php:491 contact_form.php:961
278
  msgid "Phone"
279
  msgstr ""
280
 
281
+ #: contact_form.php:492 contact_form.php:964
282
  msgid "Subject"
283
  msgstr "Assunto"
284
 
285
+ #: contact_form.php:493 contact_form.php:967
286
  msgid "Message"
287
  msgstr "Mensagem"
288
 
289
+ #: contact_form.php:497
290
  msgid "Display additional info in email"
291
  msgstr ""
292
 
293
+ #: contact_form.php:502 contact_form.php:925
294
  msgid "Sent from (ip address)"
295
  msgstr "Enviado de (Endereço IP)"
296
 
297
+ #: contact_form.php:503 contact_form.php:930
298
  msgid "Date/Time"
299
  msgstr "DAta / Hora"
300
 
301
+ #: contact_form.php:504 contact_form.php:935
302
  msgid "Coming from (referer)"
303
  msgstr "Vindo de (origem)"
304
 
305
+ #: contact_form.php:505 contact_form.php:940
306
  msgid "Using (user agent)"
307
  msgstr "Usando (cliente de email)"
308
 
309
+ #: contact_form.php:509
310
+ msgid "Language settings for label fields"
311
+ msgstr ""
312
+
313
+ #: contact_form.php:518
314
+ msgid "Add language"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:522
318
+ #, fuzzy
319
+ msgid "Change label for fields of the contact form and error messages"
320
  msgstr "Mudar rótulo para os campos no formulário de contato"
321
 
322
+ #: contact_form.php:527 contact_form.php:580
323
+ msgid "English"
324
+ msgstr ""
325
+
326
+ #: contact_form.php:542 contact_form.php:562
327
+ msgid "Error message for name field"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:543 contact_form.php:563
331
+ msgid "Error message for email field"
332
+ msgstr ""
333
+
334
+ #: contact_form.php:544 contact_form.php:564
335
+ msgid "Error message for phone field"
336
+ msgstr ""
337
+
338
+ #: contact_form.php:545 contact_form.php:565
339
+ msgid "Error message for subject field"
340
+ msgstr ""
341
+
342
+ #: contact_form.php:546 contact_form.php:566
343
+ msgid "Error message for message field"
344
+ msgstr ""
345
+
346
+ #: contact_form.php:547 contact_form.php:567
347
+ msgid "Error message for attachment field"
348
+ msgstr ""
349
+
350
+ #: contact_form.php:548 contact_form.php:568
351
+ msgid "Error message for captcha"
352
+ msgstr ""
353
+
354
+ #: contact_form.php:549 contact_form.php:569
355
+ msgid "Error message for all form"
356
+ msgstr ""
357
+
358
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
359
+ #: contact_form.php:595
360
+ msgid "Use shortcode"
361
+ msgstr ""
362
+
363
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
364
+ #: contact_form.php:595
365
+ msgid "for this language"
366
+ msgstr ""
367
+
368
+ #: contact_form.php:577
369
  msgid "Action after the send mail"
370
  msgstr ""
371
 
372
+ #: contact_form.php:579
373
  #, fuzzy
374
  msgid "Display text"
375
  msgstr "Mostrar opção para anexar arquivos"
376
 
377
+ #: contact_form.php:588 contact_form.php:594
378
  msgid "Text"
379
  msgstr ""
380
 
381
+ #: contact_form.php:601
382
  msgid "Redirect to page"
383
  msgstr ""
384
 
385
+ #: contact_form.php:602
386
  msgid "Url"
387
  msgstr ""
388
 
389
+ #: contact_form.php:607
390
  msgid "Save Changes"
391
  msgstr "Salvar mudanças"
392
 
393
+ #: contact_form.php:646
394
  msgid "Sorry, your e-mail could not be delivered."
395
  msgstr "Desculpe, seu e-mail não pode ser entregue."
396
 
397
+ #: contact_form.php:716
398
  msgid "You can attach files of the following types"
399
  msgstr "Você pode anexar arquivos do seguinte tipo"
400
 
401
+ #: contact_form.php:724
402
  msgid "Send me a copy"
403
  msgstr "Envie-me uma cópia"
404
 
405
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgid "Contact from"
407
  msgstr "Formulário de Contato"
408
 
409
+ #: contact_form.php:956
410
  msgid "Email"
411
  msgstr "E-Mail"
412
 
413
+ #: contact_form.php:970
414
  msgid "Site"
415
  msgstr "Site"
416
 
417
+ #: contact_form.php:1021
418
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
419
  msgstr ""
420
  "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! "
421
  "Favor usar um cliente mais atualizado."
422
 
423
+ #: contact_form.php:1078
424
  msgid "FAQ"
425
  msgstr "Perguntas Frequentes"
426
 
427
+ #: contact_form.php:1079
428
  msgid "Support"
429
  msgstr "Suporte"
430
 
431
+ #: contact_form.php:1125
432
+ msgid "Are you sure you want to delete this language?"
433
+ msgstr ""
434
+
435
  #~ msgid "E-Mail Addresse:"
436
  #~ msgstr "Indirizzo e-mail:"
437
 
languages/contact_form-pt_PT.mo CHANGED
Binary file
languages/contact_form-pt_PT.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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: rm_SH\n"
@@ -24,7 +24,7 @@ msgstr "Plugins ativados"
24
  msgid "Read more"
25
  msgstr "Leia Mais"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Configurações"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Se você tem quaisquer perguntas, por favor entre em contato através do email "
58
  "plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Opções do formulário de contato"
63
 
@@ -65,58 +65,96 @@ msgstr "Opções do formulário de contato"
65
  msgid "Contact Form"
66
  msgstr "Formulário de contato"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Nome:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Endereço de E-mail:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Assunto:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Mensagem:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Anexo:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Obrigado por nos contactar"
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Opções salvas."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Tal usuári não existe. Configurações não foram salvas."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,7 +162,7 @@ msgstr ""
124
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
125
  "copie e cole este código na sua postagem ou página ou widget:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
@@ -132,232 +170,268 @@ msgstr ""
132
  "Se informações nos campos abaixo estão vazias, então as mensagens serão "
133
  "enviadas para um endereço que foi especificado durante o registro."
134
 
135
- #: contact_form.php:296
136
  msgid "Use email of wordpress user:"
137
  msgstr "Use o email de um usuário do wordpress:"
138
 
139
- #: contact_form.php:302
140
  msgid "Select user name"
141
  msgstr "Selecione o nome do usuário"
142
 
143
- #: contact_form.php:307
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr ""
146
  "Determine um nome de usuário que receberá as mensagens enviadas pelo "
147
  "Formulário de Contato."
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Use este email:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr ""
156
  "Configure um endereço de email que será usado para o recebimento de "
157
  "mensagens."
158
 
159
- #: contact_form.php:321
160
  msgid "Additional options"
161
  msgstr "Opções adicionais"
162
 
163
- #: contact_form.php:324
164
  msgid "Display Attachment block"
165
  msgstr "Mostrar opção para anexar arquivos"
166
 
167
- #: contact_form.php:329
168
  msgid "Users can attach files of the following types"
169
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
170
 
171
- #: contact_form.php:333
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
- #: contact_form.php:338
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
- #: contact_form.php:342
180
  msgid "Display Send me a copy block"
181
  msgstr "Mostrar a opção Envie-me um cópia"
182
 
183
- #: contact_form.php:348
184
  msgid "What use?"
185
  msgstr ""
186
 
187
- #: contact_form.php:353
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
- #: contact_form.php:354
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
- #: contact_form.php:362
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
- #: contact_form.php:363
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
- #: contact_form.php:367
204
- msgid "Change FROM fields of the contact form"
 
 
 
 
 
 
 
 
 
 
 
205
  msgstr ""
206
 
207
- #: contact_form.php:373
 
 
 
 
208
  msgid "Display phone field"
209
  msgstr ""
210
 
211
- #: contact_form.php:379
212
  msgid "Required field"
213
  msgstr ""
214
 
215
- #: contact_form.php:388 contact_form.php:775
216
  msgid "Name"
217
  msgstr "Nome"
218
 
219
- #: contact_form.php:389
220
  #, fuzzy
221
  msgid "E-Mail Address"
222
  msgstr "Endereço de E-mail:"
223
 
224
- #: contact_form.php:390 contact_form.php:783
225
  msgid "Phone"
226
  msgstr ""
227
 
228
- #: contact_form.php:391 contact_form.php:786
229
  msgid "Subject"
230
  msgstr "Assunto"
231
 
232
- #: contact_form.php:392 contact_form.php:789
233
  msgid "Message"
234
  msgstr "Mensagem"
235
 
236
- #: contact_form.php:396
237
  msgid "Display additional info in email"
238
  msgstr ""
239
 
240
- #: contact_form.php:401 contact_form.php:747
241
  msgid "Sent from (ip address)"
242
  msgstr "Enviado de (Endereço IP)"
243
 
244
- #: contact_form.php:402 contact_form.php:752
245
  msgid "Date/Time"
246
  msgstr "DAta / Hora"
247
 
248
- #: contact_form.php:403 contact_form.php:757
249
  msgid "Coming from (referer)"
250
  msgstr "Vindo de (origem)"
251
 
252
- #: contact_form.php:404 contact_form.php:762
253
  msgid "Using (user agent)"
254
  msgstr "Usando (cliente de email)"
255
 
256
- #: contact_form.php:408
257
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
258
  msgstr "Mudar rótulo para os campos no formulário de contato"
259
 
260
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Action after the send mail"
262
  msgstr ""
263
 
264
- #: contact_form.php:424
265
  #, fuzzy
266
  msgid "Display text"
267
  msgstr "Mostrar opção para anexar arquivos"
268
 
269
- #: contact_form.php:425
270
  msgid "Text"
271
  msgstr ""
272
 
273
- #: contact_form.php:426
274
  msgid "Redirect to page"
275
  msgstr ""
276
 
277
- #: contact_form.php:427
278
  msgid "Url"
279
  msgstr ""
280
 
281
- #: contact_form.php:432
282
  msgid "Save Changes"
283
  msgstr "Salvar mudanças"
284
 
285
- #: contact_form.php:470
286
  msgid "Sorry, your e-mail could not be delivered."
287
  msgstr "Desculpe, seu e-mail não pode ser entregue."
288
 
289
- #: contact_form.php:540
290
  msgid "You can attach files of the following types"
291
  msgstr "Você pode anexar arquivos do seguinte tipo"
292
 
293
- #: contact_form.php:548
294
  msgid "Send me a copy"
295
  msgstr "Envie-me uma cópia"
296
 
297
- #: contact_form.php:558
298
- msgid "Submit"
299
- msgstr "Enviar"
300
-
301
- #: contact_form.php:598
302
- msgid "Your name is required."
303
- msgstr "Seu nome é obrigatório"
304
-
305
- #: contact_form.php:600
306
- msgid "A proper e-mail address is required."
307
- msgstr "Um e-mail correto é obrigatório."
308
-
309
- #: contact_form.php:602
310
- msgid "Subject text is required."
311
- msgstr "O Assunto da mensagem é obrigatório."
312
-
313
- #: contact_form.php:604
314
- msgid "Message text is required."
315
- msgstr "O texto da Mensagem é obrigatório."
316
-
317
- #: contact_form.php:606
318
- #, fuzzy
319
- msgid "Phone is required field."
320
- msgstr "Seu nome é obrigatório"
321
-
322
- #: contact_form.php:607
323
- msgid "Please make corrections below and try again."
324
- msgstr ""
325
- "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
326
-
327
- #: contact_form.php:639
328
- msgid "Attachment is broken."
329
- msgstr "Impossível anexar arquivo. "
330
-
331
- #: contact_form.php:654
332
- msgid "Please complete the CAPTCHA."
333
- msgstr "Por favor, complete a resposta da charada ."
334
-
335
- #: contact_form.php:770
336
  msgid "Contact from"
337
  msgstr "Formulário de Contato"
338
 
339
- #: contact_form.php:778
340
  msgid "Email"
341
  msgstr "E-Mail"
342
 
343
- #: contact_form.php:792
344
  msgid "Site"
345
  msgstr "Site"
346
 
347
- #: contact_form.php:837
348
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
349
  msgstr ""
350
  "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! "
351
  "Favor usar um cliente mais atualizado."
352
 
353
- #: contact_form.php:891
354
  msgid "FAQ"
355
  msgstr "Perguntas Frequentes"
356
 
357
- #: contact_form.php:892
358
  msgid "Support"
359
  msgstr "Suporte"
360
 
 
 
 
 
361
  #~ msgid "E-Mail Addresse:"
362
  #~ msgstr "Indirizzo e-mail:"
363
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: rm_SH\n"
24
  msgid "Read more"
25
  msgstr "Leia Mais"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Configurações"
30
 
57
  "Se você tem quaisquer perguntas, por favor entre em contato através do email "
58
  "plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Opções do formulário de contato"
63
 
65
  msgid "Contact Form"
66
  msgstr "Formulário de contato"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Nome:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Endereço de E-mail:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Assunto:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Mensagem:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Anexo:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Enviar"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Seu nome é obrigatório"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Um e-mail correto é obrigatório."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "O Assunto da mensagem é obrigatório."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "O texto da Mensagem é obrigatório."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Seu nome é obrigatório"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Impossível anexar arquivo. "
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Por favor, complete a resposta da charada ."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr ""
128
+ "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
129
+
130
+ #: contact_form.php:161
131
  msgid "Thank you for contacting us."
132
  msgstr "Obrigado por nos contactar"
133
 
134
+ #: contact_form.php:356
135
  msgid ""
136
  "If the option 'Redirect to page' is selected then url field should be "
137
  "fillied in the following format"
138
  msgstr ""
139
 
140
+ #: contact_form.php:365
 
 
 
 
141
  msgid "Such user is not exist. Settings are not saved."
142
  msgstr "Tal usuári não existe. Configurações não foram salvas."
143
 
144
+ #: contact_form.php:370
145
  msgid "Please input correct email. Settings are not saved."
146
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
152
+
153
+ #: contact_form.php:381
154
+ msgid "Options saved."
155
+ msgstr "Opções salvas."
156
+
157
+ #: contact_form.php:406
158
  msgid ""
159
  "If you would like to add a Contact Form to your website, just copy and put "
160
  "this shortcode onto your post or page or widget:"
162
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
163
  "copie e cole este código na sua postagem ou página ou widget:"
164
 
165
+ #: contact_form.php:407
166
  msgid ""
167
  "If information in the below fields are empty then the message will be send "
168
  "to an address which was specified during registration."
170
  "Se informações nos campos abaixo estão vazias, então as mensagens serão "
171
  "enviadas para um endereço que foi especificado durante o registro."
172
 
173
+ #: contact_form.php:411
174
  msgid "Use email of wordpress user:"
175
  msgstr "Use o email de um usuário do wordpress:"
176
 
177
+ #: contact_form.php:415
178
  msgid "Select user name"
179
  msgstr "Selecione o nome do usuário"
180
 
181
+ #: contact_form.php:420
182
  msgid "Set a name of user who will get messages from a contact form."
183
  msgstr ""
184
  "Determine um nome de usuário que receberá as mensagens enviadas pelo "
185
  "Formulário de Contato."
186
 
187
+ #: contact_form.php:424
188
  msgid "Use this email:"
189
  msgstr "Use este email:"
190
 
191
+ #: contact_form.php:427
192
  msgid "Set an email address which will be used for messages receiving."
193
  msgstr ""
194
  "Configure um endereço de email que será usado para o recebimento de "
195
  "mensagens."
196
 
197
+ #: contact_form.php:431
198
  msgid "Additional options"
199
  msgstr "Opções adicionais"
200
 
201
+ #: contact_form.php:434
202
  msgid "Display Attachment block"
203
  msgstr "Mostrar opção para anexar arquivos"
204
 
205
+ #: contact_form.php:436
206
  msgid "Users can attach files of the following types"
207
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
208
 
209
+ #: contact_form.php:440
210
  msgid "Display Attachment explanations"
211
  msgstr ""
212
 
213
+ #: contact_form.php:442
214
  msgid "Display explanations after Attachment block"
215
  msgstr ""
216
 
217
+ #: contact_form.php:446
218
  msgid "Display Send me a copy block"
219
  msgstr "Mostrar a opção Envie-me um cópia"
220
 
221
+ #: contact_form.php:452
222
  msgid "What use?"
223
  msgstr ""
224
 
225
+ #: contact_form.php:455
226
  msgid "Wp-mail"
227
  msgstr "Wp-mail"
228
 
229
+ #: contact_form.php:456
230
  msgid "To send mail you can use the wordpress wp_mail function"
231
  msgstr ""
232
 
233
+ #: contact_form.php:462
234
  msgid "Mail"
235
  msgstr "Mail"
236
 
237
+ #: contact_form.php:463
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
+ #: contact_form.php:467
242
+ #, fuzzy
243
+ msgid "Change text for 'FROM' field of the email"
244
+ msgstr "Mudar rótulo para os campos no formulário de contato"
245
+
246
+ #: contact_form.php:473
247
+ msgid "Select email for 'FROM' field of the email"
248
+ msgstr ""
249
+
250
+ #: contact_form.php:475
251
+ msgid ""
252
+ "In the field 'From' in the mail it will use email of that user who fills the "
253
+ "form."
254
  msgstr ""
255
 
256
+ #: contact_form.php:477
257
+ msgid "In the field 'From' it will use this email."
258
+ msgstr ""
259
+
260
+ #: contact_form.php:481
261
  msgid "Display phone field"
262
  msgstr ""
263
 
264
+ #: contact_form.php:487
265
  msgid "Required field"
266
  msgstr ""
267
 
268
+ #: contact_form.php:489 contact_form.php:953
269
  msgid "Name"
270
  msgstr "Nome"
271
 
272
+ #: contact_form.php:490
273
  #, fuzzy
274
  msgid "E-Mail Address"
275
  msgstr "Endereço de E-mail:"
276
 
277
+ #: contact_form.php:491 contact_form.php:961
278
  msgid "Phone"
279
  msgstr ""
280
 
281
+ #: contact_form.php:492 contact_form.php:964
282
  msgid "Subject"
283
  msgstr "Assunto"
284
 
285
+ #: contact_form.php:493 contact_form.php:967
286
  msgid "Message"
287
  msgstr "Mensagem"
288
 
289
+ #: contact_form.php:497
290
  msgid "Display additional info in email"
291
  msgstr ""
292
 
293
+ #: contact_form.php:502 contact_form.php:925
294
  msgid "Sent from (ip address)"
295
  msgstr "Enviado de (Endereço IP)"
296
 
297
+ #: contact_form.php:503 contact_form.php:930
298
  msgid "Date/Time"
299
  msgstr "DAta / Hora"
300
 
301
+ #: contact_form.php:504 contact_form.php:935
302
  msgid "Coming from (referer)"
303
  msgstr "Vindo de (origem)"
304
 
305
+ #: contact_form.php:505 contact_form.php:940
306
  msgid "Using (user agent)"
307
  msgstr "Usando (cliente de email)"
308
 
309
+ #: contact_form.php:509
310
+ msgid "Language settings for label fields"
311
+ msgstr ""
312
+
313
+ #: contact_form.php:518
314
+ msgid "Add language"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:522
318
+ #, fuzzy
319
+ msgid "Change label for fields of the contact form and error messages"
320
  msgstr "Mudar rótulo para os campos no formulário de contato"
321
 
322
+ #: contact_form.php:527 contact_form.php:580
323
+ msgid "English"
324
+ msgstr ""
325
+
326
+ #: contact_form.php:542 contact_form.php:562
327
+ msgid "Error message for name field"
328
+ msgstr ""
329
+
330
+ #: contact_form.php:543 contact_form.php:563
331
+ msgid "Error message for email field"
332
+ msgstr ""
333
+
334
+ #: contact_form.php:544 contact_form.php:564
335
+ msgid "Error message for phone field"
336
+ msgstr ""
337
+
338
+ #: contact_form.php:545 contact_form.php:565
339
+ msgid "Error message for subject field"
340
+ msgstr ""
341
+
342
+ #: contact_form.php:546 contact_form.php:566
343
+ msgid "Error message for message field"
344
+ msgstr ""
345
+
346
+ #: contact_form.php:547 contact_form.php:567
347
+ msgid "Error message for attachment field"
348
+ msgstr ""
349
+
350
+ #: contact_form.php:548 contact_form.php:568
351
+ msgid "Error message for captcha"
352
+ msgstr ""
353
+
354
+ #: contact_form.php:549 contact_form.php:569
355
+ msgid "Error message for all form"
356
+ msgstr ""
357
+
358
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
359
+ #: contact_form.php:595
360
+ msgid "Use shortcode"
361
+ msgstr ""
362
+
363
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
364
+ #: contact_form.php:595
365
+ msgid "for this language"
366
+ msgstr ""
367
+
368
+ #: contact_form.php:577
369
  msgid "Action after the send mail"
370
  msgstr ""
371
 
372
+ #: contact_form.php:579
373
  #, fuzzy
374
  msgid "Display text"
375
  msgstr "Mostrar opção para anexar arquivos"
376
 
377
+ #: contact_form.php:588 contact_form.php:594
378
  msgid "Text"
379
  msgstr ""
380
 
381
+ #: contact_form.php:601
382
  msgid "Redirect to page"
383
  msgstr ""
384
 
385
+ #: contact_form.php:602
386
  msgid "Url"
387
  msgstr ""
388
 
389
+ #: contact_form.php:607
390
  msgid "Save Changes"
391
  msgstr "Salvar mudanças"
392
 
393
+ #: contact_form.php:646
394
  msgid "Sorry, your e-mail could not be delivered."
395
  msgstr "Desculpe, seu e-mail não pode ser entregue."
396
 
397
+ #: contact_form.php:716
398
  msgid "You can attach files of the following types"
399
  msgstr "Você pode anexar arquivos do seguinte tipo"
400
 
401
+ #: contact_form.php:724
402
  msgid "Send me a copy"
403
  msgstr "Envie-me uma cópia"
404
 
405
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  msgid "Contact from"
407
  msgstr "Formulário de Contato"
408
 
409
+ #: contact_form.php:956
410
  msgid "Email"
411
  msgstr "E-Mail"
412
 
413
+ #: contact_form.php:970
414
  msgid "Site"
415
  msgstr "Site"
416
 
417
+ #: contact_form.php:1021
418
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
419
  msgstr ""
420
  "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! "
421
  "Favor usar um cliente mais atualizado."
422
 
423
+ #: contact_form.php:1078
424
  msgid "FAQ"
425
  msgstr "Perguntas Frequentes"
426
 
427
+ #: contact_form.php:1079
428
  msgid "Support"
429
  msgstr "Suporte"
430
 
431
+ #: contact_form.php:1125
432
+ msgid "Are you sure you want to delete this language?"
433
+ msgstr ""
434
+
435
  #~ msgid "E-Mail Addresse:"
436
  #~ msgstr "Indirizzo e-mail:"
437
 
languages/contact_form-ro_RO.mo CHANGED
Binary file
languages/contact_form-ro_RO.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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: Cosmin Berescu <b.cosmin@gmx.net>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ro_RO\n"
@@ -24,7 +24,7 @@ msgstr "Plugin-uri activate"
24
  msgid "Read more"
25
  msgstr "Citeste mai multe"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Setari"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Daca aveti intrebari, va rugam sa ne contactati folosind plugin@bestwebsoft."
58
  "com sau completati formularul de contact de la noi de pe site"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Optiuni formular de contact"
63
 
@@ -65,40 +65,72 @@ msgstr "Optiuni formular de contact"
65
  msgid "Contact Form"
66
  msgstr "Formular de contact"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Nume:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Adresa email:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Subiect:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Mesaj:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Atasament:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Va multumim ca ati luat legatura cu noi."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
@@ -106,19 +138,24 @@ msgstr ""
106
  "Daca optiunea 'Redirectioneaza la pagina' este selectata, atunci campul url "
107
  "ar trebui completat in urmatorul format"
108
 
109
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
110
- msgid "Options saved."
111
- msgstr "Optiuni salvate."
112
-
113
- #: contact_form.php:268
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Acest utilizator nu exista. Setarile nu au fost salvate."
116
 
117
- #: contact_form.php:278
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Va rugam introduceti un email corect. Setarile nu au fost salvate."
120
 
121
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
  "If you would like to add a Contact Form to your website, just copy and put "
124
  "this shortcode onto your post or page or widget:"
@@ -126,7 +163,7 @@ msgstr ""
126
  "Daca ati dori sa adaugati un Formular de Contact pe situl dumneavoastra, "
127
  "copiati si lipiti acest cod intr-o pagina sau widget:"
128
 
129
- #: contact_form.php:292
130
  msgid ""
131
  "If information in the below fields are empty then the message will be send "
132
  "to an address which was specified during registration."
@@ -134,226 +171,263 @@ msgstr ""
134
  "Daca informatia din campurile urmatoare este nula, atunci mesajul va fi "
135
  "trimis la adresa specificata in timpul procesului de inregistrare."
136
 
137
- #: contact_form.php:296
138
  msgid "Use email of wordpress user:"
139
  msgstr "Foloseste email-ul utilizatorului Wordpress:"
140
 
141
- #: contact_form.php:302
142
  msgid "Select user name"
143
  msgstr "Alege numele utilizatorului"
144
 
145
- #: contact_form.php:307
146
  msgid "Set a name of user who will get messages from a contact form."
147
  msgstr ""
148
  "Alege numele utilizatorului care va primi mesaje de la formularul de contact."
149
 
150
- #: contact_form.php:311
151
  msgid "Use this email:"
152
  msgstr "Foloseste acest email:"
153
 
154
- #: contact_form.php:317
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Alege o adresa email care sa fie folosita pentru primirea mesajelor."
157
 
158
- #: contact_form.php:321
159
  msgid "Additional options"
160
  msgstr "Optiuni aditionale"
161
 
162
- #: contact_form.php:324
163
  msgid "Display Attachment block"
164
  msgstr "Afisaza blocul de Atasamente"
165
 
166
- #: contact_form.php:329
167
  msgid "Users can attach files of the following types"
168
  msgstr "Utilizatorii pot atasa fisiere de urmatoarele tipuri"
169
 
170
- #: contact_form.php:333
171
  msgid "Display Attachment explanations"
172
  msgstr "Afisaza explicatii despre Atasamente"
173
 
174
- #: contact_form.php:338
175
  msgid "Display explanations after Attachment block"
176
  msgstr "Afisaza explicatiile dupa blocul Atasament"
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "Afisaza blocul Trimite-mi o copie"
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr "Ce sa folosesc?"
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr "Pentru a trimite mailuri puteti folosi functia Wordpress wp_mail"
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr "Pentru a trimite mailuri puteti folosi functia PHP mail"
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "Modifica linia DE LA din formularul de contact"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "Nume"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "Adresa email:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Subiect"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Mesaj"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr "Afisaza informatii aditionale in email"
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Trimis de la (adresa IP)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Data/Ora"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Venind de la (referinta)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "Folosind (Agent)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Schimba etichetele pentru campurile formularului de contact"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr "Actiune dupa trimiterea mailului"
262
 
263
- #: contact_form.php:424
264
  msgid "Display text"
265
  msgstr "Afisaza text"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr "Text"
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr "Redirectioneaza la pagina"
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr "Url"
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "Salveaza schimbarile"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "Ne pare rau, mailul dumneavoastra nu a putut fi livrat."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "Puteti atasa fisiere de urmatoarele tipuri"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "Trimite-mi o copie"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "Trimite"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "Numele dumneavoastra este necesar."
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "O adresa email valida este necesara."
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "Subiectul mesajului este necesar"
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "Textul mesajului este necesar."
314
-
315
- #: contact_form.php:606
316
- #, fuzzy
317
- msgid "Phone is required field."
318
- msgstr "Numele dumneavoastra este necesar."
319
-
320
- #: contact_form.php:607
321
- msgid "Please make corrections below and try again."
322
- msgstr "Va rugam sa realizati corecturile de mai jos si sa incercati din nou."
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "Atasamentul este stricat."
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "Va rugam completati CAPTCHA-ul"
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "Formular de contact"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "Email"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "Site"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr ""
347
  "Daca vedeti acest MIME atunci clientul dumneavoastra nu accepta tipuri MIME!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "FAQ"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Suport tehnic"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Indirizzo e-mail:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: Cosmin Berescu <b.cosmin@gmx.net>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ro_RO\n"
24
  msgid "Read more"
25
  msgstr "Citeste mai multe"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Setari"
30
 
57
  "Daca aveti intrebari, va rugam sa ne contactati folosind plugin@bestwebsoft."
58
  "com sau completati formularul de contact de la noi de pe site"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Optiuni formular de contact"
63
 
65
  msgid "Contact Form"
66
  msgstr "Formular de contact"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Nume:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Adresa email:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Subiect:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Mesaj:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Atasament:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Trimite"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Numele dumneavoastra este necesar."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "O adresa email valida este necesara."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Subiectul mesajului este necesar"
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Textul mesajului este necesar."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Numele dumneavoastra este necesar."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Atasamentul este stricat."
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Va rugam completati CAPTCHA-ul"
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Va rugam sa realizati corecturile de mai jos si sa incercati din nou."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Va multumim ca ati luat legatura cu noi."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
138
  "Daca optiunea 'Redirectioneaza la pagina' este selectata, atunci campul url "
139
  "ar trebui completat in urmatorul format"
140
 
141
+ #: contact_form.php:365
 
 
 
 
142
  msgid "Such user is not exist. Settings are not saved."
143
  msgstr "Acest utilizator nu exista. Setarile nu au fost salvate."
144
 
145
+ #: contact_form.php:370
146
  msgid "Please input correct email. Settings are not saved."
147
  msgstr "Va rugam introduceti un email corect. Setarile nu au fost salvate."
148
 
149
+ #: contact_form.php:376
150
+ #, fuzzy
151
+ msgid "Please input correct 'FROM' email. Settings are not saved."
152
+ msgstr "Va rugam introduceti un email corect. Setarile nu au fost salvate."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Optiuni salvate."
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Daca ati dori sa adaugati un Formular de Contact pe situl dumneavoastra, "
164
  "copiati si lipiti acest cod intr-o pagina sau widget:"
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Daca informatia din campurile urmatoare este nula, atunci mesajul va fi "
172
  "trimis la adresa specificata in timpul procesului de inregistrare."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Foloseste email-ul utilizatorului Wordpress:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Alege numele utilizatorului"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr ""
185
  "Alege numele utilizatorului care va primi mesaje de la formularul de contact."
186
 
187
+ #: contact_form.php:424
188
  msgid "Use this email:"
189
  msgstr "Foloseste acest email:"
190
 
191
+ #: contact_form.php:427
192
  msgid "Set an email address which will be used for messages receiving."
193
  msgstr "Alege o adresa email care sa fie folosita pentru primirea mesajelor."
194
 
195
+ #: contact_form.php:431
196
  msgid "Additional options"
197
  msgstr "Optiuni aditionale"
198
 
199
+ #: contact_form.php:434
200
  msgid "Display Attachment block"
201
  msgstr "Afisaza blocul de Atasamente"
202
 
203
+ #: contact_form.php:436
204
  msgid "Users can attach files of the following types"
205
  msgstr "Utilizatorii pot atasa fisiere de urmatoarele tipuri"
206
 
207
+ #: contact_form.php:440
208
  msgid "Display Attachment explanations"
209
  msgstr "Afisaza explicatii despre Atasamente"
210
 
211
+ #: contact_form.php:442
212
  msgid "Display explanations after Attachment block"
213
  msgstr "Afisaza explicatiile dupa blocul Atasament"
214
 
215
+ #: contact_form.php:446
216
  msgid "Display Send me a copy block"
217
  msgstr "Afisaza blocul Trimite-mi o copie"
218
 
219
+ #: contact_form.php:452
220
  msgid "What use?"
221
  msgstr "Ce sa folosesc?"
222
 
223
+ #: contact_form.php:455
224
  msgid "Wp-mail"
225
  msgstr "Wp-mail"
226
 
227
+ #: contact_form.php:456
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr "Pentru a trimite mailuri puteti folosi functia Wordpress wp_mail"
230
 
231
+ #: contact_form.php:462
232
  msgid "Mail"
233
  msgstr "Mail"
234
 
235
+ #: contact_form.php:463
236
  msgid "To send mail you can use the php mail function"
237
  msgstr "Pentru a trimite mailuri puteti folosi functia PHP mail"
238
 
239
+ #: contact_form.php:467
240
+ #, fuzzy
241
+ msgid "Change text for 'FROM' field of the email"
242
  msgstr "Modifica linia DE LA din formularul de contact"
243
 
244
+ #: contact_form.php:473
245
+ msgid "Select email for 'FROM' field of the email"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:475
249
+ msgid ""
250
+ "In the field 'From' in the mail it will use email of that user who fills the "
251
+ "form."
252
+ msgstr ""
253
+
254
+ #: contact_form.php:477
255
+ msgid "In the field 'From' it will use this email."
256
+ msgstr ""
257
+
258
+ #: contact_form.php:481
259
  msgid "Display phone field"
260
  msgstr ""
261
 
262
+ #: contact_form.php:487
263
  msgid "Required field"
264
  msgstr ""
265
 
266
+ #: contact_form.php:489 contact_form.php:953
267
  msgid "Name"
268
  msgstr "Nume"
269
 
270
+ #: contact_form.php:490
271
  #, fuzzy
272
  msgid "E-Mail Address"
273
  msgstr "Adresa email:"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr ""
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "Subiect"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "Mesaj"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr "Afisaza informatii aditionale in email"
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "Trimis de la (adresa IP)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "Data/Ora"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Venind de la (referinta)"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "Folosind (Agent)"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "Schimba etichetele pentru campurile formularului de contact"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr "Actiune dupa trimiterea mailului"
369
 
370
+ #: contact_form.php:579
371
  msgid "Display text"
372
  msgstr "Afisaza text"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr "Text"
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr "Redirectioneaza la pagina"
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr "Url"
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "Salveaza schimbarile"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "Ne pare rau, mailul dumneavoastra nu a putut fi livrat."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "Puteti atasa fisiere de urmatoarele tipuri"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "Trimite-mi o copie"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "Formular de contact"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "Email"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "Site"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr ""
417
  "Daca vedeti acest MIME atunci clientul dumneavoastra nu accepta tipuri MIME!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "FAQ"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "Suport tehnic"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "Indirizzo e-mail:"
433
 
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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -24,7 +24,7 @@ msgstr "Активированные плагины"
24
  msgid "Read more"
25
  msgstr "Читать далее"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или "
58
  "заполните контактную форму на нашем сайте"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Настройки Контактной Формы"
63
 
@@ -65,40 +65,72 @@ msgstr "Настройки Контактной Формы"
65
  msgid "Contact Form"
66
  msgstr "Контактная Форма"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Имя:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail адрес:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr "Телефон:"
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Тема:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Сообщение:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Прикрепить файл:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Спасибо за контакт с нами."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
@@ -106,19 +138,24 @@ msgstr ""
106
  "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено "
107
  "в следующем формате"
108
 
109
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
110
- msgid "Options saved."
111
- msgstr "Опции сохранены"
112
-
113
- #: contact_form.php:268
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Данный пользователь не найден. Настройки не сохранены"
116
 
117
- #: contact_form.php:278
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
120
 
121
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
  "If you would like to add a Contact Form to your website, just copy and put "
124
  "this shortcode onto your post or page or widget:"
@@ -126,7 +163,7 @@ msgstr ""
126
  "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только "
127
  "скопировать и вставить шорткод в контент страницы или поста или виджета:"
128
 
129
- #: contact_form.php:292
130
  msgid ""
131
  "If information in the below fields are empty then the message will be send "
132
  "to an address which was specified during registration."
@@ -134,227 +171,264 @@ msgstr ""
134
  "Если информация в полях ниже отсутствует, соощения будут оправлены на email "
135
  "адрес, который был указан при регистрации сайта."
136
 
137
- #: contact_form.php:296
138
  msgid "Use email of wordpress user:"
139
  msgstr "Email пользователя сайта:"
140
 
141
- #: contact_form.php:302
142
  msgid "Select user name"
143
  msgstr "Выберите имя пользователя"
144
 
145
- #: contact_form.php:307
146
  msgid "Set a name of user who will get messages from a contact form."
147
  msgstr ""
148
  "Укажите логин пользователя, который будет получать сообщения контактной "
149
  "формы."
150
 
151
- #: contact_form.php:311
152
  msgid "Use this email:"
153
  msgstr "Использовать этот email:"
154
 
155
- #: contact_form.php:317
156
  msgid "Set an email address which will be used for messages receiving."
157
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
158
 
159
- #: contact_form.php:321
160
  msgid "Additional options"
161
  msgstr "Дополнительные настройки"
162
 
163
- #: contact_form.php:324
164
  msgid "Display Attachment block"
165
  msgstr "Отобразить блок Прикрепить файл"
166
 
167
- #: contact_form.php:329
168
  msgid "Users can attach files of the following types"
169
  msgstr "Пользователи могут прикрепить файлы таких типов"
170
 
171
- #: contact_form.php:333
172
  msgid "Display Attachment explanations"
173
  msgstr "Отобразить пояснения для блока Прикрепить файл"
174
 
175
- #: contact_form.php:338
176
  msgid "Display explanations after Attachment block"
177
  msgstr "Отобразить пояснения после блока Прикрепить файл"
178
 
179
- #: contact_form.php:342
180
  msgid "Display Send me a copy block"
181
  msgstr "Отобразить блок Отправить мне копию"
182
 
183
- #: contact_form.php:348
184
  msgid "What use?"
185
  msgstr "Что использовать?"
186
 
187
- #: contact_form.php:353
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
- #: contact_form.php:354
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
194
 
195
- #: contact_form.php:362
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
- #: contact_form.php:363
200
  msgid "To send mail you can use the php mail function"
201
  msgstr "Для отправки почты вы можете использовать функцию php mail"
202
 
203
- #: contact_form.php:367
204
- msgid "Change FROM fields of the contact form"
 
205
  msgstr "Изменить поле ОТ в контактной форме"
206
 
207
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  msgid "Display phone field"
209
  msgstr "Отобразить поле для телефона"
210
 
211
- #: contact_form.php:379
212
  msgid "Required field"
213
  msgstr "Обязательные поля"
214
 
215
- #: contact_form.php:388 contact_form.php:775
216
  msgid "Name"
217
  msgstr "Имя"
218
 
219
- #: contact_form.php:389
220
  msgid "E-Mail Address"
221
  msgstr "E-mail адрес"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr "Телефон"
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Тема"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Сообщение"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr "Отображение дополнительной информации в письме"
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Отправлено от (ip адрес)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Дата/Время"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Пришло из (реферер)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "Используя (user agent)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Изменить названия полей контактной формы"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr "Действие после отправки письма"
262
 
263
- #: contact_form.php:424
264
  msgid "Display text"
265
  msgstr "Отобразить текст"
266
 
267
- #: contact_form.php:425
268
  msgid "Text"
269
  msgstr "Текст"
270
 
271
- #: contact_form.php:426
272
  msgid "Redirect to page"
273
  msgstr "Перенаправление на страницу"
274
 
275
- #: contact_form.php:427
276
  msgid "Url"
277
  msgstr "Урл"
278
 
279
- #: contact_form.php:432
280
  msgid "Save Changes"
281
  msgstr "Save Changes"
282
 
283
- #: contact_form.php:470
284
  msgid "Sorry, your e-mail could not be delivered."
285
  msgstr "Извините, ваш email не может быть отправлен."
286
 
287
- #: contact_form.php:540
288
  msgid "You can attach files of the following types"
289
  msgstr "Пользователи могут прикрепить файлы таких типов"
290
 
291
- #: contact_form.php:548
292
  msgid "Send me a copy"
293
  msgstr "Отправить мне копию"
294
 
295
- #: contact_form.php:558
296
- msgid "Submit"
297
- msgstr "Отправить"
298
-
299
- #: contact_form.php:598
300
- msgid "Your name is required."
301
- msgstr "Ваше имя - это обязательное поле."
302
-
303
- #: contact_form.php:600
304
- msgid "A proper e-mail address is required."
305
- msgstr "Поле e-mail адреса - обязательное для заполнения."
306
-
307
- #: contact_form.php:602
308
- msgid "Subject text is required."
309
- msgstr "Поле Тема - обязательное поле."
310
-
311
- #: contact_form.php:604
312
- msgid "Message text is required."
313
- msgstr "Поле Сообщение - обязательное поле."
314
-
315
- #: contact_form.php:606
316
- msgid "Phone is required field."
317
- msgstr "Телефон - это обязательное поле."
318
-
319
- #: contact_form.php:607
320
- msgid "Please make corrections below and try again."
321
- msgstr ""
322
- "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
323
-
324
- #: contact_form.php:639
325
- msgid "Attachment is broken."
326
- msgstr "Прикрепленный тип файла не поддерживается"
327
-
328
- #: contact_form.php:654
329
- msgid "Please complete the CAPTCHA."
330
- msgstr "Пожалуйста, заполните КАПЧУ."
331
-
332
- #: contact_form.php:770
333
  msgid "Contact from"
334
  msgstr "Контактная Форма"
335
 
336
- #: contact_form.php:778
337
  msgid "Email"
338
  msgstr "Email"
339
 
340
- #: contact_form.php:792
341
  msgid "Site"
342
  msgstr "Сайт"
343
 
344
- #: contact_form.php:837
345
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
346
  msgstr ""
347
  "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает "
348
  "MIME тип!"
349
 
350
- #: contact_form.php:891
351
  msgid "FAQ"
352
  msgstr "FAQ"
353
 
354
- #: contact_form.php:892
355
  msgid "Support"
356
  msgstr "Поддержка"
357
 
 
 
 
 
358
  #~ msgid "E-Mail Addresse:"
359
  #~ msgstr "E-mail адрес:"
360
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
24
  msgid "Read more"
25
  msgstr "Читать далее"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
57
  "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или "
58
  "заполните контактную форму на нашем сайте"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Настройки Контактной Формы"
63
 
65
  msgid "Contact Form"
66
  msgstr "Контактная Форма"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Имя:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-mail адрес:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr "Телефон:"
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Тема:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Сообщение:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Прикрепить файл:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Отправить"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Ваше имя - это обязательное поле."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Поле e-mail адреса - обязательное для заполнения."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Поле Тема - обязательное поле."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Поле Сообщение - обязательное поле."
111
+
112
+ #: contact_form.php:156
113
+ msgid "Phone is required field."
114
+ msgstr "Телефон - это обязательное поле."
115
+
116
+ #: contact_form.php:157
117
+ msgid "Attachment is broken."
118
+ msgstr "Прикрепленный тип файла не поддерживается"
119
+
120
+ #: contact_form.php:158
121
+ msgid "Please complete the CAPTCHA."
122
+ msgstr "Пожалуйста, заполните КАПЧУ."
123
+
124
+ #: contact_form.php:159
125
+ msgid "Please make corrections below and try again."
126
+ msgstr ""
127
+ "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Спасибо за контакт с нами."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
138
  "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено "
139
  "в следующем формате"
140
 
141
+ #: contact_form.php:365
 
 
 
 
142
  msgid "Such user is not exist. Settings are not saved."
143
  msgstr "Данный пользователь не найден. Настройки не сохранены"
144
 
145
+ #: contact_form.php:370
146
  msgid "Please input correct email. Settings are not saved."
147
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
148
 
149
+ #: contact_form.php:376
150
+ #, fuzzy
151
+ msgid "Please input correct 'FROM' email. Settings are not saved."
152
+ msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Опции сохранены"
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только "
164
  "скопировать и вставить шорткод в контент страницы или поста или виджета:"
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Если информация в полях ниже отсутствует, соощения будут оправлены на email "
172
  "адрес, который был указан при регистрации сайта."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Email пользователя сайта:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Выберите имя пользователя"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr ""
185
  "Укажите логин пользователя, который будет получать сообщения контактной "
186
  "формы."
187
 
188
+ #: contact_form.php:424
189
  msgid "Use this email:"
190
  msgstr "Использовать этот email:"
191
 
192
+ #: contact_form.php:427
193
  msgid "Set an email address which will be used for messages receiving."
194
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
195
 
196
+ #: contact_form.php:431
197
  msgid "Additional options"
198
  msgstr "Дополнительные настройки"
199
 
200
+ #: contact_form.php:434
201
  msgid "Display Attachment block"
202
  msgstr "Отобразить блок Прикрепить файл"
203
 
204
+ #: contact_form.php:436
205
  msgid "Users can attach files of the following types"
206
  msgstr "Пользователи могут прикрепить файлы таких типов"
207
 
208
+ #: contact_form.php:440
209
  msgid "Display Attachment explanations"
210
  msgstr "Отобразить пояснения для блока Прикрепить файл"
211
 
212
+ #: contact_form.php:442
213
  msgid "Display explanations after Attachment block"
214
  msgstr "Отобразить пояснения после блока Прикрепить файл"
215
 
216
+ #: contact_form.php:446
217
  msgid "Display Send me a copy block"
218
  msgstr "Отобразить блок Отправить мне копию"
219
 
220
+ #: contact_form.php:452
221
  msgid "What use?"
222
  msgstr "Что использовать?"
223
 
224
+ #: contact_form.php:455
225
  msgid "Wp-mail"
226
  msgstr "Wp-mail"
227
 
228
+ #: contact_form.php:456
229
  msgid "To send mail you can use the wordpress wp_mail function"
230
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
231
 
232
+ #: contact_form.php:462
233
  msgid "Mail"
234
  msgstr "Mail"
235
 
236
+ #: contact_form.php:463
237
  msgid "To send mail you can use the php mail function"
238
  msgstr "Для отправки почты вы можете использовать функцию php mail"
239
 
240
+ #: contact_form.php:467
241
+ #, fuzzy
242
+ msgid "Change text for 'FROM' field of the email"
243
  msgstr "Изменить поле ОТ в контактной форме"
244
 
245
+ #: contact_form.php:473
246
+ msgid "Select email for 'FROM' field of the email"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:475
250
+ msgid ""
251
+ "In the field 'From' in the mail it will use email of that user who fills the "
252
+ "form."
253
+ msgstr ""
254
+
255
+ #: contact_form.php:477
256
+ msgid "In the field 'From' it will use this email."
257
+ msgstr ""
258
+
259
+ #: contact_form.php:481
260
  msgid "Display phone field"
261
  msgstr "Отобразить поле для телефона"
262
 
263
+ #: contact_form.php:487
264
  msgid "Required field"
265
  msgstr "Обязательные поля"
266
 
267
+ #: contact_form.php:489 contact_form.php:953
268
  msgid "Name"
269
  msgstr "Имя"
270
 
271
+ #: contact_form.php:490
272
  msgid "E-Mail Address"
273
  msgstr "E-mail адрес"
274
 
275
+ #: contact_form.php:491 contact_form.php:961
276
  msgid "Phone"
277
  msgstr "Телефон"
278
 
279
+ #: contact_form.php:492 contact_form.php:964
280
  msgid "Subject"
281
  msgstr "Тема"
282
 
283
+ #: contact_form.php:493 contact_form.php:967
284
  msgid "Message"
285
  msgstr "Сообщение"
286
 
287
+ #: contact_form.php:497
288
  msgid "Display additional info in email"
289
  msgstr "Отображение дополнительной информации в письме"
290
 
291
+ #: contact_form.php:502 contact_form.php:925
292
  msgid "Sent from (ip address)"
293
  msgstr "Отправлено от (ip адрес)"
294
 
295
+ #: contact_form.php:503 contact_form.php:930
296
  msgid "Date/Time"
297
  msgstr "Дата/Время"
298
 
299
+ #: contact_form.php:504 contact_form.php:935
300
  msgid "Coming from (referer)"
301
  msgstr "Пришло из (реферер)"
302
 
303
+ #: contact_form.php:505 contact_form.php:940
304
  msgid "Using (user agent)"
305
  msgstr "Используя (user agent)"
306
 
307
+ #: contact_form.php:509
308
+ msgid "Language settings for label fields"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:518
312
+ msgid "Add language"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:522
316
+ #, fuzzy
317
+ msgid "Change label for fields of the contact form and error messages"
318
  msgstr "Изменить названия полей контактной формы"
319
 
320
+ #: contact_form.php:527 contact_form.php:580
321
+ msgid "English"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:542 contact_form.php:562
325
+ msgid "Error message for name field"
326
+ msgstr ""
327
+
328
+ #: contact_form.php:543 contact_form.php:563
329
+ msgid "Error message for email field"
330
+ msgstr ""
331
+
332
+ #: contact_form.php:544 contact_form.php:564
333
+ msgid "Error message for phone field"
334
+ msgstr ""
335
+
336
+ #: contact_form.php:545 contact_form.php:565
337
+ msgid "Error message for subject field"
338
+ msgstr ""
339
+
340
+ #: contact_form.php:546 contact_form.php:566
341
+ msgid "Error message for message field"
342
+ msgstr ""
343
+
344
+ #: contact_form.php:547 contact_form.php:567
345
+ msgid "Error message for attachment field"
346
+ msgstr ""
347
+
348
+ #: contact_form.php:548 contact_form.php:568
349
+ msgid "Error message for captcha"
350
+ msgstr ""
351
+
352
+ #: contact_form.php:549 contact_form.php:569
353
+ msgid "Error message for all form"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "Use shortcode"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
362
+ #: contact_form.php:595
363
+ msgid "for this language"
364
+ msgstr ""
365
+
366
+ #: contact_form.php:577
367
  msgid "Action after the send mail"
368
  msgstr "Действие после отправки письма"
369
 
370
+ #: contact_form.php:579
371
  msgid "Display text"
372
  msgstr "Отобразить текст"
373
 
374
+ #: contact_form.php:588 contact_form.php:594
375
  msgid "Text"
376
  msgstr "Текст"
377
 
378
+ #: contact_form.php:601
379
  msgid "Redirect to page"
380
  msgstr "Перенаправление на страницу"
381
 
382
+ #: contact_form.php:602
383
  msgid "Url"
384
  msgstr "Урл"
385
 
386
+ #: contact_form.php:607
387
  msgid "Save Changes"
388
  msgstr "Save Changes"
389
 
390
+ #: contact_form.php:646
391
  msgid "Sorry, your e-mail could not be delivered."
392
  msgstr "Извините, ваш email не может быть отправлен."
393
 
394
+ #: contact_form.php:716
395
  msgid "You can attach files of the following types"
396
  msgstr "Пользователи могут прикрепить файлы таких типов"
397
 
398
+ #: contact_form.php:724
399
  msgid "Send me a copy"
400
  msgstr "Отправить мне копию"
401
 
402
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Contact from"
404
  msgstr "Контактная Форма"
405
 
406
+ #: contact_form.php:956
407
  msgid "Email"
408
  msgstr "Email"
409
 
410
+ #: contact_form.php:970
411
  msgid "Site"
412
  msgstr "Сайт"
413
 
414
+ #: contact_form.php:1021
415
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
416
  msgstr ""
417
  "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает "
418
  "MIME тип!"
419
 
420
+ #: contact_form.php:1078
421
  msgid "FAQ"
422
  msgstr "FAQ"
423
 
424
+ #: contact_form.php:1079
425
  msgid "Support"
426
  msgstr "Поддержка"
427
 
428
+ #: contact_form.php:1125
429
+ msgid "Are you sure you want to delete this language?"
430
+ msgstr ""
431
+
432
  #~ msgid "E-Mail Addresse:"
433
  #~ msgstr "E-mail адрес:"
434
 
languages/contact_form-sr_RS.mo CHANGED
Binary file
languages/contact_form-sr_RS.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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: Radovan Georgijevic <radovan@georgijevic.info>\n"
8
  "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
  "Language: sr_RS\n"
@@ -24,7 +24,7 @@ msgstr "Aktivni dodaci"
24
  msgid "Read more"
25
  msgstr "Čitaj više"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Podešavanja"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com "
58
  "ili popunite kontakt formu na našem sajtu"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Opcije Kontakt Forme"
63
 
@@ -65,40 +65,72 @@ msgstr "Opcije Kontakt Forme"
65
  msgid "Contact Form"
66
  msgstr "Kontakt Forma"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Ime:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail Adresa:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Tema:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Poruka:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Priveži fajl:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Hvala što ste nas kontaktirali."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
@@ -106,19 +138,24 @@ msgstr ""
106
  "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete "
107
  "popuniti u sledećem formatu"
108
 
109
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
110
- msgid "Options saved."
111
- msgstr "Opcije sačuvane"
112
-
113
- #: contact_form.php:268
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
116
 
117
- #: contact_form.php:278
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Molim vam unesite ispravan mejl. Podešavanja nisu sačuvana."
120
 
121
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
  "If you would like to add a Contact Form to your website, just copy and put "
124
  "this shortcode onto your post or page or widget:"
@@ -126,7 +163,7 @@ msgstr ""
126
  "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte "
127
  "ovaj kratak kod na vašu stranu, članak ili vidžet:"
128
 
129
- #: contact_form.php:292
130
  msgid ""
131
  "If information in the below fields are empty then the message will be send "
132
  "to an address which was specified during registration."
@@ -134,226 +171,263 @@ msgstr ""
134
  "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu "
135
  "koja je navedena prilikom registracije."
136
 
137
- #: contact_form.php:296
138
  msgid "Use email of wordpress user:"
139
  msgstr "Koristi mejl wordpress kosirnika:"
140
 
141
- #: contact_form.php:302
142
  msgid "Select user name"
143
  msgstr "Odaberi korisničko ime"
144
 
145
- #: contact_form.php:307
146
  msgid "Set a name of user who will get messages from a contact form."
147
  msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
148
 
149
- #: contact_form.php:311
150
  msgid "Use this email:"
151
  msgstr "Koristi ovaj mejl:"
152
 
153
- #: contact_form.php:317
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
156
 
157
- #: contact_form.php:321
158
  msgid "Additional options"
159
  msgstr "Dodatne opcije"
160
 
161
- #: contact_form.php:324
162
  msgid "Display Attachment block"
163
  msgstr "Prikaži blok privezaka"
164
 
165
- #: contact_form.php:329
166
  msgid "Users can attach files of the following types"
167
  msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
168
 
169
- #: contact_form.php:333
170
  msgid "Display Attachment explanations"
171
  msgstr "Prikaži objašnjenja privezaka"
172
 
173
- #: contact_form.php:338
174
  msgid "Display explanations after Attachment block"
175
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
176
 
177
- #: contact_form.php:342
178
  msgid "Display Send me a copy block"
179
  msgstr "Prikaži Pošalji mi kopiju blok"
180
 
181
- #: contact_form.php:348
182
  msgid "What use?"
183
  msgstr "Šta koritite?"
184
 
185
- #: contact_form.php:353
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
- #: contact_form.php:354
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
192
 
193
- #: contact_form.php:362
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
- #: contact_form.php:363
198
  msgid "To send mail you can use the php mail function"
199
  msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
200
 
201
- #: contact_form.php:367
202
- msgid "Change FROM fields of the contact form"
 
203
  msgstr "Promeni OD polja u kontakt formi"
204
 
205
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "Display phone field"
207
  msgstr ""
208
 
209
- #: contact_form.php:379
210
  msgid "Required field"
211
  msgstr ""
212
 
213
- #: contact_form.php:388 contact_form.php:775
214
  msgid "Name"
215
  msgstr "Ime"
216
 
217
- #: contact_form.php:389
218
  #, fuzzy
219
  msgid "E-Mail Address"
220
  msgstr "E-mail Adresa:"
221
 
222
- #: contact_form.php:390 contact_form.php:783
223
  msgid "Phone"
224
  msgstr ""
225
 
226
- #: contact_form.php:391 contact_form.php:786
227
  msgid "Subject"
228
  msgstr "Tema"
229
 
230
- #: contact_form.php:392 contact_form.php:789
231
  msgid "Message"
232
  msgstr "Poruka"
233
 
234
- #: contact_form.php:396
235
  msgid "Display additional info in email"
236
  msgstr "Prikaži dodatne informacije u mejlu"
237
 
238
- #: contact_form.php:401 contact_form.php:747
239
  msgid "Sent from (ip address)"
240
  msgstr "Poslato sa (ip adresa)"
241
 
242
- #: contact_form.php:402 contact_form.php:752
243
  msgid "Date/Time"
244
  msgstr "Datum/Vreme"
245
 
246
- #: contact_form.php:403 contact_form.php:757
247
  msgid "Coming from (referer)"
248
  msgstr "Došlo od (prosleđivač)"
249
 
250
- #: contact_form.php:404 contact_form.php:762
251
  msgid "Using (user agent)"
252
  msgstr "Koristi (user agent)"
253
 
254
- #: contact_form.php:408
255
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
256
  msgstr "Promeni oznaku za polja u kontakt formi"
257
 
258
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Action after the send mail"
260
  msgstr "Akcija posle poslatog mejla"
261
 
262
- #: contact_form.php:424
263
  msgid "Display text"
264
  msgstr "Prikaži tekst"
265
 
266
- #: contact_form.php:425
267
  msgid "Text"
268
  msgstr "Tekst"
269
 
270
- #: contact_form.php:426
271
  msgid "Redirect to page"
272
  msgstr "Preusmeri na stranu"
273
 
274
- #: contact_form.php:427
275
  msgid "Url"
276
  msgstr "Url"
277
 
278
- #: contact_form.php:432
279
  msgid "Save Changes"
280
  msgstr "Sačuvaj izmene"
281
 
282
- #: contact_form.php:470
283
  msgid "Sorry, your e-mail could not be delivered."
284
  msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
285
 
286
- #: contact_form.php:540
287
  msgid "You can attach files of the following types"
288
  msgstr "Možete privezati fajlove sledećih tipova"
289
 
290
- #: contact_form.php:548
291
  msgid "Send me a copy"
292
  msgstr "Pošalji mi kopiju"
293
 
294
- #: contact_form.php:558
295
- msgid "Submit"
296
- msgstr "Podnesi"
297
-
298
- #: contact_form.php:598
299
- msgid "Your name is required."
300
- msgstr "Vaše ime je potrebno."
301
-
302
- #: contact_form.php:600
303
- msgid "A proper e-mail address is required."
304
- msgstr "Ispravna e-mail adresa potrebna."
305
-
306
- #: contact_form.php:602
307
- msgid "Subject text is required."
308
- msgstr "Tekst Teme je potreban."
309
-
310
- #: contact_form.php:604
311
- msgid "Message text is required."
312
- msgstr "Tekst poruke je potreban."
313
-
314
- #: contact_form.php:606
315
- #, fuzzy
316
- msgid "Phone is required field."
317
- msgstr "Vaše ime je potrebno."
318
-
319
- #: contact_form.php:607
320
- msgid "Please make corrections below and try again."
321
- msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
322
-
323
- #: contact_form.php:639
324
- msgid "Attachment is broken."
325
- msgstr "Privezakne radi"
326
-
327
- #: contact_form.php:654
328
- msgid "Please complete the CAPTCHA."
329
- msgstr "Molimo vas popunite CAPTCHA."
330
-
331
- #: contact_form.php:770
332
  msgid "Contact from"
333
  msgstr "Kontakt forma"
334
 
335
- #: contact_form.php:778
336
  msgid "Email"
337
  msgstr "Email"
338
 
339
- #: contact_form.php:792
340
  msgid "Site"
341
  msgstr "Sajt"
342
 
343
- #: contact_form.php:837
344
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
345
  msgstr ""
346
  "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME "
347
  "tipove!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "FAQ"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Podrška"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "E-mail adresa:"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: Radovan Georgijevic <radovan@georgijevic.info>\n"
8
  "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
  "Language: sr_RS\n"
24
  msgid "Read more"
25
  msgstr "Čitaj više"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Podešavanja"
30
 
57
  "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com "
58
  "ili popunite kontakt formu na našem sajtu"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Opcije Kontakt Forme"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontakt Forma"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Ime:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-mail Adresa:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Tema:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Poruka:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Priveži fajl:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Podnesi"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Vaše ime je potrebno."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Ispravna e-mail adresa potrebna."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Tekst Teme je potreban."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Tekst poruke je potreban."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Vaše ime je potrebno."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Privezakne radi"
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Molimo vas popunite CAPTCHA."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Hvala što ste nas kontaktirali."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
138
  "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete "
139
  "popuniti u sledećem formatu"
140
 
141
+ #: contact_form.php:365
 
 
 
 
142
  msgid "Such user is not exist. Settings are not saved."
143
  msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
144
 
145
+ #: contact_form.php:370
146
  msgid "Please input correct email. Settings are not saved."
147
  msgstr "Molim vam unesite ispravan mejl. Podešavanja nisu sačuvana."
148
 
149
+ #: contact_form.php:376
150
+ #, fuzzy
151
+ msgid "Please input correct 'FROM' email. Settings are not saved."
152
+ msgstr "Molim vam unesite ispravan mejl. Podešavanja nisu sačuvana."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Opcije sačuvane"
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte "
164
  "ovaj kratak kod na vašu stranu, članak ili vidžet:"
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu "
172
  "koja je navedena prilikom registracije."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Koristi mejl wordpress kosirnika:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Odaberi korisničko ime"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
185
 
186
+ #: contact_form.php:424
187
  msgid "Use this email:"
188
  msgstr "Koristi ovaj mejl:"
189
 
190
+ #: contact_form.php:427
191
  msgid "Set an email address which will be used for messages receiving."
192
  msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
193
 
194
+ #: contact_form.php:431
195
  msgid "Additional options"
196
  msgstr "Dodatne opcije"
197
 
198
+ #: contact_form.php:434
199
  msgid "Display Attachment block"
200
  msgstr "Prikaži blok privezaka"
201
 
202
+ #: contact_form.php:436
203
  msgid "Users can attach files of the following types"
204
  msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
205
 
206
+ #: contact_form.php:440
207
  msgid "Display Attachment explanations"
208
  msgstr "Prikaži objašnjenja privezaka"
209
 
210
+ #: contact_form.php:442
211
  msgid "Display explanations after Attachment block"
212
  msgstr "Prikaži objašnjenja posle bloka Privezaka"
213
 
214
+ #: contact_form.php:446
215
  msgid "Display Send me a copy block"
216
  msgstr "Prikaži Pošalji mi kopiju blok"
217
 
218
+ #: contact_form.php:452
219
  msgid "What use?"
220
  msgstr "Šta koritite?"
221
 
222
+ #: contact_form.php:455
223
  msgid "Wp-mail"
224
  msgstr "Wp-mail"
225
 
226
+ #: contact_form.php:456
227
  msgid "To send mail you can use the wordpress wp_mail function"
228
  msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
229
 
230
+ #: contact_form.php:462
231
  msgid "Mail"
232
  msgstr "Mail"
233
 
234
+ #: contact_form.php:463
235
  msgid "To send mail you can use the php mail function"
236
  msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
237
 
238
+ #: contact_form.php:467
239
+ #, fuzzy
240
+ msgid "Change text for 'FROM' field of the email"
241
  msgstr "Promeni OD polja u kontakt formi"
242
 
243
+ #: contact_form.php:473
244
+ msgid "Select email for 'FROM' field of the email"
245
+ msgstr ""
246
+
247
+ #: contact_form.php:475
248
+ msgid ""
249
+ "In the field 'From' in the mail it will use email of that user who fills the "
250
+ "form."
251
+ msgstr ""
252
+
253
+ #: contact_form.php:477
254
+ msgid "In the field 'From' it will use this email."
255
+ msgstr ""
256
+
257
+ #: contact_form.php:481
258
  msgid "Display phone field"
259
  msgstr ""
260
 
261
+ #: contact_form.php:487
262
  msgid "Required field"
263
  msgstr ""
264
 
265
+ #: contact_form.php:489 contact_form.php:953
266
  msgid "Name"
267
  msgstr "Ime"
268
 
269
+ #: contact_form.php:490
270
  #, fuzzy
271
  msgid "E-Mail Address"
272
  msgstr "E-mail Adresa:"
273
 
274
+ #: contact_form.php:491 contact_form.php:961
275
  msgid "Phone"
276
  msgstr ""
277
 
278
+ #: contact_form.php:492 contact_form.php:964
279
  msgid "Subject"
280
  msgstr "Tema"
281
 
282
+ #: contact_form.php:493 contact_form.php:967
283
  msgid "Message"
284
  msgstr "Poruka"
285
 
286
+ #: contact_form.php:497
287
  msgid "Display additional info in email"
288
  msgstr "Prikaži dodatne informacije u mejlu"
289
 
290
+ #: contact_form.php:502 contact_form.php:925
291
  msgid "Sent from (ip address)"
292
  msgstr "Poslato sa (ip adresa)"
293
 
294
+ #: contact_form.php:503 contact_form.php:930
295
  msgid "Date/Time"
296
  msgstr "Datum/Vreme"
297
 
298
+ #: contact_form.php:504 contact_form.php:935
299
  msgid "Coming from (referer)"
300
  msgstr "Došlo od (prosleđivač)"
301
 
302
+ #: contact_form.php:505 contact_form.php:940
303
  msgid "Using (user agent)"
304
  msgstr "Koristi (user agent)"
305
 
306
+ #: contact_form.php:509
307
+ msgid "Language settings for label fields"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:518
311
+ msgid "Add language"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:522
315
+ #, fuzzy
316
+ msgid "Change label for fields of the contact form and error messages"
317
  msgstr "Promeni oznaku za polja u kontakt formi"
318
 
319
+ #: contact_form.php:527 contact_form.php:580
320
+ msgid "English"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:542 contact_form.php:562
324
+ msgid "Error message for name field"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:543 contact_form.php:563
328
+ msgid "Error message for email field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:544 contact_form.php:564
332
+ msgid "Error message for phone field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:545 contact_form.php:565
336
+ msgid "Error message for subject field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:546 contact_form.php:566
340
+ msgid "Error message for message field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:547 contact_form.php:567
344
+ msgid "Error message for attachment field"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:548 contact_form.php:568
348
+ msgid "Error message for captcha"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:549 contact_form.php:569
352
+ msgid "Error message for all form"
353
+ msgstr ""
354
+
355
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
356
+ #: contact_form.php:595
357
+ msgid "Use shortcode"
358
+ msgstr ""
359
+
360
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
361
+ #: contact_form.php:595
362
+ msgid "for this language"
363
+ msgstr ""
364
+
365
+ #: contact_form.php:577
366
  msgid "Action after the send mail"
367
  msgstr "Akcija posle poslatog mejla"
368
 
369
+ #: contact_form.php:579
370
  msgid "Display text"
371
  msgstr "Prikaži tekst"
372
 
373
+ #: contact_form.php:588 contact_form.php:594
374
  msgid "Text"
375
  msgstr "Tekst"
376
 
377
+ #: contact_form.php:601
378
  msgid "Redirect to page"
379
  msgstr "Preusmeri na stranu"
380
 
381
+ #: contact_form.php:602
382
  msgid "Url"
383
  msgstr "Url"
384
 
385
+ #: contact_form.php:607
386
  msgid "Save Changes"
387
  msgstr "Sačuvaj izmene"
388
 
389
+ #: contact_form.php:646
390
  msgid "Sorry, your e-mail could not be delivered."
391
  msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
392
 
393
+ #: contact_form.php:716
394
  msgid "You can attach files of the following types"
395
  msgstr "Možete privezati fajlove sledećih tipova"
396
 
397
+ #: contact_form.php:724
398
  msgid "Send me a copy"
399
  msgstr "Pošalji mi kopiju"
400
 
401
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
402
  msgid "Contact from"
403
  msgstr "Kontakt forma"
404
 
405
+ #: contact_form.php:956
406
  msgid "Email"
407
  msgstr "Email"
408
 
409
+ #: contact_form.php:970
410
  msgid "Site"
411
  msgstr "Sajt"
412
 
413
+ #: contact_form.php:1021
414
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
415
  msgstr ""
416
  "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME "
417
  "tipove!"
418
 
419
+ #: contact_form.php:1078
420
  msgid "FAQ"
421
  msgstr "FAQ"
422
 
423
+ #: contact_form.php:1079
424
  msgid "Support"
425
  msgstr "Podrška"
426
 
427
+ #: contact_form.php:1125
428
+ msgid "Are you sure you want to delete this language?"
429
+ msgstr ""
430
+
431
  #~ msgid "E-Mail Addresse:"
432
  #~ msgstr "E-mail adresa:"
433
 
languages/contact_form-sv_SE.mo CHANGED
Binary file
languages/contact_form-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: sv_SE\n"
@@ -24,7 +24,7 @@ msgstr "Aktiverat plugin"
24
  msgid "Read more"
25
  msgstr "Läs mer"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Inställningar"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com "
58
  "eller använd fårt kontaktformulär på vår hemsida"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "Inställningar för Kontaktformulär"
63
 
@@ -65,59 +65,97 @@ msgstr "Inställningar för Kontaktformulär"
65
  msgid "Contact Form"
66
  msgstr "Kontak formulär"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Namn:"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "Epostadress:"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Rubrik:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Meddelande:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Bilaga:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Tack för att du kontaktat oss."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Inställningar sparade"
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr ""
118
  "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
119
 
120
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "If you would like to add a Contact Form to your website, just copy and put "
123
  "this shortcode onto your post or page or widget:"
@@ -125,7 +163,7 @@ msgstr ""
125
  "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och "
126
  "kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
127
 
128
- #: contact_form.php:292
129
  msgid ""
130
  "If information in the below fields are empty then the message will be send "
131
  "to an address which was specified during registration."
@@ -133,227 +171,264 @@ msgstr ""
133
  "Om information i fälten nedan är tomma så kommer meddelandet att skickas "
134
  "till en adress som specifierades vid registrering."
135
 
136
- #: contact_form.php:296
137
  msgid "Use email of wordpress user:"
138
  msgstr "Använd epostadress för wordpress användare:"
139
 
140
- #: contact_form.php:302
141
  msgid "Select user name"
142
  msgstr "Välj användarnamn"
143
 
144
- #: contact_form.php:307
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr ""
147
  "Ange ett namn på en användare som kommer få meddelandena från "
148
  "kontaktformulären"
149
 
150
- #: contact_form.php:311
151
  msgid "Use this email:"
152
  msgstr "Använd denna epost:"
153
 
154
- #: contact_form.php:317
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
157
 
158
- #: contact_form.php:321
159
  msgid "Additional options"
160
  msgstr "Fler val"
161
 
162
- #: contact_form.php:324
163
  msgid "Display Attachment block"
164
  msgstr "Visa bifogade"
165
 
166
- #: contact_form.php:329
167
  msgid "Users can attach files of the following types"
168
  msgstr "Användare kan lägga till filer av följande typer"
169
 
170
- #: contact_form.php:333
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
- #: contact_form.php:338
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
- #: contact_form.php:342
179
  msgid "Display Send me a copy block"
180
  msgstr "Visa \"Skicka mig en kopia\""
181
 
182
- #: contact_form.php:348
183
  msgid "What use?"
184
  msgstr ""
185
 
186
- #: contact_form.php:353
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
- #: contact_form.php:354
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
- #: contact_form.php:362
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
- #: contact_form.php:363
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
- #: contact_form.php:367
203
- msgid "Change FROM fields of the contact form"
 
204
  msgstr "Förändring från fält i kontaktformuläret"
205
 
206
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Display phone field"
208
  msgstr ""
209
 
210
- #: contact_form.php:379
211
  msgid "Required field"
212
  msgstr ""
213
 
214
- #: contact_form.php:388 contact_form.php:775
215
  msgid "Name"
216
  msgstr "Namn"
217
 
218
- #: contact_form.php:389
219
  #, fuzzy
220
  msgid "E-Mail Address"
221
  msgstr "Epostadress:"
222
 
223
- #: contact_form.php:390 contact_form.php:783
224
  msgid "Phone"
225
  msgstr ""
226
 
227
- #: contact_form.php:391 contact_form.php:786
228
  msgid "Subject"
229
  msgstr "Rubrik"
230
 
231
- #: contact_form.php:392 contact_form.php:789
232
  msgid "Message"
233
  msgstr "Meddelande"
234
 
235
- #: contact_form.php:396
236
  msgid "Display additional info in email"
237
  msgstr ""
238
 
239
- #: contact_form.php:401 contact_form.php:747
240
  msgid "Sent from (ip address)"
241
  msgstr "Skickat från (IP-adress)"
242
 
243
- #: contact_form.php:402 contact_form.php:752
244
  msgid "Date/Time"
245
  msgstr "Dag/tid"
246
 
247
- #: contact_form.php:403 contact_form.php:757
248
  msgid "Coming from (referer)"
249
  msgstr "Skickat från (referent)"
250
 
251
- #: contact_form.php:404 contact_form.php:762
252
  msgid "Using (user agent)"
253
  msgstr "med (user agent)"
254
 
255
- #: contact_form.php:408
256
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
257
  msgstr "Ändra etiketter för fält på kontaktformuläret"
258
 
259
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  msgid "Action after the send mail"
261
  msgstr ""
262
 
263
- #: contact_form.php:424
264
  #, fuzzy
265
  msgid "Display text"
266
  msgstr "Visa bifogade"
267
 
268
- #: contact_form.php:425
269
  msgid "Text"
270
  msgstr ""
271
 
272
- #: contact_form.php:426
273
  msgid "Redirect to page"
274
  msgstr ""
275
 
276
- #: contact_form.php:427
277
  msgid "Url"
278
  msgstr ""
279
 
280
- #: contact_form.php:432
281
  msgid "Save Changes"
282
  msgstr "Spara ändringar"
283
 
284
- #: contact_form.php:470
285
  msgid "Sorry, your e-mail could not be delivered."
286
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
287
 
288
- #: contact_form.php:540
289
  msgid "You can attach files of the following types"
290
  msgstr "Du kan lägga till filer av följande typ."
291
 
292
- #: contact_form.php:548
293
  msgid "Send me a copy"
294
  msgstr "Skicka mig en kopia"
295
 
296
- #: contact_form.php:558
297
- msgid "Submit"
298
- msgstr "Skicka"
299
-
300
- #: contact_form.php:598
301
- msgid "Your name is required."
302
- msgstr "Ditt namn krävs"
303
-
304
- #: contact_form.php:600
305
- msgid "A proper e-mail address is required."
306
- msgstr "En korrekt epostadress krävs."
307
-
308
- #: contact_form.php:602
309
- msgid "Subject text is required."
310
- msgstr "Rubrik krävs."
311
-
312
- #: contact_form.php:604
313
- msgid "Message text is required."
314
- msgstr "Meddelandetext krävs."
315
-
316
- #: contact_form.php:606
317
- #, fuzzy
318
- msgid "Phone is required field."
319
- msgstr "Ditt namn krävs"
320
-
321
- #: contact_form.php:607
322
- msgid "Please make corrections below and try again."
323
- msgstr "Var vänlig och gör ändringarna nedan och försök igen."
324
-
325
- #: contact_form.php:639
326
- msgid "Attachment is broken."
327
- msgstr "Fel vid bilaga"
328
-
329
- #: contact_form.php:654
330
- msgid "Please complete the CAPTCHA."
331
- msgstr "Var vänlig och fyll i CAPTCHA."
332
-
333
- #: contact_form.php:770
334
  msgid "Contact from"
335
  msgstr "Kontakformulär"
336
 
337
- #: contact_form.php:778
338
  msgid "Email"
339
  msgstr "Epost"
340
 
341
- #: contact_form.php:792
342
  msgid "Site"
343
  msgstr "www"
344
 
345
- #: contact_form.php:837
346
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
347
  msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
348
 
349
- #: contact_form.php:891
350
  msgid "FAQ"
351
  msgstr "Vanliga frågor"
352
 
353
- #: contact_form.php:892
354
  msgid "Support"
355
  msgstr "Support"
356
 
 
 
 
 
357
  #~ msgid "E-Mail Addresse:"
358
  #~ msgstr "Epost adress"
359
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: sv_SE\n"
24
  msgid "Read more"
25
  msgstr "Läs mer"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Inställningar"
30
 
57
  "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com "
58
  "eller använd fårt kontaktformulär på vår hemsida"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "Inställningar för Kontaktformulär"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontak formulär"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Namn:"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "Epostadress:"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Rubrik:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Meddelande:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Bilaga:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Skicka"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Ditt namn krävs"
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "En korrekt epostadress krävs."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Rubrik krävs."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Meddelandetext krävs."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Ditt namn krävs"
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Fel vid bilaga"
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "Var vänlig och fyll i CAPTCHA."
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Var vänlig och gör ändringarna nedan och försök igen."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Tack för att du kontaktat oss."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr ""
146
  "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
147
 
148
+ #: contact_form.php:376
149
+ #, fuzzy
150
+ msgid "Please input correct 'FROM' email. Settings are not saved."
151
+ msgstr ""
152
+ "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
153
+
154
+ #: contact_form.php:381
155
+ msgid "Options saved."
156
+ msgstr "Inställningar sparade"
157
+
158
+ #: contact_form.php:406
159
  msgid ""
160
  "If you would like to add a Contact Form to your website, just copy and put "
161
  "this shortcode onto your post or page or widget:"
163
  "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och "
164
  "kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
165
 
166
+ #: contact_form.php:407
167
  msgid ""
168
  "If information in the below fields are empty then the message will be send "
169
  "to an address which was specified during registration."
171
  "Om information i fälten nedan är tomma så kommer meddelandet att skickas "
172
  "till en adress som specifierades vid registrering."
173
 
174
+ #: contact_form.php:411
175
  msgid "Use email of wordpress user:"
176
  msgstr "Använd epostadress för wordpress användare:"
177
 
178
+ #: contact_form.php:415
179
  msgid "Select user name"
180
  msgstr "Välj användarnamn"
181
 
182
+ #: contact_form.php:420
183
  msgid "Set a name of user who will get messages from a contact form."
184
  msgstr ""
185
  "Ange ett namn på en användare som kommer få meddelandena från "
186
  "kontaktformulären"
187
 
188
+ #: contact_form.php:424
189
  msgid "Use this email:"
190
  msgstr "Använd denna epost:"
191
 
192
+ #: contact_form.php:427
193
  msgid "Set an email address which will be used for messages receiving."
194
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
195
 
196
+ #: contact_form.php:431
197
  msgid "Additional options"
198
  msgstr "Fler val"
199
 
200
+ #: contact_form.php:434
201
  msgid "Display Attachment block"
202
  msgstr "Visa bifogade"
203
 
204
+ #: contact_form.php:436
205
  msgid "Users can attach files of the following types"
206
  msgstr "Användare kan lägga till filer av följande typer"
207
 
208
+ #: contact_form.php:440
209
  msgid "Display Attachment explanations"
210
  msgstr ""
211
 
212
+ #: contact_form.php:442
213
  msgid "Display explanations after Attachment block"
214
  msgstr ""
215
 
216
+ #: contact_form.php:446
217
  msgid "Display Send me a copy block"
218
  msgstr "Visa \"Skicka mig en kopia\""
219
 
220
+ #: contact_form.php:452
221
  msgid "What use?"
222
  msgstr ""
223
 
224
+ #: contact_form.php:455
225
  msgid "Wp-mail"
226
  msgstr "Wp-mail"
227
 
228
+ #: contact_form.php:456
229
  msgid "To send mail you can use the wordpress wp_mail function"
230
  msgstr ""
231
 
232
+ #: contact_form.php:462
233
  msgid "Mail"
234
  msgstr "Mail"
235
 
236
+ #: contact_form.php:463
237
  msgid "To send mail you can use the php mail function"
238
  msgstr ""
239
 
240
+ #: contact_form.php:467
241
+ #, fuzzy
242
+ msgid "Change text for 'FROM' field of the email"
243
  msgstr "Förändring från fält i kontaktformuläret"
244
 
245
+ #: contact_form.php:473
246
+ msgid "Select email for 'FROM' field of the email"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:475
250
+ msgid ""
251
+ "In the field 'From' in the mail it will use email of that user who fills the "
252
+ "form."
253
+ msgstr ""
254
+
255
+ #: contact_form.php:477
256
+ msgid "In the field 'From' it will use this email."
257
+ msgstr ""
258
+
259
+ #: contact_form.php:481
260
  msgid "Display phone field"
261
  msgstr ""
262
 
263
+ #: contact_form.php:487
264
  msgid "Required field"
265
  msgstr ""
266
 
267
+ #: contact_form.php:489 contact_form.php:953
268
  msgid "Name"
269
  msgstr "Namn"
270
 
271
+ #: contact_form.php:490
272
  #, fuzzy
273
  msgid "E-Mail Address"
274
  msgstr "Epostadress:"
275
 
276
+ #: contact_form.php:491 contact_form.php:961
277
  msgid "Phone"
278
  msgstr ""
279
 
280
+ #: contact_form.php:492 contact_form.php:964
281
  msgid "Subject"
282
  msgstr "Rubrik"
283
 
284
+ #: contact_form.php:493 contact_form.php:967
285
  msgid "Message"
286
  msgstr "Meddelande"
287
 
288
+ #: contact_form.php:497
289
  msgid "Display additional info in email"
290
  msgstr ""
291
 
292
+ #: contact_form.php:502 contact_form.php:925
293
  msgid "Sent from (ip address)"
294
  msgstr "Skickat från (IP-adress)"
295
 
296
+ #: contact_form.php:503 contact_form.php:930
297
  msgid "Date/Time"
298
  msgstr "Dag/tid"
299
 
300
+ #: contact_form.php:504 contact_form.php:935
301
  msgid "Coming from (referer)"
302
  msgstr "Skickat från (referent)"
303
 
304
+ #: contact_form.php:505 contact_form.php:940
305
  msgid "Using (user agent)"
306
  msgstr "med (user agent)"
307
 
308
+ #: contact_form.php:509
309
+ msgid "Language settings for label fields"
310
+ msgstr ""
311
+
312
+ #: contact_form.php:518
313
+ msgid "Add language"
314
+ msgstr ""
315
+
316
+ #: contact_form.php:522
317
+ #, fuzzy
318
+ msgid "Change label for fields of the contact form and error messages"
319
  msgstr "Ändra etiketter för fält på kontaktformuläret"
320
 
321
+ #: contact_form.php:527 contact_form.php:580
322
+ msgid "English"
323
+ msgstr ""
324
+
325
+ #: contact_form.php:542 contact_form.php:562
326
+ msgid "Error message for name field"
327
+ msgstr ""
328
+
329
+ #: contact_form.php:543 contact_form.php:563
330
+ msgid "Error message for email field"
331
+ msgstr ""
332
+
333
+ #: contact_form.php:544 contact_form.php:564
334
+ msgid "Error message for phone field"
335
+ msgstr ""
336
+
337
+ #: contact_form.php:545 contact_form.php:565
338
+ msgid "Error message for subject field"
339
+ msgstr ""
340
+
341
+ #: contact_form.php:546 contact_form.php:566
342
+ msgid "Error message for message field"
343
+ msgstr ""
344
+
345
+ #: contact_form.php:547 contact_form.php:567
346
+ msgid "Error message for attachment field"
347
+ msgstr ""
348
+
349
+ #: contact_form.php:548 contact_form.php:568
350
+ msgid "Error message for captcha"
351
+ msgstr ""
352
+
353
+ #: contact_form.php:549 contact_form.php:569
354
+ msgid "Error message for all form"
355
+ msgstr ""
356
+
357
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
358
+ #: contact_form.php:595
359
+ msgid "Use shortcode"
360
+ msgstr ""
361
+
362
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
363
+ #: contact_form.php:595
364
+ msgid "for this language"
365
+ msgstr ""
366
+
367
+ #: contact_form.php:577
368
  msgid "Action after the send mail"
369
  msgstr ""
370
 
371
+ #: contact_form.php:579
372
  #, fuzzy
373
  msgid "Display text"
374
  msgstr "Visa bifogade"
375
 
376
+ #: contact_form.php:588 contact_form.php:594
377
  msgid "Text"
378
  msgstr ""
379
 
380
+ #: contact_form.php:601
381
  msgid "Redirect to page"
382
  msgstr ""
383
 
384
+ #: contact_form.php:602
385
  msgid "Url"
386
  msgstr ""
387
 
388
+ #: contact_form.php:607
389
  msgid "Save Changes"
390
  msgstr "Spara ändringar"
391
 
392
+ #: contact_form.php:646
393
  msgid "Sorry, your e-mail could not be delivered."
394
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
395
 
396
+ #: contact_form.php:716
397
  msgid "You can attach files of the following types"
398
  msgstr "Du kan lägga till filer av följande typ."
399
 
400
+ #: contact_form.php:724
401
  msgid "Send me a copy"
402
  msgstr "Skicka mig en kopia"
403
 
404
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
  msgid "Contact from"
406
  msgstr "Kontakformulär"
407
 
408
+ #: contact_form.php:956
409
  msgid "Email"
410
  msgstr "Epost"
411
 
412
+ #: contact_form.php:970
413
  msgid "Site"
414
  msgstr "www"
415
 
416
+ #: contact_form.php:1021
417
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
418
  msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
419
 
420
+ #: contact_form.php:1078
421
  msgid "FAQ"
422
  msgstr "Vanliga frågor"
423
 
424
+ #: contact_form.php:1079
425
  msgid "Support"
426
  msgstr "Support"
427
 
428
+ #: contact_form.php:1125
429
+ msgid "Are you sure you want to delete this language?"
430
+ msgstr ""
431
+
432
  #~ msgid "E-Mail Addresse:"
433
  #~ msgstr "Epost adress"
434
 
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-11-20 10:16+0200\n"
6
- "PO-Revision-Date: 2012-11-20 10:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: it_IT\n"
@@ -24,7 +24,7 @@ msgstr "Aktif eklentiler"
24
  msgid "Read more"
25
  msgstr "Devamı"
26
 
27
- #: contact_form.php:78 contact_form.php:881 contact_form.php:890
28
  msgid "Settings"
29
  msgstr "Ayarlar"
30
 
@@ -57,7 +57,7 @@ msgstr ""
57
  "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize "
58
  "ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
- #: contact_form.php:108 contact_form.php:286
61
  msgid "Contact Form Options"
62
  msgstr "İletişim Formu Seçenekleri"
63
 
@@ -65,58 +65,95 @@ msgstr "İletişim Formu Seçenekleri"
65
  msgid "Contact Form"
66
  msgstr "İletişim Formu"
67
 
68
- #: contact_form.php:142 contact_form.php:193 contact_form.php:238
69
- #: contact_form.php:413
70
  msgid "Name:"
71
  msgstr "Adınız Soyadınız :"
72
 
73
- #: contact_form.php:143 contact_form.php:194 contact_form.php:239
74
- #: contact_form.php:414
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail Adresiniz :"
77
 
78
- #: contact_form.php:144 contact_form.php:240 contact_form.php:415
79
  msgid "Phone:"
80
  msgstr ""
81
 
82
- #: contact_form.php:145 contact_form.php:195 contact_form.php:241
83
- #: contact_form.php:416
84
  msgid "Subject:"
85
  msgstr "Konu:"
86
 
87
- #: contact_form.php:146 contact_form.php:196 contact_form.php:242
88
- #: contact_form.php:417
89
  msgid "Message:"
90
  msgstr "Mesajınız:"
91
 
92
- #: contact_form.php:147 contact_form.php:197 contact_form.php:243
93
- #: contact_form.php:418
94
  msgid "Attachment:"
95
  msgstr "Dosya Eki:"
96
 
97
- #: contact_form.php:149 contact_form.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
100
 
101
- #: contact_form.php:253
102
  msgid ""
103
  "If the option 'Redirect to page' is selected then url field should be "
104
  "fillied in the following format"
105
  msgstr ""
106
 
107
- #: contact_form.php:260 contact_form.php:265 contact_form.php:274
108
- msgid "Options saved."
109
- msgstr "Ayarlar Kayıt Edildi."
110
-
111
- #: contact_form.php:268
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
114
 
115
- #: contact_form.php:278
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
118
 
119
- #: contact_form.php:291
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "If you would like to add a Contact Form to your website, just copy and put "
122
  "this shortcode onto your post or page or widget:"
@@ -124,231 +161,268 @@ msgstr ""
124
  "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni "
125
  "sayfa içerisine html modunda iken ekleyiniz:"
126
 
127
- #: contact_form.php:292
128
  msgid ""
129
  "If information in the below fields are empty then the message will be send "
130
  "to an address which was specified during registration."
131
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
132
 
133
- #: contact_form.php:296
134
  msgid "Use email of wordpress user:"
135
  msgstr "Kullanıcı adı veya mail girin"
136
 
137
- #: contact_form.php:302
138
  msgid "Select user name"
139
  msgstr "Kullanıcı adı seçin"
140
 
141
- #: contact_form.php:307
142
  msgid "Set a name of user who will get messages from a contact form."
143
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
144
 
145
- #: contact_form.php:311
146
  msgid "Use this email:"
147
  msgstr "Bu e-posta adresini kullan:"
148
 
149
- #: contact_form.php:317
150
  msgid "Set an email address which will be used for messages receiving."
151
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
152
 
153
- #: contact_form.php:321
154
  msgid "Additional options"
155
  msgstr "Ek Seçenekler"
156
 
157
- #: contact_form.php:324
158
  msgid "Display Attachment block"
159
  msgstr "Eklenti Bloğunu Göster"
160
 
161
- #: contact_form.php:329
162
  msgid "Users can attach files of the following types"
163
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
164
 
165
- #: contact_form.php:333
166
  msgid "Display Attachment explanations"
167
  msgstr ""
168
 
169
- #: contact_form.php:338
170
  msgid "Display explanations after Attachment block"
171
  msgstr ""
172
 
173
- #: contact_form.php:342
174
  msgid "Display Send me a copy block"
175
  msgstr "Bana bir kopya gönder bloğunu göster"
176
 
177
- #: contact_form.php:348
178
  msgid "What use?"
179
  msgstr ""
180
 
181
- #: contact_form.php:353
182
  msgid "Wp-mail"
183
  msgstr "Wp-mail"
184
 
185
- #: contact_form.php:354
186
  msgid "To send mail you can use the wordpress wp_mail function"
187
  msgstr ""
188
 
189
- #: contact_form.php:362
190
  msgid "Mail"
191
  msgstr "Mail"
192
 
193
- #: contact_form.php:363
194
  msgid "To send mail you can use the php mail function"
195
  msgstr ""
196
 
197
- #: contact_form.php:367
198
- msgid "Change FROM fields of the contact form"
 
199
  msgstr "Iletişim formu alanları DAN değiştirin"
200
 
201
- #: contact_form.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  msgid "Display phone field"
203
  msgstr ""
204
 
205
- #: contact_form.php:379
206
  msgid "Required field"
207
  msgstr ""
208
 
209
- #: contact_form.php:388 contact_form.php:775
210
  msgid "Name"
211
  msgstr "Adınız Soyadınız"
212
 
213
- #: contact_form.php:389
214
  #, fuzzy
215
  msgid "E-Mail Address"
216
  msgstr "E-mail Adresiniz :"
217
 
218
- #: contact_form.php:390 contact_form.php:783
219
  msgid "Phone"
220
  msgstr ""
221
 
222
- #: contact_form.php:391 contact_form.php:786
223
  msgid "Subject"
224
  msgstr "Konu"
225
 
226
- #: contact_form.php:392 contact_form.php:789
227
  msgid "Message"
228
  msgstr "Mesaj"
229
 
230
- #: contact_form.php:396
231
  msgid "Display additional info in email"
232
  msgstr ""
233
 
234
- #: contact_form.php:401 contact_form.php:747
235
  msgid "Sent from (ip address)"
236
  msgstr "Geldiği (ip adresi)"
237
 
238
- #: contact_form.php:402 contact_form.php:752
239
  msgid "Date/Time"
240
  msgstr "Tarih/Zaman"
241
 
242
- #: contact_form.php:403 contact_form.php:757
243
  msgid "Coming from (referer)"
244
  msgstr "Gelen"
245
 
246
- #: contact_form.php:404 contact_form.php:762
247
  msgid "Using (user agent)"
248
  msgstr "Using (user agent)"
249
 
250
- #: contact_form.php:408
251
- msgid "Change label for fields of the contact form"
 
 
 
 
 
 
 
 
 
252
  msgstr "Iletişim formu alanlar için değişim etiket"
253
 
254
- #: contact_form.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  msgid "Action after the send mail"
256
  msgstr ""
257
 
258
- #: contact_form.php:424
259
  #, fuzzy
260
  msgid "Display text"
261
  msgstr "Eklenti Bloğunu Göster"
262
 
263
- #: contact_form.php:425
264
  msgid "Text"
265
  msgstr ""
266
 
267
- #: contact_form.php:426
268
  msgid "Redirect to page"
269
  msgstr ""
270
 
271
- #: contact_form.php:427
272
  msgid "Url"
273
  msgstr ""
274
 
275
- #: contact_form.php:432
276
  msgid "Save Changes"
277
  msgstr "Değişiklikler Kayıt Edildi"
278
 
279
- #: contact_form.php:470
280
  msgid "Sorry, your e-mail could not be delivered."
281
  msgstr "Üzgünüz, e-posta gönderilemedi."
282
 
283
- #: contact_form.php:540
284
  msgid "You can attach files of the following types"
285
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
286
 
287
- #: contact_form.php:548
288
  msgid "Send me a copy"
289
  msgstr "Bir kopyasını banada gönder"
290
 
291
- #: contact_form.php:558
292
- msgid "Submit"
293
- msgstr "Gönder"
294
-
295
- #: contact_form.php:598
296
- msgid "Your name is required."
297
- msgstr "Adınız ve soyadınız gereklidir."
298
-
299
- #: contact_form.php:600
300
- msgid "A proper e-mail address is required."
301
- msgstr "Düzgün bir e-posta adresi gereklidir."
302
-
303
- #: contact_form.php:602
304
- msgid "Subject text is required."
305
- msgstr "Konu metni gereklidir."
306
-
307
- #: contact_form.php:604
308
- msgid "Message text is required."
309
- msgstr "Mesaj metni gereklidir."
310
-
311
- #: contact_form.php:606
312
- #, fuzzy
313
- msgid "Phone is required field."
314
- msgstr "Adınız ve soyadınız gereklidir."
315
-
316
- #: contact_form.php:607
317
- msgid "Please make corrections below and try again."
318
- msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
319
-
320
- #: contact_form.php:639
321
- msgid "Attachment is broken."
322
- msgstr "Eklenti Hatalı"
323
-
324
- #: contact_form.php:654
325
- msgid "Please complete the CAPTCHA."
326
- msgstr "CAPTCHA Doldurunuz"
327
-
328
- #: contact_form.php:770
329
  msgid "Contact from"
330
  msgstr "Adlı Kişiden Mail Var"
331
 
332
- #: contact_form.php:778
333
  msgid "Email"
334
  msgstr "e-mail"
335
 
336
- #: contact_form.php:792
337
  msgid "Site"
338
  msgstr "Site"
339
 
340
- #: contact_form.php:837
341
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
342
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
343
 
344
- #: contact_form.php:891
345
  msgid "FAQ"
346
  msgstr "Sık Sorulanlar"
347
 
348
- #: contact_form.php:892
349
  msgid "Support"
350
  msgstr "Destek"
351
 
 
 
 
 
352
  #~ msgid "E-Mail Addresse:"
353
  #~ msgstr "Indirizzo e-mail:"
354
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-11 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-12-11 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: it_IT\n"
24
  msgid "Read more"
25
  msgstr "Devamı"
26
 
27
+ #: contact_form.php:78 contact_form.php:1068 contact_form.php:1077
28
  msgid "Settings"
29
  msgstr "Ayarlar"
30
 
57
  "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize "
58
  "ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
+ #: contact_form.php:108 contact_form.php:401
61
  msgid "Contact Form Options"
62
  msgstr "İletişim Formu Seçenekleri"
63
 
65
  msgid "Contact Form"
66
  msgstr "İletişim Formu"
67
 
68
+ #: contact_form.php:145 contact_form.php:535 contact_form.php:555
 
69
  msgid "Name:"
70
  msgstr "Adınız Soyadınız :"
71
 
72
+ #: contact_form.php:146 contact_form.php:536 contact_form.php:556
 
73
  msgid "E-Mail Address:"
74
  msgstr "E-mail Adresiniz :"
75
 
76
+ #: contact_form.php:147 contact_form.php:537 contact_form.php:557
77
  msgid "Phone:"
78
  msgstr ""
79
 
80
+ #: contact_form.php:148 contact_form.php:538 contact_form.php:558
 
81
  msgid "Subject:"
82
  msgstr "Konu:"
83
 
84
+ #: contact_form.php:149 contact_form.php:539 contact_form.php:559
 
85
  msgid "Message:"
86
  msgstr "Mesajınız:"
87
 
88
+ #: contact_form.php:150 contact_form.php:540 contact_form.php:560
 
89
  msgid "Attachment:"
90
  msgstr "Dosya Eki:"
91
 
92
+ #: contact_form.php:151 contact_form.php:541 contact_form.php:561
93
+ msgid "Submit"
94
+ msgstr "Gönder"
95
+
96
+ #: contact_form.php:152
97
+ msgid "Your name is required."
98
+ msgstr "Adınız ve soyadınız gereklidir."
99
+
100
+ #: contact_form.php:153
101
+ msgid "A proper e-mail address is required."
102
+ msgstr "Düzgün bir e-posta adresi gereklidir."
103
+
104
+ #: contact_form.php:154
105
+ msgid "Subject text is required."
106
+ msgstr "Konu metni gereklidir."
107
+
108
+ #: contact_form.php:155
109
+ msgid "Message text is required."
110
+ msgstr "Mesaj metni gereklidir."
111
+
112
+ #: contact_form.php:156
113
+ #, fuzzy
114
+ msgid "Phone is required field."
115
+ msgstr "Adınız ve soyadınız gereklidir."
116
+
117
+ #: contact_form.php:157
118
+ msgid "Attachment is broken."
119
+ msgstr "Eklenti Hatalı"
120
+
121
+ #: contact_form.php:158
122
+ msgid "Please complete the CAPTCHA."
123
+ msgstr "CAPTCHA Doldurunuz"
124
+
125
+ #: contact_form.php:159
126
+ msgid "Please make corrections below and try again."
127
+ msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
128
+
129
+ #: contact_form.php:161
130
  msgid "Thank you for contacting us."
131
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
132
 
133
+ #: contact_form.php:356
134
  msgid ""
135
  "If the option 'Redirect to page' is selected then url field should be "
136
  "fillied in the following format"
137
  msgstr ""
138
 
139
+ #: contact_form.php:365
 
 
 
 
140
  msgid "Such user is not exist. Settings are not saved."
141
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
142
 
143
+ #: contact_form.php:370
144
  msgid "Please input correct email. Settings are not saved."
145
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
146
 
147
+ #: contact_form.php:376
148
+ #, fuzzy
149
+ msgid "Please input correct 'FROM' email. Settings are not saved."
150
+ msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
151
+
152
+ #: contact_form.php:381
153
+ msgid "Options saved."
154
+ msgstr "Ayarlar Kayıt Edildi."
155
+
156
+ #: contact_form.php:406
157
  msgid ""
158
  "If you would like to add a Contact Form to your website, just copy and put "
159
  "this shortcode onto your post or page or widget:"
161
  "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni "
162
  "sayfa içerisine html modunda iken ekleyiniz:"
163
 
164
+ #: contact_form.php:407
165
  msgid ""
166
  "If information in the below fields are empty then the message will be send "
167
  "to an address which was specified during registration."
168
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
169
 
170
+ #: contact_form.php:411
171
  msgid "Use email of wordpress user:"
172
  msgstr "Kullanıcı adı veya mail girin"
173
 
174
+ #: contact_form.php:415
175
  msgid "Select user name"
176
  msgstr "Kullanıcı adı seçin"
177
 
178
+ #: contact_form.php:420
179
  msgid "Set a name of user who will get messages from a contact form."
180
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
181
 
182
+ #: contact_form.php:424
183
  msgid "Use this email:"
184
  msgstr "Bu e-posta adresini kullan:"
185
 
186
+ #: contact_form.php:427
187
  msgid "Set an email address which will be used for messages receiving."
188
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
189
 
190
+ #: contact_form.php:431
191
  msgid "Additional options"
192
  msgstr "Ek Seçenekler"
193
 
194
+ #: contact_form.php:434
195
  msgid "Display Attachment block"
196
  msgstr "Eklenti Bloğunu Göster"
197
 
198
+ #: contact_form.php:436
199
  msgid "Users can attach files of the following types"
200
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
201
 
202
+ #: contact_form.php:440
203
  msgid "Display Attachment explanations"
204
  msgstr ""
205
 
206
+ #: contact_form.php:442
207
  msgid "Display explanations after Attachment block"
208
  msgstr ""
209
 
210
+ #: contact_form.php:446
211
  msgid "Display Send me a copy block"
212
  msgstr "Bana bir kopya gönder bloğunu göster"
213
 
214
+ #: contact_form.php:452
215
  msgid "What use?"
216
  msgstr ""
217
 
218
+ #: contact_form.php:455
219
  msgid "Wp-mail"
220
  msgstr "Wp-mail"
221
 
222
+ #: contact_form.php:456
223
  msgid "To send mail you can use the wordpress wp_mail function"
224
  msgstr ""
225
 
226
+ #: contact_form.php:462
227
  msgid "Mail"
228
  msgstr "Mail"
229
 
230
+ #: contact_form.php:463
231
  msgid "To send mail you can use the php mail function"
232
  msgstr ""
233
 
234
+ #: contact_form.php:467
235
+ #, fuzzy
236
+ msgid "Change text for 'FROM' field of the email"
237
  msgstr "Iletişim formu alanları DAN değiştirin"
238
 
239
+ #: contact_form.php:473
240
+ msgid "Select email for 'FROM' field of the email"
241
+ msgstr ""
242
+
243
+ #: contact_form.php:475
244
+ msgid ""
245
+ "In the field 'From' in the mail it will use email of that user who fills the "
246
+ "form."
247
+ msgstr ""
248
+
249
+ #: contact_form.php:477
250
+ msgid "In the field 'From' it will use this email."
251
+ msgstr ""
252
+
253
+ #: contact_form.php:481
254
  msgid "Display phone field"
255
  msgstr ""
256
 
257
+ #: contact_form.php:487
258
  msgid "Required field"
259
  msgstr ""
260
 
261
+ #: contact_form.php:489 contact_form.php:953
262
  msgid "Name"
263
  msgstr "Adınız Soyadınız"
264
 
265
+ #: contact_form.php:490
266
  #, fuzzy
267
  msgid "E-Mail Address"
268
  msgstr "E-mail Adresiniz :"
269
 
270
+ #: contact_form.php:491 contact_form.php:961
271
  msgid "Phone"
272
  msgstr ""
273
 
274
+ #: contact_form.php:492 contact_form.php:964
275
  msgid "Subject"
276
  msgstr "Konu"
277
 
278
+ #: contact_form.php:493 contact_form.php:967
279
  msgid "Message"
280
  msgstr "Mesaj"
281
 
282
+ #: contact_form.php:497
283
  msgid "Display additional info in email"
284
  msgstr ""
285
 
286
+ #: contact_form.php:502 contact_form.php:925
287
  msgid "Sent from (ip address)"
288
  msgstr "Geldiği (ip adresi)"
289
 
290
+ #: contact_form.php:503 contact_form.php:930
291
  msgid "Date/Time"
292
  msgstr "Tarih/Zaman"
293
 
294
+ #: contact_form.php:504 contact_form.php:935
295
  msgid "Coming from (referer)"
296
  msgstr "Gelen"
297
 
298
+ #: contact_form.php:505 contact_form.php:940
299
  msgid "Using (user agent)"
300
  msgstr "Using (user agent)"
301
 
302
+ #: contact_form.php:509
303
+ msgid "Language settings for label fields"
304
+ msgstr ""
305
+
306
+ #: contact_form.php:518
307
+ msgid "Add language"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:522
311
+ #, fuzzy
312
+ msgid "Change label for fields of the contact form and error messages"
313
  msgstr "Iletişim formu alanlar için değişim etiket"
314
 
315
+ #: contact_form.php:527 contact_form.php:580
316
+ msgid "English"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:542 contact_form.php:562
320
+ msgid "Error message for name field"
321
+ msgstr ""
322
+
323
+ #: contact_form.php:543 contact_form.php:563
324
+ msgid "Error message for email field"
325
+ msgstr ""
326
+
327
+ #: contact_form.php:544 contact_form.php:564
328
+ msgid "Error message for phone field"
329
+ msgstr ""
330
+
331
+ #: contact_form.php:545 contact_form.php:565
332
+ msgid "Error message for subject field"
333
+ msgstr ""
334
+
335
+ #: contact_form.php:546 contact_form.php:566
336
+ msgid "Error message for message field"
337
+ msgstr ""
338
+
339
+ #: contact_form.php:547 contact_form.php:567
340
+ msgid "Error message for attachment field"
341
+ msgstr ""
342
+
343
+ #: contact_form.php:548 contact_form.php:568
344
+ msgid "Error message for captcha"
345
+ msgstr ""
346
+
347
+ #: contact_form.php:549 contact_form.php:569
348
+ msgid "Error message for all form"
349
+ msgstr ""
350
+
351
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
352
+ #: contact_form.php:595
353
+ msgid "Use shortcode"
354
+ msgstr ""
355
+
356
+ #: contact_form.php:550 contact_form.php:570 contact_form.php:589
357
+ #: contact_form.php:595
358
+ msgid "for this language"
359
+ msgstr ""
360
+
361
+ #: contact_form.php:577
362
  msgid "Action after the send mail"
363
  msgstr ""
364
 
365
+ #: contact_form.php:579
366
  #, fuzzy
367
  msgid "Display text"
368
  msgstr "Eklenti Bloğunu Göster"
369
 
370
+ #: contact_form.php:588 contact_form.php:594
371
  msgid "Text"
372
  msgstr ""
373
 
374
+ #: contact_form.php:601
375
  msgid "Redirect to page"
376
  msgstr ""
377
 
378
+ #: contact_form.php:602
379
  msgid "Url"
380
  msgstr ""
381
 
382
+ #: contact_form.php:607
383
  msgid "Save Changes"
384
  msgstr "Değişiklikler Kayıt Edildi"
385
 
386
+ #: contact_form.php:646
387
  msgid "Sorry, your e-mail could not be delivered."
388
  msgstr "Üzgünüz, e-posta gönderilemedi."
389
 
390
+ #: contact_form.php:716
391
  msgid "You can attach files of the following types"
392
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
393
 
394
+ #: contact_form.php:724
395
  msgid "Send me a copy"
396
  msgstr "Bir kopyasını banada gönder"
397
 
398
+ #: contact_form.php:948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
  msgid "Contact from"
400
  msgstr "Adlı Kişiden Mail Var"
401
 
402
+ #: contact_form.php:956
403
  msgid "Email"
404
  msgstr "e-mail"
405
 
406
+ #: contact_form.php:970
407
  msgid "Site"
408
  msgstr "Site"
409
 
410
+ #: contact_form.php:1021
411
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
412
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
413
 
414
+ #: contact_form.php:1078
415
  msgid "FAQ"
416
  msgstr "Sık Sorulanlar"
417
 
418
+ #: contact_form.php:1079
419
  msgid "Support"
420
  msgstr "Destek"
421
 
422
+ #: contact_form.php:1125
423
+ msgid "Are you sure you want to delete this language?"
424
+ msgstr ""
425
+
426
  #~ msgid "E-Mail Addresse:"
427
  #~ msgstr "Indirizzo e-mail:"
428
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
5
  Requires at least: 2.9
6
  Tested up to: 3.4.2
7
- Stable tag: 3.27
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
  * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>, Jan Boeijink )
33
  * Persian (fa_IR) (thanks to <a href="me@alirezaJamali.net">Alireza Jamali</a>, alirezajamali.net)
34
  * French (fr_FR) (thanks to Alain Thomas and Vincent Cibelli)
 
35
  * German (de_DE) (thanks to Hartung Thomas)
36
  * Greek (el_GR) (thanks to Pantelis Panteloglou)
37
  * Hebrew (he_IL) (thanks to Sagive SEO)
@@ -104,6 +105,11 @@ Here is an example for German language files.
104
 
105
  == Changelog ==
106
 
 
 
 
 
 
107
  = V3.27 - 20.11.2012 =
108
  * Bugfix : The error related to the saving of the field "Change FROM fields of the contact form" was fixed.
109
 
@@ -245,6 +251,9 @@ Here is an example for German language files.
245
 
246
  == Upgrade Notice ==
247
 
 
 
 
248
  = V3.27 =
249
  The error related to the saving of the field "Change FROM fields of the contact form" was fixed.
250
 
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.4.2
7
+ Stable tag: 3.28
8
 
9
  Add Contact Form to your WordPress website.
10
 
32
  * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>, Jan Boeijink )
33
  * Persian (fa_IR) (thanks to <a href="me@alirezaJamali.net">Alireza Jamali</a>, alirezajamali.net)
34
  * French (fr_FR) (thanks to Alain Thomas and Vincent Cibelli)
35
+ * Galician (gl_ES) (thanks to Paula Rios)
36
  * German (de_DE) (thanks to Hartung Thomas)
37
  * Greek (el_GR) (thanks to Pantelis Panteloglou)
38
  * Hebrew (he_IL) (thanks to Sagive SEO)
105
 
106
  == Changelog ==
107
 
108
+ = V3.28 - 11.12.2012 =
109
+ * NEW : Galician language file is added to the plugin.
110
+ * NEW : Multilanguage labels for fields is added to the plugin.
111
+ * Update : The shortcode structure was changed.
112
+
113
  = V3.27 - 20.11.2012 =
114
  * Bugfix : The error related to the saving of the field "Change FROM fields of the contact form" was fixed.
115
 
251
 
252
  == Upgrade Notice ==
253
 
254
+ = V3.28 =
255
+ Galician language file is added to the plugin. Multilanguage labels for fields is added to the plugin. The shortcode structure was changed.
256
+
257
  = V3.27 =
258
  The error related to the saving of the field "Change FROM fields of the contact form" was fixed.
259
 
screenshot-4.jpg CHANGED
Binary file