WP Live Chat Support - Version 4.2.5

Version Description

2015-01-21 - Low Priority = * New Feature: You can now view any live chats you have missed * New Pro Feature: You can record offline messages when live chat is not online * Code Improvements: Labels added to buttons on live chat window * Code Improvements: PHP Errors fixed * Updated Translations: * Italian (Thank You Angelo Giammarresi)

Download this release

Release Info

Developer WP-LiveChat
Plugin Icon 128x128 WP Live Chat Support
Version 4.2.5
Comparing to
See all releases

Code changes from version 4.2.4 to 4.2.5

ajax.php CHANGED
@@ -159,10 +159,7 @@ if ($check == 1) {
159
  echo "There was an error sending your chat message. Please contact support";
160
  }
161
  }
162
-
163
-
164
-
165
-
166
  //User Ajax
167
 
168
  if($_POST['action'] == 'wplc_call_to_server_visitor'){
@@ -172,7 +169,8 @@ if ($check == 1) {
172
 
173
  while($i <= $iterations){
174
 
175
- if($_POST['cid'] == null || $_POST['cid'] == "" || $_POST['cid'] == "null"){
 
176
  $user = "user".time();
177
  $email = "no email set";
178
  $cid = wplc_log_user_on_page($user,$email,$_POST['wplcsession']);
@@ -180,9 +178,10 @@ if ($check == 1) {
180
  $array['status'] = wplc_return_chat_status($cid);
181
  $array['wplc_name'] = $user;
182
  $array['wplc_email'] = $email;
183
- $array['check'] = true;
184
 
185
  } else {
 
186
  $new_status = wplc_return_chat_status($_POST['cid']);
187
  $array['wplc_name'] = $_POST['wplc_name'];
188
  $array['wplc_email'] = $_POST['wplc_email'];
@@ -305,6 +304,7 @@ if ($check == 1) {
305
  }
306
  }
307
  if ($_POST['action'] == "wplc_start_chat") {
 
308
  if (isset($_POST['cid'])) {
309
  if ($_POST['name'] && $_POST['email']) {
310
  echo wplc_user_initiate_chat(sanitize_text_field($_POST['name']),sanitize_email($_POST['email']),sanitize_text_field($_POST['cid']),$_POST['wplcsession']); // echo the chat session id
159
  echo "There was an error sending your chat message. Please contact support";
160
  }
161
  }
162
+
 
 
 
163
  //User Ajax
164
 
165
  if($_POST['action'] == 'wplc_call_to_server_visitor'){
169
 
170
  while($i <= $iterations){
171
 
172
+ if($_POST['cid'] == null || $_POST['cid'] == "" || $_POST['cid'] == "null" || $_POST['cid'] == 0){
173
+ // echo 1;
174
  $user = "user".time();
175
  $email = "no email set";
176
  $cid = wplc_log_user_on_page($user,$email,$_POST['wplcsession']);
178
  $array['status'] = wplc_return_chat_status($cid);
179
  $array['wplc_name'] = $user;
180
  $array['wplc_email'] = $email;
181
+ $array['check'] = true;
182
 
183
  } else {
184
+ // echo 2;
185
  $new_status = wplc_return_chat_status($_POST['cid']);
186
  $array['wplc_name'] = $_POST['wplc_name'];
187
  $array['wplc_email'] = $_POST['wplc_email'];
304
  }
305
  }
306
  if ($_POST['action'] == "wplc_start_chat") {
307
+
308
  if (isset($_POST['cid'])) {
309
  if ($_POST['name'] && $_POST['email']) {
310
  echo wplc_user_initiate_chat(sanitize_text_field($_POST['name']),sanitize_email($_POST['email']),sanitize_text_field($_POST['cid']),$_POST['wplcsession']); // echo the chat session id
functions.php CHANGED
@@ -1,5 +1,6 @@
1
  <?php
2
  $wplc_basic_plugin_url = get_option('siteurl')."/wp-content/plugins/wp-live-chat-support/";
 
3
  function wplc_log_user_on_page($name,$email,$session) {
4
  global $wpdb;
5
  global $wplc_tblname_chats;
@@ -34,7 +35,6 @@ function wplc_update_user_on_page($cid, $status = 5,$session) {
34
  global $wpdb;
35
  global $wplc_tblname_chats;
36
 
37
-
38
 
39
  $user_data = array(
40
  'ip' => $_SERVER['REMOTE_ADDR'],
@@ -555,7 +555,7 @@ function wplc_user_initiate_chat($name,$email,$cid = null,$session) {
555
  wplc_pro_notify_via_email();
556
  }
557
 
558
- if ($cid != null) { /* change from a visitor to a chat */
559
 
560
  $user_data = array(
561
  'ip' => $_SERVER['REMOTE_ADDR'],
@@ -582,10 +582,12 @@ function wplc_user_initiate_chat($name,$email,$cid = null,$session) {
582
  return $cid;
583
  }
584
  else { // create new ID for the chat
 
585
  $user_data = array(
586
  'ip' => $_SERVER['REMOTE_ADDR'],
587
  'user_agent' => $_SERVER['HTTP_USER_AGENT']
588
  );
 
589
  $ins_array = array(
590
  'status' => '2',
591
  'timestamp' => date("Y-m-d H:i:s"),
@@ -736,14 +738,14 @@ function wplc_error_directory() {
736
  wp_mkdir_p($upload_dir['basedir'].'/wp-live-chat-support');
737
  $content = "Error log created";
738
  $fp = @fopen($upload_dir['basedir'].'/wp-live-chat-support'."/error_log.txt","w+");
739
- fwrite($fp,$content);
740
  }
741
  } else {
742
  if (!file_exists(ABSPATH.'wp-content/uploads/wp-live-chat-support')) {
743
  wp_mkdir_p(ABSPATH.'wp-content/uploads/wp-live-chat-support');
744
  $content = "Error log created";
745
  $fp = @fopen(ABSPATH.'wp-content/uploads/wp-live-chat-support'."/error_log.txt","w+");
746
- fwrite($fp,$content);
747
  }
748
 
749
  }
@@ -752,12 +754,12 @@ function wplc_error_directory() {
752
  }
753
 
754
  function wplc_error_log($error) {
755
- /*
756
  $content = "\r\n[".date("Y-m-d")."] [".date("H:i:s")."]".$error;
757
  $fp = @fopen(ABSPATH.'/wp-content/uploads/wp-live-chat-support'."/error_log.txt","a+");
758
- fwrite($fp,$content);
759
- fclose($fp);
760
- */
761
 
762
  }
763
  function Memory_Usage($decimals = 2)
@@ -809,4 +811,60 @@ function wplc_record_mem() {
809
  $fp = @fopen(ABSPATH.'/wp-content/uploads/wp-live-chat-support'."/mem_usag.csv","a+");
810
  fputcsv($fp, $data);
811
  fclose($fp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
812
  }
1
  <?php
2
  $wplc_basic_plugin_url = get_option('siteurl')."/wp-content/plugins/wp-live-chat-support/";
3
+
4
  function wplc_log_user_on_page($name,$email,$session) {
5
  global $wpdb;
6
  global $wplc_tblname_chats;
35
  global $wpdb;
36
  global $wplc_tblname_chats;
37
 
 
38
 
39
  $user_data = array(
40
  'ip' => $_SERVER['REMOTE_ADDR'],
555
  wplc_pro_notify_via_email();
556
  }
557
 
558
+ if ($cid != null) { /* change from a visitor to a chat */
559
 
560
  $user_data = array(
561
  'ip' => $_SERVER['REMOTE_ADDR'],
582
  return $cid;
583
  }
584
  else { // create new ID for the chat
585
+
586
  $user_data = array(
587
  'ip' => $_SERVER['REMOTE_ADDR'],
588
  'user_agent' => $_SERVER['HTTP_USER_AGENT']
589
  );
590
+
591
  $ins_array = array(
592
  'status' => '2',
593
  'timestamp' => date("Y-m-d H:i:s"),
738
  wp_mkdir_p($upload_dir['basedir'].'/wp-live-chat-support');
739
  $content = "Error log created";
740
  $fp = @fopen($upload_dir['basedir'].'/wp-live-chat-support'."/error_log.txt","w+");
741
+ @fwrite($fp,$content);
742
  }
743
  } else {
744
  if (!file_exists(ABSPATH.'wp-content/uploads/wp-live-chat-support')) {
745
  wp_mkdir_p(ABSPATH.'wp-content/uploads/wp-live-chat-support');
746
  $content = "Error log created";
747
  $fp = @fopen(ABSPATH.'wp-content/uploads/wp-live-chat-support'."/error_log.txt","w+");
748
+ @fwrite($fp,$content);
749
  }
750
 
751
  }
754
  }
755
 
756
  function wplc_error_log($error) {
757
+
758
  $content = "\r\n[".date("Y-m-d")."] [".date("H:i:s")."]".$error;
759
  $fp = @fopen(ABSPATH.'/wp-content/uploads/wp-live-chat-support'."/error_log.txt","a+");
760
+ @fwrite($fp,$content);
761
+ @fclose($fp);
762
+
763
 
764
  }
765
  function Memory_Usage($decimals = 2)
811
  $fp = @fopen(ABSPATH.'/wp-content/uploads/wp-live-chat-support'."/mem_usag.csv","a+");
812
  fputcsv($fp, $data);
813
  fclose($fp);
814
+ }
815
+
816
+ function wplc_admin_display_missed_chats() {
817
+
818
+ global $wpdb;
819
+ global $wplc_tblname_chats;
820
+
821
+ echo "
822
+ <table class=\"wp-list-table widefat fixed \" cellspacing=\"0\">
823
+ <thead>
824
+ <tr>
825
+ <th class='manage-column column-id'><span>" . __("Date", "wplivechat") . "</span></th>
826
+ <th scope='col' id='wplc_name_colum' class='manage-column column-id'><span>" . __("Name", "wplivechat") . "</span></th>
827
+ <th scope='col' id='wplc_email_colum' class='manage-column column-id'>" . __("Email", "wplivechat") . "</th>
828
+ <th scope='col' id='wplc_url_colum' class='manage-column column-id'>" . __("URL", "wplivechat") . "</th>
829
+ </tr>
830
+ </thead>
831
+ <tbody id=\"the-list\" class='list:wp_list_text_link'>";
832
+
833
+ if (function_exists("wplc_register_pro_version")) {
834
+ $sql = "
835
+ SELECT *
836
+ FROM $wplc_tblname_chats
837
+ WHERE (`status` = 7
838
+ OR `agent_id` = 0)
839
+ AND `email` != 'no email set'
840
+ ORDER BY `timestamp` DESC
841
+ ";
842
+ } else {
843
+ $sql = "
844
+ SELECT *
845
+ FROM $wplc_tblname_chats
846
+ WHERE `status` = 7
847
+ AND `email` != 'no email set'
848
+ ORDER BY `timestamp` DESC
849
+ ";
850
+ }
851
+
852
+ $results = $wpdb->get_results($sql);
853
+
854
+ if (!$results) {
855
+ echo "<tr><td></td><td>" . __("You have not missed any chat requests.", "wplivechat") . "</td></tr>";
856
+ } else {
857
+ foreach ($results as $result) {
858
+ echo "<tr id=\"record_" . $result->id . "\">";
859
+ echo "<td class='chat_id column-chat_d'>" . $result->timestamp . "</td>";
860
+ echo "<td class='chat_name column_chat_name' id='chat_name_" . $result->id . "'><img src=\"http://www.gravatar.com/avatar/" . md5($result->email) . "?s=30\" /> " . $result->name . "</td>";
861
+ echo "<td class='chat_email column_chat_email' id='chat_email_" . $result->id . "'><a href='mailto:" . $result->email . "' title='Email " . ".$result->email." . "'>" . $result->email . "</a></td>";
862
+ echo "<td class='chat_name column_chat_url' id='chat_url_" . $result->id . "'>" . $result->url . "</td>";
863
+ echo "</tr>";
864
+ }
865
+ }
866
+
867
+ echo "
868
+ </tbody>
869
+ </table>";
870
  }
includes/settings_page.php CHANGED
@@ -11,17 +11,16 @@
11
  if ($wplc_settings["wplc_settings_font"]) { $wplc_settings_font = $wplc_settings["wplc_settings_font"]; } else { $wplc_settings_font = "FFFFFF"; }
12
  if(get_option("WPLC_HIDE_CHAT") == true) { $wplc_hide_chat = "checked"; } else { $wplc_hide_chat = ""; };
13
 
14
-
15
  ?>
16
  <form action='' name='wplc_settings' method='POST' id='wplc_settings'>
17
 
18
  <div id="wplc_tabs">
19
  <ul>
20
- <li><a href="#tabs-1"><?php _e("General Settings","wplivechat")?></a></li>
21
- <li><a href="#tabs-2"><?php _e("Chat Box","wplivechat")?></a></li>
22
- <li><a href="#tabs-3"><?php _e("Offline Messages","wplivechat")?></a></li>
23
- <li><a href="#tabs-4"><?php _e("Styling","wplivechat")?></a></li>
24
- <li><a href="#tabs-5"><?php _e("Agents", "wplivechat") ?></a></li>
25
  </ul>
26
  <div id="tabs-1">
27
  <h3><?php _e("Main Settings",'wplivechat')?></h3>
11
  if ($wplc_settings["wplc_settings_font"]) { $wplc_settings_font = $wplc_settings["wplc_settings_font"]; } else { $wplc_settings_font = "FFFFFF"; }
12
  if(get_option("WPLC_HIDE_CHAT") == true) { $wplc_hide_chat = "checked"; } else { $wplc_hide_chat = ""; };
13
 
 
14
  ?>
15
  <form action='' name='wplc_settings' method='POST' id='wplc_settings'>
16
 
17
  <div id="wplc_tabs">
18
  <ul>
19
+ <li><a href="#tabs-1"><?php _e("General Settings","wplivechat")?></a></li>
20
+ <li><a href="#tabs-2"><?php _e("Chat Box","wplivechat")?></a></li>
21
+ <li><a href="#tabs-3"><?php _e("Offline Messages","wplivechat")?></a></li>
22
+ <li><a href="#tabs-4"><?php _e("Styling","wplivechat")?></a></li>
23
+ <li><a href="#tabs-5"><?php _e("Agents", "wplivechat") ?></a></li>
24
  </ul>
25
  <div id="tabs-1">
26
  <h3><?php _e("Main Settings",'wplivechat')?></h3>
js/wplc_u.js CHANGED
@@ -32,7 +32,6 @@ jQuery(document).ready(function() {
32
  wplc_chat_status = jQuery.cookie('wplc_chat_status');
33
  wplc_cookie_name = jQuery.cookie('wplc_name');
34
  wplc_cookie_email = jQuery.cookie('wplc_email');
35
-
36
  // Always start on 5 - ajax will then return chat status if active
37
  jQuery.cookie('wplc_chat_status', 5, { expires: 1, path: '/' });
38
  wplc_chat_status = 5;
@@ -47,7 +46,7 @@ jQuery(document).ready(function() {
47
  wplc_name: wplc_cookie_name,
48
  wplc_email: wplc_cookie_email,
49
  status:wplc_chat_status,
50
- wplcsession:wplc_session_variable
51
  };
52
  // ajax long polling function
53
  wplc_call_to_server_chat(data);
@@ -62,10 +61,11 @@ jQuery(document).ready(function() {
62
  data:data,
63
  type:"POST",
64
  success: function(response) {
 
65
  if(response){
66
  // console.log(response);
67
  response = JSON.parse(response);
68
-
69
  // set vars and cookies
70
  data['wplc_name'] = response['wplc_name'];
71
  data['wplc_email'] = response['wplc_email'];
@@ -74,14 +74,17 @@ jQuery(document).ready(function() {
74
  jQuery.cookie('wplc_cid', response['cid'], { expires: 1, path: '/' });
75
  jQuery.cookie('wplc_name', response['wplc_name'], { expires: 1, path: '/' });
76
  jQuery.cookie('wplc_email', response['wplc_email'], { expires: 1, path: '/' });
 
77
  wplc_cid = jQuery.trim(response['cid']);
 
78
  wplc_chat_status = response['status'];
79
- //console.log(jQuery.cookie('wplc_chat_status'));
80
- //console.log('1 setting wplc_chat_stauts to '+wplc_chat_status);
 
81
  jQuery.cookie('wplc_chat_status', null, { path: '/' });
82
- //console.log(jQuery.cookie('wplc_chat_status'));
83
  jQuery.cookie('wplc_chat_status', wplc_chat_status, { expires: 1, path: '/' });
84
- //console.log(jQuery.cookie('wplc_chat_status'));
85
  // handle response
86
  if(data['status'] == response['status']){
87
  if(data['status'] == 5 && wplc_init_chat_box_check == true){ // open chat box on load
@@ -156,7 +159,6 @@ jQuery(document).ready(function() {
156
  }
157
  },
158
  complete: function(response){
159
- // console.log(wplc_run);
160
  if (wplc_run) {
161
  setTimeout(function() { wplc_call_to_server_chat(data); }, 1500);
162
 
@@ -428,6 +430,7 @@ jQuery(document).ready(function() {
428
  //changed ajax url so wp_mail function will work and not stop plugin from alerting admin there is a pending chat
429
  jQuery.post(wplc_ajaxurl, data, function(response) {
430
  jQuery.cookie('wplc_chat_status', 2, { expires: date, path: '/' });
 
431
  jQuery.cookie('wplc_name', wplc_name, { path: '/' } );
432
  jQuery.cookie('wplc_email', wplc_email, { path: '/' } );
433
  //console.log("wplc_start_chat");
32
  wplc_chat_status = jQuery.cookie('wplc_chat_status');
33
  wplc_cookie_name = jQuery.cookie('wplc_name');
34
  wplc_cookie_email = jQuery.cookie('wplc_email');
 
35
  // Always start on 5 - ajax will then return chat status if active
36
  jQuery.cookie('wplc_chat_status', 5, { expires: 1, path: '/' });
37
  wplc_chat_status = 5;
46
  wplc_name: wplc_cookie_name,
47
  wplc_email: wplc_cookie_email,
48
  status:wplc_chat_status,
49
+ wplcsession:wplc_session_variable,
50
  };
51
  // ajax long polling function
52
  wplc_call_to_server_chat(data);
61
  data:data,
62
  type:"POST",
63
  success: function(response) {
64
+
65
  if(response){
66
  // console.log(response);
67
  response = JSON.parse(response);
68
+ // console.log(response);
69
  // set vars and cookies
70
  data['wplc_name'] = response['wplc_name'];
71
  data['wplc_email'] = response['wplc_email'];
74
  jQuery.cookie('wplc_cid', response['cid'], { expires: 1, path: '/' });
75
  jQuery.cookie('wplc_name', response['wplc_name'], { expires: 1, path: '/' });
76
  jQuery.cookie('wplc_email', response['wplc_email'], { expires: 1, path: '/' });
77
+
78
  wplc_cid = jQuery.trim(response['cid']);
79
+ // console.log(wplc_cid);
80
  wplc_chat_status = response['status'];
81
+ // console.log(wplc_chat_status);
82
+ // console.log(jQuery.cookie('wplc_chat_status'));
83
+ // console.log('1 setting wplc_chat_stauts to '+wplc_chat_status);
84
  jQuery.cookie('wplc_chat_status', null, { path: '/' });
85
+ // console.log(jQuery.cookie('wplc_chat_status'));
86
  jQuery.cookie('wplc_chat_status', wplc_chat_status, { expires: 1, path: '/' });
87
+ // console.log(jQuery.cookie('wplc_chat_status'));
88
  // handle response
89
  if(data['status'] == response['status']){
90
  if(data['status'] == 5 && wplc_init_chat_box_check == true){ // open chat box on load
159
  }
160
  },
161
  complete: function(response){
 
162
  if (wplc_run) {
163
  setTimeout(function() { wplc_call_to_server_chat(data); }, 1500);
164
 
430
  //changed ajax url so wp_mail function will work and not stop plugin from alerting admin there is a pending chat
431
  jQuery.post(wplc_ajaxurl, data, function(response) {
432
  jQuery.cookie('wplc_chat_status', 2, { expires: date, path: '/' });
433
+
434
  jQuery.cookie('wplc_name', wplc_name, { path: '/' } );
435
  jQuery.cookie('wplc_email', wplc_email, { path: '/' } );
436
  //console.log("wplc_start_chat");
languages/wplivechat-en_EN.mo CHANGED
Binary file
languages/wplivechat-en_EN.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wplivechat\n"
4
- "POT-Creation-Date: 2014-12-15 09:47+0200\n"
5
- "PO-Revision-Date: 2014-12-15 09:47+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -17,13 +17,13 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
18
  "live-chat-support-pro\n"
19
 
20
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:261
21
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:230
22
  msgid "Admin has closed and ended the chat"
23
  msgstr ""
24
 
25
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:296
26
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:254
27
  msgid "There is No Answer. Please Try Again Later"
28
  msgstr ""
29
 
@@ -36,43 +36,48 @@ msgstr ""
36
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:24
37
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:102
38
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
39
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:497
40
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:652
41
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:684
 
42
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:172
43
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
44
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:398
 
45
  msgid "Name"
46
  msgstr ""
47
 
48
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:25
49
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:103
50
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
51
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:498
52
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:653
53
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:685
 
54
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:173
55
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:399
 
56
  msgid "Email"
57
  msgstr ""
58
 
59
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
60
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:104
61
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
62
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:174
 
63
  msgid "URL"
64
  msgstr ""
65
 
66
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:27
67
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:105
68
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
69
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:175
70
  msgid "Status"
71
  msgstr ""
72
 
73
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:28
74
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:106
75
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
76
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:176
77
  msgid "Action"
78
  msgstr ""
@@ -117,11 +122,12 @@ msgid "Chat has been Accepted By Chat Agent "
117
  msgstr ""
118
 
119
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:177
120
- msgid "WP Live Chat Support - Offline Message from"
121
  msgstr ""
122
 
123
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
124
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:686
 
125
  msgid "Message"
126
  msgstr ""
127
 
@@ -129,652 +135,687 @@ msgstr ""
129
  msgid "Via WP Live Chat Support"
130
  msgstr ""
131
 
132
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
133
  msgid "Alert: Someone wants to chat with you on "
134
  msgstr ""
135
 
136
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
137
  msgid "Someone wants to chat with you on your website"
138
  msgstr ""
139
 
140
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
141
  msgid "Log in"
142
  msgstr ""
143
 
144
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:383
145
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:398
146
  msgid "Chat Agent"
147
  msgstr ""
148
 
149
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:388
150
  msgid "Make this user a chat agent"
151
  msgstr ""
152
 
153
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:402
154
  msgid "Your user role does not allow you to make yourself a chat agent."
155
  msgstr ""
156
 
157
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:403
158
  msgid "Please contact the administrator of this website to change this."
159
  msgstr ""
160
 
161
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:483
162
  msgid "Chat Agent Online"
163
  msgstr ""
164
 
165
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:485
166
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:490
167
  msgid "Chat Agents Online"
168
  msgstr ""
169
 
170
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:21
 
 
 
 
 
 
 
 
 
 
171
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
172
  msgid "WP Live Chat Support Settings"
173
  msgstr ""
174
 
175
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
176
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
177
  msgid "General Settings"
178
  msgstr ""
179
 
180
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
181
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
182
  msgid "Chat Box"
183
  msgstr ""
184
 
185
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
186
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
187
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
188
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:259
 
189
  msgid "Offline Messages"
190
  msgstr ""
191
 
192
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
193
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:326
194
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:23
195
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:296
196
  msgid "Styling"
197
  msgstr ""
198
 
199
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:37
200
  msgid "Chat Agents"
201
  msgstr ""
202
 
203
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
204
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
205
  msgid "Main Settings"
206
  msgstr ""
207
 
208
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
209
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
210
  msgid "Chat enabled"
211
  msgstr ""
212
 
213
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
214
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
215
  msgid "Yes"
216
  msgstr ""
217
 
218
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:47
219
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
220
  msgid "No"
221
  msgstr ""
222
 
223
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:53
224
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
225
  msgid "Hide Chat"
226
  msgstr ""
227
 
228
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:54
229
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:41
230
  msgid "Hides chat for 24hrs when user clicks X"
231
  msgstr ""
232
 
233
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:62
234
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
235
  msgid "Require Name And Email"
236
  msgstr ""
237
 
238
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:63
239
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:58
240
  msgid ""
241
  "Users will have to enter their Name and Email Address when starting a chat"
242
  msgstr ""
243
 
244
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
245
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
246
  msgid "Input Field Replacement Text"
247
  msgstr ""
248
 
249
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:72
250
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
251
  msgid "This is the text that will show in place of the Name And Email fields"
252
  msgstr ""
253
 
254
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:80
255
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:75
256
  msgid "Use Logged In User Details"
257
  msgstr ""
258
 
259
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
260
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
261
  msgid ""
262
  "A user's Name and Email Address will be used by default if they are logged "
263
  "in."
264
  msgstr ""
265
 
266
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
267
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
268
  msgid "Enable On Mobile Devices"
269
  msgstr ""
270
 
271
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
272
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
273
  msgid ""
274
  "Disabling this will mean that the Chat Box will not be displayed on mobile "
275
  "devices. (Smartphones and Tablets)"
276
  msgstr ""
277
 
278
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
279
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
280
  msgid "Include chat window on the following pages:"
281
  msgstr ""
282
 
283
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:99
284
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:94
285
  msgid ""
286
  "Show the chat window on the following pages. Leave blank to show on all. "
287
  "(Use comma-separated Page ID's)"
288
  msgstr ""
289
 
290
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
291
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:113
292
  msgid ""
293
  "Do not include and exclude pages at the same time. Please only use one or "
294
  "the other"
295
  msgstr ""
296
 
297
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:108
298
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
299
  msgid "Exclude chat window on the following pages:"
300
  msgstr ""
301
 
302
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
303
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:110
304
  msgid ""
305
  "Do not show the chat window on the following pages. Leave blank to show on "
306
  "all. (Use comma-separated Page ID's)"
307
  msgstr ""
308
 
309
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:123
310
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:128
311
  msgid "Chat Window Settings"
312
  msgstr ""
313
 
314
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
315
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
316
  msgid "Chat box alignment"
317
  msgstr ""
318
 
 
 
 
 
 
319
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
320
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:134
321
- msgid "Bottom left"
322
  msgstr ""
323
 
324
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
325
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
326
- msgid "Bottom right"
327
  msgstr ""
328
 
329
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:131
330
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
331
- msgid "Left"
332
- msgstr ""
333
-
334
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:132
335
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
336
  msgid "Right"
337
  msgstr ""
338
 
339
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
340
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:143
341
  msgid "Auto Pop-up"
342
  msgstr ""
343
 
344
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:142
345
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
346
  msgid ""
347
  "Expand the chat box automatically (prompts the user to enter their name and "
348
  "email address)."
349
  msgstr ""
350
 
351
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
352
  msgid "Name "
353
  msgstr ""
354
 
355
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
356
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:169
357
  msgid "Picture"
358
  msgstr ""
359
 
360
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:170
361
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:172
362
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:188
363
  msgid "Upload Image"
364
  msgstr ""
365
 
366
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
367
  msgid "Remove Image"
368
  msgstr ""
369
 
370
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:173
371
  msgid "Recomended Size 40px x 40px"
372
  msgstr ""
373
 
374
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:179
375
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:185
376
  msgid "Logo"
377
  msgstr ""
378
 
379
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:187
380
  msgid "Upload Logo"
381
  msgstr ""
382
 
383
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:189
384
  msgid "Remove Logo"
385
  msgstr ""
386
 
387
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:190
388
  msgid "Recomended Size 250px x 40px"
389
  msgstr ""
390
 
391
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:196
392
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:201
393
  msgid "Chat delay (seconds)"
394
  msgstr ""
395
 
396
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:199
397
  msgid "how long it takes for your chat window to pop up"
398
  msgstr ""
399
 
400
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:205
401
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:217
402
  msgid "Chat notifications"
403
  msgstr ""
404
 
405
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:209
406
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:221
407
  msgid "Alert me via email as soon as someone wants to chat"
408
  msgstr ""
409
 
410
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:210
411
  msgid "(while online only)"
412
  msgstr ""
413
 
414
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:215
415
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:233
416
  msgid "Display name and avatar in chat"
417
  msgstr ""
418
 
419
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:221
420
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
421
  msgid "Display the agent and user name above each message in the chat window."
422
  msgstr ""
423
 
424
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:226
425
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:244
426
  msgid "Only show the chat window to users that are logged in"
427
  msgstr ""
428
 
429
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:234
430
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
431
  msgid ""
432
  "By checking this, only users that are logged in will be able to chat with "
433
  "you."
434
  msgstr ""
435
 
436
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:245
437
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:263
 
 
 
 
 
 
 
 
 
 
 
 
438
  msgid "Email Address"
439
  msgstr ""
440
 
441
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:249
442
  msgid "Email address where offline messages are delivered to"
443
  msgstr ""
444
 
445
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:257
446
  msgid "Sending Method"
447
  msgstr ""
448
 
449
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:258
450
  msgid "WP Mail"
451
  msgstr ""
452
 
453
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:259
454
  msgid "PHP Mailer"
455
  msgstr ""
456
 
457
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:271
458
  msgid "Host"
459
  msgstr ""
460
 
461
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:279
462
  msgid "Port"
463
  msgstr ""
464
 
465
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:287
466
  msgid "Username"
467
  msgstr ""
468
 
469
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:295
470
  msgid "Password"
471
  msgstr ""
472
 
473
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:304
474
  msgid "Offline Chat Box Title"
475
  msgstr ""
476
 
477
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:312
478
  msgid "Offline Text Fields"
479
  msgstr ""
480
 
481
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:329
482
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:299
483
  msgid "Chat box fill color"
484
  msgstr ""
485
 
486
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:335
487
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
488
  msgid "Chat box font color"
489
  msgstr ""
490
 
491
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:341
492
  msgid "First Section Text"
493
  msgstr ""
494
 
495
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:350
496
  msgid "Intro Text"
497
  msgstr ""
498
 
499
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
500
  msgid "Second Section Text"
501
  msgstr ""
502
 
503
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:363
504
  msgid "Reactivate Chat Section Text"
505
  msgstr ""
506
 
507
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:371
508
  msgid "User chat welcome"
509
  msgstr ""
510
 
511
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:380
512
  msgid "Other text"
513
  msgstr ""
514
 
515
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:400
 
 
 
 
516
  msgid ""
517
  "To add or remove a user as a chat agent, go into the users profile and "
518
  "select the checkbox Chat Agent and click save."
519
  msgstr ""
520
 
521
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:401
522
  msgid "If there are no chat agents online, the chat will show as offline"
523
  msgstr ""
524
 
525
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
526
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
527
  msgid "Save Settings"
528
  msgstr ""
529
 
530
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:373
531
  msgid "Dear User"
532
  msgstr ""
533
 
534
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:374
535
  msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
536
  msgstr ""
537
 
538
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:374
539
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:666
540
  msgid "update to at least version"
541
  msgstr ""
542
 
543
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:374
544
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:666
545
  msgid "to ensure all functionality is in working order"
546
  msgstr ""
547
 
548
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:375
549
  msgid ""
550
  "You're live chat box on your website has been temporarily disabled until the "
551
  "basic plugin has been updated. This is to ensure a smooth and hassle-free "
552
  "user experience for both yourself and your visitors."
553
  msgstr ""
554
 
555
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:376
556
  msgid ""
557
  "You can update your plugin <a href='./update-core.php'>here</a> or <a "
558
  "href='./plugins.php'>here</a>."
559
  msgstr ""
560
 
561
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:377
562
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:669
563
  msgid "If you are having difficulty updating the plugin, please contact"
564
  msgstr ""
565
 
566
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:393
567
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:665
568
  msgid "Dear Pro User"
569
  msgstr ""
570
 
571
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:394
572
  msgid ""
573
  "WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
574
  "download the latest copy from"
575
  msgstr ""
576
 
577
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:496
578
- msgid "Date"
579
  msgstr ""
580
 
581
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:507
582
- msgid "No chats available at the moment"
583
  msgstr ""
584
 
585
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:688
 
 
 
 
586
  msgid "Send message"
587
  msgstr ""
588
 
589
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:716
590
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:434
591
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:816
592
  msgid "Send"
593
  msgstr ""
594
 
595
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:739
596
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1193
597
  msgid "Please click 'Start Chat' to initiate a chat with an agent"
598
  msgstr ""
599
 
600
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:785
601
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1205
602
  msgid "Your settings have been saved."
603
  msgstr ""
604
 
605
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:806
606
  msgid "Chat sessions"
607
  msgstr ""
608
 
609
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:815
610
  msgid ""
611
  "Please note: This window must be open in order to receive new chat "
612
  "notifications."
613
  msgstr ""
614
 
615
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:820
616
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:719
617
  msgid "Visitors on site"
618
  msgstr ""
619
 
620
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:893
621
  msgid "Unknown"
622
  msgstr ""
623
 
624
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:901
625
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:769
626
  msgid "End chat"
627
  msgstr ""
628
 
629
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:906
630
  msgid "Attempting to open the chat window... Please be patient."
631
  msgstr ""
632
 
633
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:929
634
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:785
635
  msgid "Site Info"
636
  msgstr ""
637
 
638
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:931
639
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:787
640
  msgid "Chat initiated on:"
641
  msgstr ""
642
 
643
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:935
644
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:791
645
  msgid "Advanced Info"
646
  msgstr ""
647
 
648
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:937
649
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:793
650
  msgid "Browser:"
651
  msgstr ""
652
 
653
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:938
654
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:794
655
  msgid "IP Address:"
656
  msgstr ""
657
 
658
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:999
659
  msgid "This chat has already been answered. Please close the chat window"
660
  msgstr ""
661
 
662
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1063
663
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:921
664
  msgid "User has opened the chat window"
665
  msgstr ""
666
 
667
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1068
668
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:926
669
  msgid "User has minimized the chat window"
670
  msgstr ""
671
 
672
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1073
673
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:931
674
  msgid "User has maximized the chat window"
675
  msgstr ""
676
 
677
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1078
678
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:936
679
  msgid "User has closed and ended the chat"
680
  msgstr ""
681
 
682
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1412
683
  msgid ""
684
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
685
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
686
  msgstr ""
687
 
688
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1417
689
  msgid "An unknown error occurred"
690
  msgstr ""
691
 
692
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
693
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:196
694
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:700
695
  msgid "Live Chat"
696
  msgstr ""
697
 
698
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
699
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:197
700
  msgid "Settings"
701
  msgstr ""
702
 
703
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1569
704
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1571
705
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:198
 
 
 
 
 
706
  msgid "History"
707
  msgstr ""
708
 
709
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1569
710
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1582
711
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1593
712
- msgid "Quick Responses"
713
  msgstr ""
714
 
715
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1572
716
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
717
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:199
718
  msgid "Feedback"
719
  msgstr ""
720
 
721
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1576
722
  msgid "Error Log"
723
  msgstr ""
724
 
725
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1583
726
  msgid "Quick Response"
727
  msgstr ""
728
 
729
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1584
730
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1587
731
  msgid "New Quick Response"
732
  msgstr ""
733
 
734
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1585
735
  msgid "Add New Quick Response"
736
  msgstr ""
737
 
738
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1586
739
  msgid "Edit Quick Response"
740
  msgstr ""
741
 
742
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1588
743
  msgid "All Quick Responses"
744
  msgstr ""
745
 
746
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1589
747
  msgid "View Quick Responses"
748
  msgstr ""
749
 
750
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1590
751
  msgid "Search Quick Responses"
752
  msgstr ""
753
 
754
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1591
755
  msgid "No Quick Responses found"
756
  msgstr ""
757
 
758
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1592
759
  msgid "No Quick Responses found in the Trash"
760
  msgstr ""
761
 
762
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1597
763
  msgid "Quick Responses for WP Live Chat Support Pro"
764
  msgstr ""
765
 
766
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1656
767
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1658
768
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
769
  msgid "Assign Quick Response"
770
  msgstr ""
771
 
772
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1660
773
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
774
  msgid "Select"
775
  msgstr ""
776
 
777
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1667
778
  msgid "What is this?"
779
  msgstr ""
780
 
@@ -810,10 +851,14 @@ msgstr ""
810
  msgid "User is browsing but doesn't want to chat"
811
  msgstr ""
812
 
813
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:609
814
  msgid "Get Pro Add-on to accept more chats"
815
  msgstr ""
816
 
 
 
 
 
817
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
818
  msgid "WP Live Chat Support Feedback"
819
  msgstr ""
@@ -838,10 +883,21 @@ msgstr ""
838
  msgid "Send Feedback"
839
  msgstr ""
840
 
841
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
842
  msgid "Agents"
843
  msgstr ""
844
 
 
 
 
 
 
 
 
 
 
 
 
845
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
846
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
847
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
@@ -850,7 +906,12 @@ msgstr ""
850
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:191
851
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
852
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:224
853
- msgid "available in the"
 
 
 
 
 
854
  msgstr ""
855
 
856
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:48
@@ -861,87 +922,72 @@ msgstr ""
861
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:192
862
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
863
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
864
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:270
865
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:284
866
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:334
867
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1169
868
- msgid "Pro Add-on"
869
- msgstr ""
870
-
871
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:49
872
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:102
873
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:118
874
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:161
875
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
876
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
877
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
878
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
879
  msgid "only"
880
  msgstr ""
881
 
882
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:50
883
  msgid " once off. Updates included forever."
884
  msgstr ""
885
 
886
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:269
887
  msgid "Get offline messages with the "
888
  msgstr ""
889
 
890
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:278
891
  msgid "Offline text"
892
  msgstr ""
893
 
894
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:283
895
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
896
  msgid "Edit these text fields using the "
897
  msgstr ""
898
 
899
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:312
900
  msgid "First section text"
901
  msgstr ""
902
 
903
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:314
904
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:350
905
  msgid "Questions?"
906
  msgstr ""
907
 
908
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:315
909
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:350
910
  msgid "Chat with us"
911
  msgstr ""
912
 
913
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:319
914
  msgid "Second section text"
915
  msgstr ""
916
 
917
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
918
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:415
919
  msgid "Start Chat"
920
  msgstr ""
921
 
922
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:322
923
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:422
924
  msgid "Connecting you to a sales person. Please be patient."
925
  msgstr ""
926
 
927
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:328
928
  msgid "Reactivate chat section text"
929
  msgstr ""
930
 
931
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:330
932
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:425
933
  msgid "Reactivating your previous chat..."
934
  msgstr ""
935
 
936
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:345
937
  msgid "Multiple Agents"
938
  msgstr ""
939
 
940
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
941
  msgid "Get"
942
  msgstr ""
943
 
944
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
945
  msgid "Multiple agent support"
946
  msgstr ""
947
 
@@ -981,104 +1027,118 @@ msgstr ""
981
  msgid "Skip"
982
  msgstr ""
983
 
984
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:168
985
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1059
986
  msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
987
  msgstr ""
988
 
989
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:360
990
  msgid "Start Live Chat"
991
  msgstr ""
992
 
993
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:430
994
  msgid "Press ENTER to send your message"
995
  msgstr ""
996
 
997
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:666
998
  msgid ""
999
  "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1000
  "strong>. Please"
1001
  msgstr ""
1002
 
1003
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:667
1004
  msgid ""
1005
  "You're live chat box on your website has been temporarily disabled until the "
1006
  "Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
1007
  "experience for both yourself and your visitors."
1008
  msgstr ""
1009
 
1010
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:668
1011
  msgid ""
1012
  "You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
1013
  "plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
1014
  "version/' target='_BLANK'>here</a>."
1015
  msgstr ""
1016
 
1017
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:694
1018
  msgid "Experiencing problems with the plugin?"
1019
  msgstr ""
1020
 
1021
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:696
1022
  msgid "Review the documentation."
1023
  msgstr ""
1024
 
1025
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:697
1026
  msgid "Or ask a question on our"
1027
  msgstr ""
1028
 
1029
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
1030
  msgid "With the Pro add-on of WP Live Chat Support, you can"
1031
  msgstr ""
1032
 
1033
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
1034
  msgid "see who's online and initiate chats"
1035
  msgstr ""
1036
 
1037
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
1038
  msgid "with your online visitors with the click of a button."
1039
  msgstr ""
1040
 
1041
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
1042
  msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
1043
  msgstr ""
1044
 
1045
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
1046
  msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
1047
  msgstr ""
1048
 
1049
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:764
1050
  msgid "Previous"
1051
  msgstr ""
1052
 
1053
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:764
1054
  msgid "Active"
1055
  msgstr ""
1056
 
1057
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
1058
  msgid "Add Quick Responses to your Live Chat"
1059
  msgstr ""
1060
 
1061
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
1062
  msgid "Pro version only"
1063
  msgstr ""
1064
 
1065
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:814
1066
  msgid "type here..."
1067
  msgstr ""
1068
 
1069
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1164
1070
  msgid "WP Live Chat History"
1071
  msgstr ""
1072
 
1073
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1074
  msgid "Thank You for your feedback!"
1075
  msgstr ""
1076
 
1077
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1224
1078
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1237
1079
  msgid "Thank you for your feedback. We will be in touch soon"
1080
  msgstr ""
1081
 
1082
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1241
1083
  msgid "There was a problem sending your feedback. Please log your feedback on "
1084
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wplivechat\n"
4
+ "POT-Creation-Date: 2015-01-21 10:07+0200\n"
5
+ "PO-Revision-Date: 2015-01-21 10:07+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en\n"
17
  "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
18
  "live-chat-support-pro\n"
19
 
20
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:264
21
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:229
22
  msgid "Admin has closed and ended the chat"
23
  msgstr ""
24
 
25
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:299
26
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:253
27
  msgid "There is No Answer. Please Try Again Later"
28
  msgstr ""
29
 
36
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:24
37
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:102
38
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
39
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:582
40
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:542
41
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:706
42
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:745
43
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:172
44
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:826
45
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:152
46
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:386
47
  msgid "Name"
48
  msgstr ""
49
 
50
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:25
51
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:103
52
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
53
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:583
54
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
55
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:707
56
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:746
57
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:173
58
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:827
59
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:387
60
  msgid "Email"
61
  msgstr ""
62
 
63
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
64
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:104
65
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:544
66
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:174
67
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:828
68
  msgid "URL"
69
  msgstr ""
70
 
71
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:27
72
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:105
73
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:545
74
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:175
75
  msgid "Status"
76
  msgstr ""
77
 
78
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:28
79
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:106
80
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:546
81
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:176
82
  msgid "Action"
83
  msgstr ""
122
  msgstr ""
123
 
124
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:177
125
+ msgid "WP Live Chat Support - Offline Message from "
126
  msgstr ""
127
 
128
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
129
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:584
130
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:747
131
  msgid "Message"
132
  msgstr ""
133
 
135
  msgid "Via WP Live Chat Support"
136
  msgstr ""
137
 
138
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:226
139
  msgid "Alert: Someone wants to chat with you on "
140
  msgstr ""
141
 
142
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
143
  msgid "Someone wants to chat with you on your website"
144
  msgstr ""
145
 
146
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
147
  msgid "Log in"
148
  msgstr ""
149
 
150
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
151
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:397
152
  msgid "Chat Agent"
153
  msgstr ""
154
 
155
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:387
156
  msgid "Make this user a chat agent"
157
  msgstr ""
158
 
159
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:401
160
  msgid "Your user role does not allow you to make yourself a chat agent."
161
  msgstr ""
162
 
163
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:402
164
  msgid "Please contact the administrator of this website to change this."
165
  msgstr ""
166
 
167
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:482
168
  msgid "Chat Agent Online"
169
  msgstr ""
170
 
171
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:484
172
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:489
173
  msgid "Chat Agents Online"
174
  msgstr ""
175
 
176
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:581
177
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:541
178
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:825
179
+ msgid "Date"
180
+ msgstr ""
181
+
182
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:598
183
+ msgid "You have not received any offline messages."
184
+ msgstr ""
185
+
186
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:20
187
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
188
  msgid "WP Live Chat Support Settings"
189
  msgstr ""
190
 
191
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:32
192
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:19
193
  msgid "General Settings"
194
  msgstr ""
195
 
196
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
197
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
198
  msgid "Chat Box"
199
  msgstr ""
200
 
201
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
202
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
203
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1720
204
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
205
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:258
206
  msgid "Offline Messages"
207
  msgstr ""
208
 
209
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
210
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:339
211
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
212
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:304
213
  msgid "Styling"
214
  msgstr ""
215
 
216
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
217
  msgid "Chat Agents"
218
  msgstr ""
219
 
220
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:39
221
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
222
  msgid "Main Settings"
223
  msgstr ""
224
 
225
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:42
226
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:29
227
  msgid "Chat enabled"
228
  msgstr ""
229
 
230
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:45
231
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:32
232
  msgid "Yes"
233
  msgstr ""
234
 
235
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
236
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
237
  msgid "No"
238
  msgstr ""
239
 
240
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:52
241
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
242
  msgid "Hide Chat"
243
  msgstr ""
244
 
245
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:53
246
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
247
  msgid "Hides chat for 24hrs when user clicks X"
248
  msgstr ""
249
 
250
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
251
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:56
252
  msgid "Require Name And Email"
253
  msgstr ""
254
 
255
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:62
256
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
257
  msgid ""
258
  "Users will have to enter their Name and Email Address when starting a chat"
259
  msgstr ""
260
 
261
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:70
262
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:65
263
  msgid "Input Field Replacement Text"
264
  msgstr ""
265
 
266
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
267
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
268
  msgid "This is the text that will show in place of the Name And Email fields"
269
  msgstr ""
270
 
271
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:79
272
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:74
273
  msgid "Use Logged In User Details"
274
  msgstr ""
275
 
276
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:80
277
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:75
278
  msgid ""
279
  "A user's Name and Email Address will be used by default if they are logged "
280
  "in."
281
  msgstr ""
282
 
283
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
284
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:83
285
  msgid "Enable On Mobile Devices"
286
  msgstr ""
287
 
288
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
289
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
290
  msgid ""
291
  "Disabling this will mean that the Chat Box will not be displayed on mobile "
292
  "devices. (Smartphones and Tablets)"
293
  msgstr ""
294
 
295
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:97
296
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
297
  msgid "Include chat window on the following pages:"
298
  msgstr ""
299
 
300
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
301
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
302
  msgid ""
303
  "Show the chat window on the following pages. Leave blank to show on all. "
304
  "(Use comma-separated Page ID's)"
305
  msgstr ""
306
 
307
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:102
308
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
309
  msgid ""
310
  "Do not include and exclude pages at the same time. Please only use one or "
311
  "the other"
312
  msgstr ""
313
 
314
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:107
315
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
316
  msgid "Exclude chat window on the following pages:"
317
  msgstr ""
318
 
319
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:108
320
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
321
  msgid ""
322
  "Do not show the chat window on the following pages. Leave blank to show on "
323
  "all. (Use comma-separated Page ID's)"
324
  msgstr ""
325
 
326
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:122
327
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:127
328
  msgid "Chat Window Settings"
329
  msgstr ""
330
 
331
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:125
332
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:130
333
  msgid "Chat box alignment"
334
  msgstr ""
335
 
336
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:128
337
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:133
338
+ msgid "Bottom left"
339
+ msgstr ""
340
+
341
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
342
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:134
343
+ msgid "Bottom right"
344
  msgstr ""
345
 
346
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
347
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
348
+ msgid "Left"
349
  msgstr ""
350
 
351
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:131
352
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
 
 
 
 
 
353
  msgid "Right"
354
  msgstr ""
355
 
356
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:137
357
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:142
358
  msgid "Auto Pop-up"
359
  msgstr ""
360
 
361
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:141
362
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:146
363
  msgid ""
364
  "Expand the chat box automatically (prompts the user to enter their name and "
365
  "email address)."
366
  msgstr ""
367
 
368
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:147
369
  msgid "Name "
370
  msgstr ""
371
 
372
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:161
373
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:168
374
  msgid "Picture"
375
  msgstr ""
376
 
377
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:169
378
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:171
379
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
380
  msgid "Upload Image"
381
  msgstr ""
382
 
383
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:171
384
  msgid "Remove Image"
385
  msgstr ""
386
 
387
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
388
  msgid "Recomended Size 40px x 40px"
389
  msgstr ""
390
 
391
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:178
392
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:184
393
  msgid "Logo"
394
  msgstr ""
395
 
396
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:186
397
  msgid "Upload Logo"
398
  msgstr ""
399
 
400
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:188
401
  msgid "Remove Logo"
402
  msgstr ""
403
 
404
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:189
405
  msgid "Recomended Size 250px x 40px"
406
  msgstr ""
407
 
408
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:195
409
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
410
  msgid "Chat delay (seconds)"
411
  msgstr ""
412
 
413
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:198
414
  msgid "how long it takes for your chat window to pop up"
415
  msgstr ""
416
 
417
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:204
418
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
419
  msgid "Chat notifications"
420
  msgstr ""
421
 
422
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
423
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:220
424
  msgid "Alert me via email as soon as someone wants to chat"
425
  msgstr ""
426
 
427
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:209
428
  msgid "(while online only)"
429
  msgstr ""
430
 
431
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:214
432
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
433
  msgid "Display name and avatar in chat"
434
  msgstr ""
435
 
436
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:220
437
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
438
  msgid "Display the agent and user name above each message in the chat window."
439
  msgstr ""
440
 
441
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
442
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:243
443
  msgid "Only show the chat window to users that are logged in"
444
  msgstr ""
445
 
446
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:233
447
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
448
  msgid ""
449
  "By checking this, only users that are logged in will be able to chat with "
450
  "you."
451
  msgstr ""
452
 
453
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:245
454
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:262
455
+ msgid "Do not allow users to send offline messages"
456
+ msgstr ""
457
+
458
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:253
459
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:266
460
+ msgid ""
461
+ "The chat window will be hidden when it is offline. Users will not be able to "
462
+ "send offline messages to you"
463
+ msgstr ""
464
+
465
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:258
466
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:271
467
  msgid "Email Address"
468
  msgstr ""
469
 
470
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:262
471
  msgid "Email address where offline messages are delivered to"
472
  msgstr ""
473
 
474
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:270
475
  msgid "Sending Method"
476
  msgstr ""
477
 
478
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:271
479
  msgid "WP Mail"
480
  msgstr ""
481
 
482
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:272
483
  msgid "PHP Mailer"
484
  msgstr ""
485
 
486
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:284
487
  msgid "Host"
488
  msgstr ""
489
 
490
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:292
491
  msgid "Port"
492
  msgstr ""
493
 
494
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:300
495
  msgid "Username"
496
  msgstr ""
497
 
498
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:308
499
  msgid "Password"
500
  msgstr ""
501
 
502
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:317
503
  msgid "Offline Chat Box Title"
504
  msgstr ""
505
 
506
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:325
507
  msgid "Offline Text Fields"
508
  msgstr ""
509
 
510
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:342
511
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:307
512
  msgid "Chat box fill color"
513
  msgstr ""
514
 
515
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:348
516
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:313
517
  msgid "Chat box font color"
518
  msgstr ""
519
 
520
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:354
521
  msgid "First Section Text"
522
  msgstr ""
523
 
524
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:363
525
  msgid "Intro Text"
526
  msgstr ""
527
 
528
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:369
529
  msgid "Second Section Text"
530
  msgstr ""
531
 
532
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:376
533
  msgid "Reactivate Chat Section Text"
534
  msgstr ""
535
 
536
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:384
537
  msgid "User chat welcome"
538
  msgstr ""
539
 
540
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:393
541
  msgid "Other text"
542
  msgstr ""
543
 
544
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:408
545
+ msgid "Current Users that are Chat Agents"
546
+ msgstr ""
547
+
548
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:413
549
  msgid ""
550
  "To add or remove a user as a chat agent, go into the users profile and "
551
  "select the checkbox Chat Agent and click save."
552
  msgstr ""
553
 
554
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:414
555
  msgid "If there are no chat agents online, the chat will show as offline"
556
  msgstr ""
557
 
558
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:418
559
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:357
560
  msgid "Save Settings"
561
  msgstr ""
562
 
563
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:423
564
  msgid "Dear User"
565
  msgstr ""
566
 
567
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:424
568
  msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
569
  msgstr ""
570
 
571
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:424
572
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:684
573
  msgid "update to at least version"
574
  msgstr ""
575
 
576
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:424
577
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:684
578
  msgid "to ensure all functionality is in working order"
579
  msgstr ""
580
 
581
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:425
582
  msgid ""
583
  "You're live chat box on your website has been temporarily disabled until the "
584
  "basic plugin has been updated. This is to ensure a smooth and hassle-free "
585
  "user experience for both yourself and your visitors."
586
  msgstr ""
587
 
588
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:426
589
  msgid ""
590
  "You can update your plugin <a href='./update-core.php'>here</a> or <a "
591
  "href='./plugins.php'>here</a>."
592
  msgstr ""
593
 
594
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:427
595
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:687
596
  msgid "If you are having difficulty updating the plugin, please contact"
597
  msgstr ""
598
 
599
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:440
600
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:683
601
  msgid "Dear Pro User"
602
  msgstr ""
603
 
604
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:441
605
  msgid ""
606
  "WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
607
  "download the latest copy from"
608
  msgstr ""
609
 
610
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:552
611
+ msgid "No chats available at the moment"
612
  msgstr ""
613
 
614
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:657
615
+ msgid "Minize Chat Window"
616
  msgstr ""
617
 
618
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:658
619
+ msgid "Close Chat Window"
620
+ msgstr ""
621
+
622
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:749
623
  msgid "Send message"
624
  msgstr ""
625
 
626
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:777
627
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:422
628
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:834
629
  msgid "Send"
630
  msgstr ""
631
 
632
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:817
633
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1229
634
  msgid "Please click 'Start Chat' to initiate a chat with an agent"
635
  msgstr ""
636
 
637
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:914
638
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1240
639
  msgid "Your settings have been saved."
640
  msgstr ""
641
 
642
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:928
643
  msgid "Chat sessions"
644
  msgstr ""
645
 
646
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:938
647
  msgid ""
648
  "Please note: This window must be open in order to receive new chat "
649
  "notifications."
650
  msgstr ""
651
 
652
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:943
653
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:737
654
  msgid "Visitors on site"
655
  msgstr ""
656
 
657
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1012
658
  msgid "Unknown"
659
  msgstr ""
660
 
661
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1020
662
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:787
663
  msgid "End chat"
664
  msgstr ""
665
 
666
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1025
667
  msgid "Attempting to open the chat window... Please be patient."
668
  msgstr ""
669
 
670
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1048
671
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
672
  msgid "Site Info"
673
  msgstr ""
674
 
675
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1050
676
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:805
677
  msgid "Chat initiated on:"
678
  msgstr ""
679
 
680
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1054
681
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:809
682
  msgid "Advanced Info"
683
  msgstr ""
684
 
685
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1056
686
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:811
687
  msgid "Browser:"
688
  msgstr ""
689
 
690
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1057
691
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:812
692
  msgid "IP Address:"
693
  msgstr ""
694
 
695
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1122
696
  msgid "This chat has already been answered. Please close the chat window"
697
  msgstr ""
698
 
699
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1190
700
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:937
701
  msgid "User has opened the chat window"
702
  msgstr ""
703
 
704
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1195
705
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:942
706
  msgid "User has minimized the chat window"
707
  msgstr ""
708
 
709
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1200
710
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:947
711
  msgid "User has maximized the chat window"
712
  msgstr ""
713
 
714
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1205
715
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:952
716
  msgid "User has closed and ended the chat"
717
  msgstr ""
718
 
719
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1582
720
  msgid ""
721
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
722
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
723
  msgstr ""
724
 
725
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1587
726
  msgid "An unknown error occurred"
727
  msgstr ""
728
 
729
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1714
730
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:215
731
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:718
732
  msgid "Live Chat"
733
  msgstr ""
734
 
735
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1715
736
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:216
737
  msgid "Settings"
738
  msgstr ""
739
 
740
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1716
741
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1731
742
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1742
743
+ msgid "Quick Responses"
744
+ msgstr ""
745
+
746
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1718
747
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:217
748
  msgid "History"
749
  msgstr ""
750
 
751
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1719
752
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:218
753
+ msgid "Missed Chats"
 
754
  msgstr ""
755
 
756
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1721
757
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
758
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:219
759
  msgid "Feedback"
760
  msgstr ""
761
 
762
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1725
763
  msgid "Error Log"
764
  msgstr ""
765
 
766
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1732
767
  msgid "Quick Response"
768
  msgstr ""
769
 
770
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1733
771
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1736
772
  msgid "New Quick Response"
773
  msgstr ""
774
 
775
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1734
776
  msgid "Add New Quick Response"
777
  msgstr ""
778
 
779
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1735
780
  msgid "Edit Quick Response"
781
  msgstr ""
782
 
783
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1737
784
  msgid "All Quick Responses"
785
  msgstr ""
786
 
787
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1738
788
  msgid "View Quick Responses"
789
  msgstr ""
790
 
791
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1739
792
  msgid "Search Quick Responses"
793
  msgstr ""
794
 
795
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1740
796
  msgid "No Quick Responses found"
797
  msgstr ""
798
 
799
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1741
800
  msgid "No Quick Responses found in the Trash"
801
  msgstr ""
802
 
803
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1746
804
  msgid "Quick Responses for WP Live Chat Support Pro"
805
  msgstr ""
806
 
807
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1801
808
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1805
809
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
810
  msgid "Assign Quick Response"
811
  msgstr ""
812
 
813
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1808
814
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
815
  msgid "Select"
816
  msgstr ""
817
 
818
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1814
819
  msgid "What is this?"
820
  msgstr ""
821
 
851
  msgid "User is browsing but doesn't want to chat"
852
  msgstr ""
853
 
854
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:611
855
  msgid "Get Pro Add-on to accept more chats"
856
  msgstr ""
857
 
858
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:855
859
+ msgid "You have not missed any chat requests."
860
+ msgstr ""
861
+
862
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
863
  msgid "WP Live Chat Support Feedback"
864
  msgstr ""
883
  msgid "Send Feedback"
884
  msgstr ""
885
 
886
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:23
887
  msgid "Agents"
888
  msgstr ""
889
 
890
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
891
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:99
892
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:115
893
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:158
894
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:174
895
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
896
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
897
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:223
898
+ msgid "available in the"
899
+ msgstr ""
900
+
901
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
902
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
903
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
906
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:191
907
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
908
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:224
909
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:278
910
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
911
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
912
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1185
913
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1206
914
+ msgid "Pro Add-on"
915
  msgstr ""
916
 
917
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:48
922
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:192
923
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
924
  #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
925
  msgid "only"
926
  msgstr ""
927
 
928
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:49
929
  msgid " once off. Updates included forever."
930
  msgstr ""
931
 
932
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:277
933
  msgid "Get offline messages with the "
934
  msgstr ""
935
 
936
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:286
937
  msgid "Offline text"
938
  msgstr ""
939
 
940
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:291
941
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:341
942
  msgid "Edit these text fields using the "
943
  msgstr ""
944
 
945
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:320
946
  msgid "First section text"
947
  msgstr ""
948
 
949
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:322
950
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:338
951
  msgid "Questions?"
952
  msgstr ""
953
 
954
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:323
955
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:338
956
  msgid "Chat with us"
957
  msgstr ""
958
 
959
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:327
960
  msgid "Second section text"
961
  msgstr ""
962
 
963
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:329
964
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:403
965
  msgid "Start Chat"
966
  msgstr ""
967
 
968
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:330
969
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:410
970
  msgid "Connecting you to a sales person. Please be patient."
971
  msgstr ""
972
 
973
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:336
974
  msgid "Reactivate chat section text"
975
  msgstr ""
976
 
977
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
978
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:413
979
  msgid "Reactivating your previous chat..."
980
  msgstr ""
981
 
982
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:353
983
  msgid "Multiple Agents"
984
  msgstr ""
985
 
986
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
987
  msgid "Get"
988
  msgstr ""
989
 
990
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
991
  msgid "Multiple agent support"
992
  msgstr ""
993
 
1027
  msgid "Skip"
1028
  msgstr ""
1029
 
1030
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:188
1031
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1075
1032
  msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
1033
  msgstr ""
1034
 
1035
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:348
1036
  msgid "Start Live Chat"
1037
  msgstr ""
1038
 
1039
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:418
1040
  msgid "Press ENTER to send your message"
1041
  msgstr ""
1042
 
1043
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:684
1044
  msgid ""
1045
  "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1046
  "strong>. Please"
1047
  msgstr ""
1048
 
1049
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:685
1050
  msgid ""
1051
  "You're live chat box on your website has been temporarily disabled until the "
1052
  "Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
1053
  "experience for both yourself and your visitors."
1054
  msgstr ""
1055
 
1056
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:686
1057
  msgid ""
1058
  "You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
1059
  "plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
1060
  "version/' target='_BLANK'>here</a>."
1061
  msgstr ""
1062
 
1063
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:712
1064
  msgid "Experiencing problems with the plugin?"
1065
  msgstr ""
1066
 
1067
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:714
1068
  msgid "Review the documentation."
1069
  msgstr ""
1070
 
1071
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:715
1072
  msgid "Or ask a question on our"
1073
  msgstr ""
1074
 
1075
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:738
1076
  msgid "With the Pro add-on of WP Live Chat Support, you can"
1077
  msgstr ""
1078
 
1079
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:738
1080
  msgid "see who's online and initiate chats"
1081
  msgstr ""
1082
 
1083
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:738
1084
  msgid "with your online visitors with the click of a button."
1085
  msgstr ""
1086
 
1087
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:738
1088
  msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
1089
  msgstr ""
1090
 
1091
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:738
1092
  msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
1093
  msgstr ""
1094
 
1095
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:782
1096
  msgid "Previous"
1097
  msgstr ""
1098
 
1099
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:782
1100
  msgid "Active"
1101
  msgstr ""
1102
 
1103
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
1104
  msgid "Add Quick Responses to your Live Chat"
1105
  msgstr ""
1106
 
1107
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
1108
  msgid "Pro version only"
1109
  msgstr ""
1110
 
1111
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:832
1112
  msgid "type here..."
1113
  msgstr ""
1114
 
1115
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1180
1116
  msgid "WP Live Chat History"
1117
  msgstr ""
1118
 
1119
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1190
1120
+ msgid "WP Live Chat Missed Chats"
1121
+ msgstr ""
1122
+
1123
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1197
1124
+ msgid "WP Live Chat Offline Messages"
1125
+ msgstr ""
1126
+
1127
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1202
1128
+ msgid ""
1129
+ "Please update to the latest version of WP Live Chat Support Pro to start "
1130
+ "recording any offline messages."
1131
+ msgstr ""
1132
+
1133
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1255
1134
  msgid "Thank You for your feedback!"
1135
  msgstr ""
1136
 
1137
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1259
1138
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1272
1139
  msgid "Thank you for your feedback. We will be in touch soon"
1140
  msgstr ""
1141
 
1142
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1276
1143
  msgid "There was a problem sending your feedback. Please log your feedback on "
1144
  msgstr ""
languages/wplivechat-it_IT.mo CHANGED
Binary file
languages/wplivechat-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wplc\n"
4
- "POT-Creation-Date: 2014-10-06 11:02+0200\n"
5
- "PO-Revision-Date: 2014-10-21 10:10+0100\n"
6
  "Last-Translator: Angelo Giammarresi <info@wocmultimedia.com>\n"
7
  "Language-Team: Angelo Giammarresi <info@wocmultimedia.com>\n"
8
  "Language: it_IT\n"
@@ -12,507 +12,352 @@ msgstr ""
12
  "X-Generator: Poedit 1.5.7\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
16
  "live-chat-support\n"
17
- "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
18
  "live-chat-support-pro\n"
19
 
20
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax.php:230
21
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:261
22
  msgid "Admin has closed and ended the chat"
23
  msgstr "L'Amministratore ha chiuso e terminato la chat"
24
 
25
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax.php:254
26
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:296
27
  msgid "There is No Answer. Please Try Again Later"
28
  msgstr "Non vi è alcuna risposta. Riprovare più tardi"
29
 
30
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:171
31
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
32
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:101
33
  msgid "User Data"
34
  msgstr "Dati Utente"
35
 
36
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:172
37
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:246
38
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:81
39
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:24
40
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:102
41
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
42
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:461
43
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:565
44
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:583
45
  msgid "Name"
46
  msgstr "Nome"
47
 
48
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:173
49
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:248
50
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:25
51
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:103
52
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
53
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:462
54
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:567
55
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:584
56
  msgid "Email"
57
  msgstr "E-mail"
58
 
59
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:174
60
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
61
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:104
62
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:463
63
  msgid "URL"
64
  msgstr "URL"
65
 
66
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:175
67
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:27
68
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:105
69
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:464
70
  msgid "Status"
71
  msgstr "Stato"
72
 
73
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:176
74
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:28
75
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:106
76
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:465
77
  msgid "Action"
78
  msgstr "Azione"
79
 
80
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:182
81
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:112
 
 
 
 
 
 
 
 
 
 
 
 
82
  msgid "No chat sessions available at the moment"
83
  msgstr "Nessuna sessione di chat è disponibile al momento"
84
 
85
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:200
86
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:132
87
  msgid "Accept Chat"
88
  msgstr "Accettare Chat"
89
 
90
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:205
91
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:142
 
 
 
 
92
  msgid "Open Chat Window"
93
  msgstr "Apri la Finestra della Chat"
94
 
95
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:441
96
- msgid "complete"
97
- msgstr "completa"
98
-
99
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:444
100
- msgid "pending"
101
- msgstr "in attesa"
102
-
103
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:447
104
- msgid "active"
105
- msgstr "attiva"
106
-
107
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:450
108
- msgid "deleted"
109
- msgstr "cancellata"
110
-
111
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
112
- msgid "browsing"
113
- msgstr "esplorazione"
114
-
115
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:456
116
- msgid "requesting chat"
117
- msgstr "richiesta di chat"
118
-
119
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:459
120
- msgid "Chat Ended - User still browsing"
121
- msgstr "Chat Terminata - L'utente sta ancora navigando"
122
-
123
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
124
- msgid "User is browsing but doesn't want to chat"
125
- msgstr "L'utente sta navigando, ma non vuole usare la chat"
126
-
127
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:526
128
- msgid "Get Pro Add-on to accept more chats"
129
- msgstr "Passa alla versione Pro per accettare più conversazioni"
130
-
131
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:140
132
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:535
133
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1402
134
- msgid "Live Chat"
135
- msgstr "Live Chat"
136
-
137
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:141
138
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1403
139
- msgid "Settings"
140
- msgstr "Impostazioni"
141
-
142
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:142
143
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1404
144
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1406
145
- msgid "History"
146
- msgstr "Cronologia"
147
-
148
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:143
149
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
150
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1407
151
- msgid "Feedback"
152
- msgstr "Feedback"
153
-
154
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:233
155
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:218
156
- msgid "Questions?"
157
- msgstr "Domande?"
158
-
159
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:233
160
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
161
- msgid "Chat with us"
162
- msgstr "Chatta con noi"
163
-
164
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:250
165
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
166
- msgid "Start Chat"
167
- msgstr "Inizia Chat"
168
-
169
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:257
170
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
171
- msgid "Connecting you to a sales person. Please be patient."
172
- msgstr ""
173
- "Ti stiamo collegando con un nostro addetto alle vendite. Si prega di essere "
174
- "pazienti."
175
-
176
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:260
177
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:234
178
- msgid "Reactivating your previous chat..."
179
- msgstr "Riattivazione precedente conversazione ..."
180
-
181
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:265
182
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:847
183
- msgid "Press ENTER to send your message"
184
- msgstr "Premi INVIO per inviare il tuo messaggio"
185
-
186
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:269
187
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:651
188
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:620
189
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:850
190
- msgid "Send"
191
- msgstr "Invia"
192
-
193
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:500
194
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:358
195
- msgid "Dear Pro User"
196
- msgstr "Caro Utente PRO"
197
-
198
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:501
199
- msgid ""
200
- "You are using an outdated version of <strong>WP Live Chat Support Pro</"
201
- "strong>. Please"
202
- msgstr ""
203
- "Stai utilizzando una versione non aggiornata di <strong>WP Live Chat Support "
204
- "Pro</strong>. Per favore"
205
-
206
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:501
207
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:339
208
- msgid "update to at least version"
209
- msgstr "aggiorna all'ultima versione"
210
-
211
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:501
212
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:339
213
- msgid "to ensure all functionality is in working order"
214
- msgstr "affinchè tutte le funzionalità funzionino correttamente"
215
-
216
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:502
217
- msgid ""
218
- "You're live chat box on your website has been temporarily disabled until the "
219
- "Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
220
- "experience for both yourself and your visitors."
221
- msgstr ""
222
- "La vostra finestra di chat è stata temporaneamente disabilitata durante "
223
- "l'aggiornamento della versione Pro così da evitare possibili inconvenienti "
224
- "di operabilità sia per voi che per i vostri visitatori."
225
-
226
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:503
227
- msgid ""
228
- "You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
229
- "plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
230
- "version/' target='_BLANK'>here</a>."
231
- msgstr ""
232
- "Potete aggiornare il vostro plugin <a href='./update-core.php'>qui</a>, <a "
233
- "href='./plugins.php'>qui</a> oppure <a href='http://wp-livechat.com/get-"
234
- "updated-version/' target='_BLANK'>qua</a>."
235
-
236
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:504
237
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:342
238
- msgid "If you are having difficulty updating the plugin, please contact"
239
- msgstr ""
240
- "Se si hanno difficoltà con l'aggiornamento del plug-in, si prega di "
241
- "contattarci"
242
-
243
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
244
- msgid "Experiencing problems with the plugin?"
245
- msgstr "Problemi con il plugin?"
246
-
247
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:531
248
- msgid "Review the documentation."
249
- msgstr "Vi suggeriamo di consultare prima la documentazione."
250
-
251
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:532
252
- msgid "Or ask a question on our"
253
- msgstr "O fare una domanda sul nostro"
254
-
255
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:554
256
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:714
257
- msgid "Visitors on site"
258
- msgstr "sito per i visitatori"
259
-
260
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
261
- msgid "With the Pro add-on of WP Live Chat Support, you can"
262
- msgstr "Con il modulo aggiuntivo Pro di WP Live Chat Support, è possibile"
263
-
264
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
265
- msgid "see who's online and initiate chats"
266
- msgstr "vedere chi è online e avviare la chat"
267
-
268
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
269
- msgid "with your online visitors with the click of a button."
270
- msgstr ""
271
- "con tutti i tuoi visitatori in linea semplicemente cliccando un bottone."
272
-
273
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
274
- msgid "Buy the Pro add-on now for only $29.95 once off. Free Updates FOREVER."
275
- msgstr ""
276
- "Acquista ora la Pro add-on, paghi soltanto UNA VOLTA 29,95 dollari e "
277
- "riceverai gratuitamente PER SEMPRE tutti gli aggiornamenti futuri."
278
 
279
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
280
- msgid "Buy the Pro add-on now for only $29.95 once off. Free Updates Forever."
281
  msgstr ""
282
- "Acquista ora la Pro add-on, paghi soltanto una volta 29,95 dollari e "
283
- "riceverai gratuitamente per sempre tutti gli aggiornamenti futuri."
284
-
285
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:620
286
- msgid "Previous"
287
- msgstr "Precedente"
288
-
289
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:620
290
- msgid "Active"
291
- msgstr "Attiva"
292
-
293
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:641
294
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:838
295
- msgid "End chat"
296
- msgstr "Fine chat"
297
-
298
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
299
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1491
300
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1493
301
- msgid "Assign Quick Response"
302
- msgstr "Assegnare Risposta rAPIDA"
303
-
304
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
305
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1495
306
- msgid "Select"
307
- msgstr "Seleziona"
308
-
309
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
310
- msgid "Add Quick Responses to your Live Chat"
311
- msgstr "Aggiungere Risposte rapide alla vostra Chat Attiva"
312
-
313
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
314
- msgid "Pro version only"
315
- msgstr "Solo nella versione Pro"
316
 
317
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:753
318
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:964
319
- msgid "User has opened the chat window"
320
- msgstr "L'utente ha aperto la finestra di chat"
321
 
322
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:758
323
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:969
324
- msgid "User has minimized the chat window"
325
- msgstr "L'utente ha ridotto al minimo la finestra di chat"
326
 
327
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:763
328
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:974
329
- msgid "User has maximized the chat window"
330
- msgstr "L'utente ha massimizzato la finestra di chat"
331
 
332
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:768
333
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:979
334
- msgid "User has closed and ended the chat"
335
- msgstr "L'utente ha chiuso e terminato la chat"
336
 
337
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:977
338
- msgid "WP Live Chat History"
339
- msgstr "Cronologia WP Live Chat"
340
 
341
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
342
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
343
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:88
344
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:104
345
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:120
346
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
347
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
348
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:174
349
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:188
350
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
351
- msgid "Pro Add-on"
352
- msgstr "Pro Add-on"
353
 
354
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1007
355
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:679
356
- msgid "Your settings have been saved."
357
- msgstr "Le impostazioni sono state salvate."
358
 
359
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1022
360
- msgid "Thank You for your feedback!"
361
- msgstr "Grazie per le vostre risposte!"
362
 
363
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1026
364
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1039
365
- msgid "Thank you for your feedback. We will be in touch soon"
366
- msgstr "Grazie per le vostre risposte. Vi contatteremo al più presto"
367
 
368
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1043
369
- msgid "There was a problem sending your feedback. Please log your feedback on "
370
  msgstr ""
371
- "C'è stato un problema nell'invio del feedback. Si prega di inserire il "
372
- "vostro commento nei"
373
-
374
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
375
- msgid "WP Live Chat Support Feedback"
376
- msgstr "Commenti del Supporto WP Live Chat"
377
-
378
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
379
- msgid "We'd love to hear your comments and/or suggestions"
380
- msgstr "Ci piacerebbe ricevere i vostri commenti e / o suggerimenti"
381
-
382
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
383
- msgid "Your Name"
384
- msgstr "Nome"
385
-
386
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
387
- msgid "Your Email"
388
- msgstr "Email"
389
 
390
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
391
- msgid "Your Website"
392
- msgstr "Sito Web"
393
 
394
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
395
- msgid "Send Feedback"
396
- msgstr "Invia Commento"
 
397
 
398
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
399
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:19
400
  msgid "WP Live Chat Support Settings"
401
  msgstr "Impostazioni Supporto WP live Chat"
402
 
403
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:18
404
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:31
405
  msgid "General Settings"
406
  msgstr "Impostazioni Generali"
407
 
408
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:19
409
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:32
410
  msgid "Chat Box"
411
  msgstr "Riquadro Chat"
412
 
413
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
414
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:163
415
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
416
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:156
417
  msgid "Offline Messages"
418
  msgstr "Messaggi Offline"
419
 
420
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
421
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
422
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
423
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
424
  msgid "Styling"
425
  msgstr "Stile"
426
 
427
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
428
- msgid "Agents"
429
- msgstr "Operatori"
430
 
431
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
432
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:38
433
  msgid "Main Settings"
434
  msgstr "Impostazioni Principali"
435
 
436
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
437
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:41
438
  msgid "Chat enabled"
439
  msgstr "Chat abilitata"
440
 
441
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
442
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:44
443
  msgid "Yes"
444
  msgstr "Si"
445
 
446
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:32
447
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:45
448
  msgid "No"
449
  msgstr "No"
450
 
451
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:38
452
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:51
453
  msgid "Hide Chat"
454
  msgstr "Nascondi Chat"
455
 
456
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
457
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:52
458
  msgid "Hides chat for 24hrs when user clicks X"
459
  msgstr "Nasconde la chat per 24 ore quando l'utente fa clic sulla X"
460
 
461
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
462
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:87
463
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:103
464
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:119
465
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
466
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:152
467
- msgid "available in the"
468
- msgstr "disponibile"
469
 
470
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
471
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:89
472
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:105
473
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:121
474
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
475
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
476
- msgid "only"
477
- msgstr "solo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
 
479
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:56
480
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:62
481
  msgid "Chat Window Settings"
482
  msgstr "Impostazioni Finestra Chat"
483
 
484
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:59
485
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:65
486
  msgid "Chat box alignment"
487
  msgstr "Allineamento Riquadro Chat"
488
 
489
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:62
490
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:68
491
  msgid "Bottom left"
492
  msgstr "In Basso a sinistra"
493
 
494
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:63
495
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
496
  msgid "Bottom right"
497
  msgstr "In Basso a Destra"
498
 
499
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:64
500
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:70
501
  msgid "Left"
502
  msgstr "A sinistra"
503
 
504
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:65
505
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
506
  msgid "Right"
507
  msgstr "A destra"
508
 
509
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:71
510
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
511
  msgid "Auto Pop-up"
512
  msgstr "Pop-up automatico"
513
 
514
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:75
515
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
516
  msgid ""
517
  "Expand the chat box automatically (prompts the user to enter their name and "
518
  "email address)."
@@ -520,208 +365,229 @@ msgstr ""
520
  "Espandi l'area della chat automaticamente (richiedi all'utente di inserire "
521
  "il nome e l'indirizzo e-mail)."
522
 
523
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:97
524
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:101
 
 
 
 
525
  msgid "Picture"
526
  msgstr "Immagine"
527
 
528
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
529
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
530
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
531
  msgid "Upload Image"
532
  msgstr "Carica Immagine"
533
 
534
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:113
535
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
 
 
 
 
 
 
 
 
536
  msgid "Logo"
537
  msgstr "Logo"
538
 
539
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:129
540
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:135
541
- msgid "Chat delay (seconds)"
542
- msgstr "Ritardo Chat (secondi)"
 
 
 
 
 
 
 
543
 
544
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:145
545
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
 
 
 
 
 
 
 
 
 
546
  msgid "Chat notifications"
547
  msgstr "Notifiche Chat"
548
 
549
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:149
550
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
551
  msgid "Alert me via email as soon as someone wants to chat"
552
  msgstr "Avvisami via e-mail quando qualcuno vuole chattare"
553
 
554
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:167
555
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:160
556
- msgid "Email Address"
557
- msgstr "Indirizzo E-mail"
558
-
559
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:173
560
- msgid "Get offline messages with the "
561
- msgstr "Ricevi i messaggi non in linea con il "
562
 
563
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:182
564
- msgid "Offline text"
565
- msgstr "Testo non in linea"
 
566
 
567
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
568
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:237
569
- msgid "Edit these text fields using the "
570
- msgstr "Modificare questi campi di testo utilizzando il"
 
 
571
 
572
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
573
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:244
574
- msgid "Chat box fill color"
575
- msgstr "Colore di riempimento riquadro Chat"
 
576
 
577
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
578
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:250
579
- msgid "Chat box font color"
580
- msgstr "Colore Carattere riquadro Chat"
 
 
 
 
581
 
582
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
583
- msgid "First section text"
584
- msgstr "Testo della Prima sezione"
 
585
 
586
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:223
587
- msgid "Second section text"
588
- msgstr "Testo della seconda sezione"
 
 
 
 
 
589
 
590
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
591
- msgid "Reactivate chat section text"
592
- msgstr "Riattivare la sezione testuale della chat "
 
593
 
594
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:249
595
- msgid "Multiple Agents"
596
- msgstr "Operatori Multipli"
597
 
598
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
599
- msgid "Get"
600
- msgstr "Ottenere"
601
 
602
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
603
- msgid "Multiple agent support"
604
- msgstr "Supporto Operatore Multiplo"
605
 
606
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:253
607
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:320
608
- msgid "Save Settings"
609
- msgstr "Salva Impostazioni"
610
 
611
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
612
- msgid "Welcome to "
613
- msgstr "Benvenuto a"
614
 
615
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
616
- msgid "WordPress.org plugin repository "
617
- msgstr "Magazzino dei plugin di WordPress.org"
618
 
619
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
620
- msgid "Search Term"
621
- msgstr "Cerca Termine"
622
 
623
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
624
- msgid "Google or other search Engine"
625
- msgstr "Google o altro motore di ricerca"
626
 
627
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
628
- msgid "Friend recommendation"
629
- msgstr "Raccomandazione da Amici"
630
 
631
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
632
- msgid "Other"
633
- msgstr "Altro"
634
 
635
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
636
- msgid "Please Explain"
637
- msgstr "Si prega di spiegare"
 
638
 
639
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
640
- msgid "Submit"
641
- msgstr "Invia"
 
642
 
643
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
644
- msgid "Skip"
645
- msgstr "Salta"
646
 
647
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:46
648
- msgid "Initiate Chat"
649
- msgstr "Avviare Chat"
650
 
651
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:48
652
- msgid "You must be a chat agent to initiate chats"
653
- msgstr "Devi essere un operatore di chat per avviare la chat"
654
 
655
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
656
- msgid "No visitors on-line at the moment"
657
- msgstr "Nessun visitatore in linea al momento"
658
 
659
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:135
660
- msgid "You must be a chat agent to answer chats"
661
- msgstr "Devi essere un operatore di chat per rispondere alla chat"
662
 
663
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:145
664
- msgid "Chat has been answered by another agent"
665
- msgstr "La Discussione è stata presa in carico da un altro operatore"
666
 
667
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:148
668
- msgid "Chat has been Accepted By Chat Agent "
 
 
669
  msgstr ""
670
- "La Discussione è stata accettata dall'operatore incaricato del servizio chat"
671
-
672
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:177
673
- msgid "WP Live Chat Support - Offline Message from"
674
- msgstr "Supporto WP Live Chat - Messaggio non in linea da"
675
-
676
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
677
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:585
678
- msgid "Message"
679
- msgstr "Messaggio"
680
-
681
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
682
- msgid "Via WP Live Chat Support"
683
- msgstr "Supporto via WP live Chat"
684
-
685
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
686
- msgid "Alert: Someone wants to chat with you on "
687
- msgstr "Attenzione: Qualcuno vuole chattare con te su"
688
-
689
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
690
- msgid "Someone wants to chat with you on your website"
691
- msgstr "Qualcuno vuole chattare con te sul tuo sito web"
692
-
693
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
694
- msgid "Log in"
695
- msgstr "Accedi"
696
-
697
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
698
- msgid "Chat Agent"
699
- msgstr "Operatore Chat"
700
-
701
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:387
702
- msgid "Make this user a chat agent"
703
- msgstr "Trasforma questo utente in un operatore di chat"
704
 
705
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:465
706
- msgid "Chat Agent Online"
707
- msgstr "Operatore Chat Disponibile"
 
 
708
 
709
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:467
710
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:472
711
- msgid "Chat Agents Online"
712
- msgstr "Operatori Chat Disponibili"
713
 
714
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:338
715
  msgid "Dear User"
716
  msgstr "Caro Utente"
717
 
718
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:339
719
  msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
720
  msgstr ""
721
  "Stai utilizzando una versione non aggiornata del supporto WP Live Chat "
722
  "Basic. Per favore"
723
 
724
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:340
 
 
 
 
 
 
 
 
 
 
725
  msgid ""
726
  "You're live chat box on your website has been temporarily disabled until the "
727
  "basic plugin has been updated. This is to ensure a smooth and hassle-free "
@@ -731,7 +597,7 @@ msgstr ""
731
  "l'aggiornamento della versione base del plugin per evitare possibili "
732
  "inconvenienti di operabilità a voi ed ai vostri visitatori."
733
 
734
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:341
735
  msgid ""
736
  "You can update your plugin <a href='./update-core.php'>here</a> or <a "
737
  "href='./plugins.php'>here</a>."
@@ -739,7 +605,19 @@ msgstr ""
739
  "Potete aggiornare il vostro plugin <a href='./update-core.php'>qui</a> "
740
  "oppure <a href='./plugins.php'>qua</a>."
741
 
742
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:359
 
 
 
 
 
 
 
 
 
 
 
 
743
  msgid ""
744
  "WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
745
  "download the latest copy from"
@@ -747,23 +625,41 @@ msgstr ""
747
  "WP Live Chat Support Pro richiede WP Live Chat Support per funzionare. È "
748
  "possibile scaricare l'ultima versione da"
749
 
750
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:460
751
  msgid "Date"
752
  msgstr "Data"
753
 
754
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:471
755
  msgid "No chats available at the moment"
756
  msgstr "Nessun chat disponibile al momento"
757
 
758
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:587
759
  msgid "Send message"
760
  msgstr "Invia Messaggio"
761
 
762
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
763
  msgid "Chat sessions"
764
  msgstr "Sessioni di Chat"
765
 
766
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:709
767
  msgid ""
768
  "Please note: This window must be open in order to receive new chat "
769
  "notifications."
@@ -771,27 +667,78 @@ msgstr ""
771
  "Attenzione: Questa finestra deve essere aperta per ricevere le nuove "
772
  "notifiche di chat."
773
 
774
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:809
 
 
 
 
 
775
  msgid "Unknown"
776
  msgstr "Sconosciuto"
777
 
778
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:814
779
- msgid "Chat with"
780
- msgstr "Discuti con"
 
781
 
782
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:833
783
  msgid "Attempting to open the chat window... Please be patient."
784
  msgstr ""
785
  "In attesa di aprire la finestra di discussione... Si prega di essere "
786
  "pazienti."
787
 
788
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
789
  msgid "This chat has already been answered. Please close the chat window"
790
  msgstr ""
791
  "Questa discussione ha già ricevuto una risposta. Si prega di chiudere la "
792
  "finestra di chat"
793
 
794
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  msgid ""
796
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
797
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
@@ -800,178 +747,426 @@ msgstr ""
800
  "<p> <a href=\"?\" onclick=\"document.location.reload(); return false;"
801
  "\">Riprovare</a>"
802
 
803
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1314
804
  msgid "An unknown error occurred"
805
  msgstr "Si è verificato un errore sconosciuto"
806
 
807
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1404
808
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1417
809
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1428
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
810
  msgid "Quick Responses"
811
  msgstr "Risposte Rapide"
812
 
813
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1411
 
 
 
 
 
 
814
  msgid "Error Log"
815
  msgstr "Log Errori"
816
 
817
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1418
818
  msgid "Quick Response"
819
  msgstr "Risposta Rapida"
820
 
821
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1419
822
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1422
823
  msgid "New Quick Response"
824
  msgstr "Nuova Risposta Rapida"
825
 
826
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1420
827
  msgid "Add New Quick Response"
828
  msgstr "Aggiungi Nuova Risposta Rapida"
829
 
830
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1421
831
  msgid "Edit Quick Response"
832
  msgstr "Modifica Risposta Rapida"
833
 
834
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1423
835
  msgid "All Quick Responses"
836
  msgstr "Tutte le Risposte Rapide"
837
 
838
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1424
839
  msgid "View Quick Responses"
840
  msgstr "Mostra le Risposte Rapide"
841
 
842
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1425
843
  msgid "Search Quick Responses"
844
  msgstr "Cerca nelle Risposte Rapide"
845
 
846
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1426
847
  msgid "No Quick Responses found"
848
  msgstr "Non sono state trovate Risposte Rapide"
849
 
850
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1427
851
  msgid "No Quick Responses found in the Trash"
852
  msgstr "Non sono state trovate Risposte Rapide nel cestino"
853
 
854
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1432
855
  msgid "Quick Responses for WP Live Chat Support Pro"
856
  msgstr "Risposte Rapide per WP live Chat Support Pro"
857
 
858
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1502
 
 
 
 
 
 
 
 
 
 
 
859
  msgid "What is this?"
860
  msgstr "Che cosa significa?"
861
 
862
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
863
- msgid "Chat Agents"
864
- msgstr "Operatori Chat"
865
 
866
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
867
- msgid "Name "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
868
  msgstr "Nome"
869
 
870
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:111
871
- msgid "Remove Image"
872
- msgstr "Rimuovi Immagine"
873
 
874
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
875
- msgid "Recomended Size 40px x 40px"
876
- msgstr "Dimensioni consigliate 40px x 40px"
877
 
878
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
879
- msgid "Upload Logo"
880
- msgstr "Carica Logo"
881
 
882
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:128
883
- msgid "Remove Logo"
884
- msgstr "Rimuovi Logo"
885
 
886
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
887
- msgid "Recomended Size 250px x 40px"
888
- msgstr "Dimensioni consigliate 250px x 40px"
 
 
 
 
 
 
 
889
 
890
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
891
- msgid "how long it takes for your chat window to pop up"
892
- msgstr "quanto tempo necessita per apparire la vostra finestra di chat"
 
 
 
 
 
 
 
 
 
 
 
893
 
894
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:149
895
- msgid "(while online only)"
896
- msgstr "(solo quando è in linea)"
 
 
 
 
 
 
 
897
 
898
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:164
899
- msgid "Email address where offline messages are delivered to"
900
- msgstr "Indirizzo e-mail a cui i messaggi non in linea vengono recapitati"
 
901
 
902
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
903
- msgid "Sending Method"
904
- msgstr "Metodo di Spedizione"
905
 
906
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:173
907
- msgid "WP Mail"
908
- msgstr "WP Mail"
909
 
910
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:174
911
- msgid "PHP Mailer"
912
- msgstr "PHP Mailer"
 
913
 
914
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:186
915
- msgid "Host"
916
- msgstr "Host"
917
 
918
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:194
919
- msgid "Port"
920
- msgstr "Porta"
 
921
 
922
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:202
923
- msgid "Username"
924
- msgstr "Nome Utente"
 
925
 
926
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:210
927
- msgid "Password"
928
- msgstr "Password"
929
 
930
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:219
931
- msgid "Offline Chat Box Title"
932
- msgstr "Titolo Riquadro Chat Non in linea"
 
933
 
934
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:227
935
- msgid "Offline Text Fields"
936
- msgstr "Testo Campi Offline"
 
 
 
937
 
938
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:256
939
- msgid "First Section Text"
940
- msgstr "Testo Prima Sezione "
941
 
942
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:265
943
- msgid "Intro Text"
944
- msgstr "Testo introduttivo"
 
945
 
946
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:271
947
- msgid "Second Section Text"
948
- msgstr "Testo Seconda Sezione "
949
 
950
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
951
- msgid "Reactivate Chat Section Text"
952
- msgstr "Riattivare la sezione testo della Chat"
953
 
954
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:286
955
- msgid "User chat welcome"
956
- msgstr "Benvenuto all'utente della chat"
957
 
958
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:295
959
- msgid "Other text"
960
- msgstr "Altro testo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
961
 
962
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
963
  msgid ""
964
- "To add or remove a user as a chat agent, go into the users profile and "
965
- "select the checkbox Chat Agent and click save."
966
  msgstr ""
967
- "Per aggiungere o rimuovere un utente da operatore di chat, andare nel "
968
- "profilo utenti, selezionare Operatore Chat e poi cliccare sul pulsante salva."
969
 
970
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:316
971
- msgid "If there are no chat agents online, the chat will show as offline"
 
 
 
972
  msgstr ""
973
- "Se non c'è alcun operatore di chat collegato la chat verrà visualizzata come "
974
- "non operativa."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
 
976
  #~ msgid "IP"
977
  #~ msgstr "IP"
@@ -982,9 +1177,6 @@ msgstr ""
982
  #~ msgid "Email address"
983
  #~ msgstr "Indirizzo Email"
984
 
985
- #~ msgid "IP Address"
986
- #~ msgstr "Indirizzo IP"
987
-
988
  #~ msgid "From URL"
989
  #~ msgstr "Dall'URL"
990
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wplc\n"
4
+ "POT-Creation-Date: 2015-01-07 13:18+0200\n"
5
+ "PO-Revision-Date: 2015-01-09 20:24+0100\n"
6
  "Last-Translator: Angelo Giammarresi <info@wocmultimedia.com>\n"
7
  "Language-Team: Angelo Giammarresi <info@wocmultimedia.com>\n"
8
  "Language: it_IT\n"
12
  "X-Generator: Poedit 1.5.7\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
16
  "live-chat-support\n"
17
+ "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
18
  "live-chat-support-pro\n"
19
 
20
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:261
21
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:230
22
  msgid "Admin has closed and ended the chat"
23
  msgstr "L'Amministratore ha chiuso e terminato la chat"
24
 
25
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:296
26
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:254
27
  msgid "There is No Answer. Please Try Again Later"
28
  msgstr "Non vi è alcuna risposta. Riprovare più tardi"
29
 
30
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
31
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:101
32
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:171
33
  msgid "User Data"
34
  msgstr "Dati Utente"
35
 
36
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:24
37
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:102
38
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
39
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:506
40
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:661
41
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:693
42
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:172
43
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
44
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:378
45
  msgid "Name"
46
  msgstr "Nome"
47
 
48
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:25
49
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:103
50
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
51
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:507
52
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:662
53
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:694
54
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:173
55
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:379
56
  msgid "Email"
57
  msgstr "E-mail"
58
 
59
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
60
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:104
61
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:508
62
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:174
63
  msgid "URL"
64
  msgstr "URL"
65
 
66
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:27
67
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:105
68
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:509
69
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:175
70
  msgid "Status"
71
  msgstr "Stato"
72
 
73
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:28
74
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:106
75
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:510
76
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:176
77
  msgid "Action"
78
  msgstr "Azione"
79
 
80
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:46
81
+ msgid "Initiate Chat"
82
+ msgstr "Avviare Chat"
83
+
84
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:48
85
+ msgid "You must be a chat agent to initiate chats"
86
+ msgstr "Devi essere un operatore di chat per avviare la chat"
87
+
88
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
89
+ msgid "No visitors on-line at the moment"
90
+ msgstr "Nessun visitatore in linea al momento"
91
+
92
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:112
93
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:182
94
  msgid "No chat sessions available at the moment"
95
  msgstr "Nessuna sessione di chat è disponibile al momento"
96
 
97
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:132
98
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:200
99
  msgid "Accept Chat"
100
  msgstr "Accettare Chat"
101
 
102
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:135
103
+ msgid "You must be a chat agent to answer chats"
104
+ msgstr "Devi essere un operatore di chat per rispondere alla chat"
105
+
106
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:142
107
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
108
  msgid "Open Chat Window"
109
  msgstr "Apri la Finestra della Chat"
110
 
111
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:145
112
+ msgid "Chat has been answered by another agent"
113
+ msgstr "La Discussione è stata presa in carico da un altro operatore"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:148
116
+ msgid "Chat has been Accepted By Chat Agent "
117
  msgstr ""
118
+ "La Discussione è stata accettata dall'operatore incaricato del servizio chat"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
 
120
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:177
121
+ msgid "WP Live Chat Support - Offline Message from"
122
+ msgstr "Supporto WP Live Chat - Messaggio non in linea da"
 
123
 
124
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
125
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:695
126
+ msgid "Message"
127
+ msgstr "Messaggio"
128
 
129
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
130
+ msgid "Via WP Live Chat Support"
131
+ msgstr "Supporto via WP live Chat"
 
132
 
133
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
134
+ msgid "Alert: Someone wants to chat with you on "
135
+ msgstr "Attenzione: Qualcuno vuole chattare con te su"
 
136
 
137
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
138
+ msgid "Someone wants to chat with you on your website"
139
+ msgstr "Qualcuno vuole chattare con te sul tuo sito web"
140
 
141
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
142
+ msgid "Log in"
143
+ msgstr "Accedi"
 
 
 
 
 
 
 
 
 
144
 
145
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:383
146
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:398
147
+ msgid "Chat Agent"
148
+ msgstr "Operatore Chat"
149
 
150
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:388
151
+ msgid "Make this user a chat agent"
152
+ msgstr "Trasforma questo utente in un operatore di chat"
153
 
154
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:402
155
+ msgid "Your user role does not allow you to make yourself a chat agent."
156
+ msgstr "Il tuo ruolo utente non ti permette di essere un operatore della chat."
 
157
 
158
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:403
159
+ msgid "Please contact the administrator of this website to change this."
160
  msgstr ""
161
+ "Per favore contattare l'amministratore di questo sito per effettuare i "
162
+ "cambiamenti."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
 
164
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:483
165
+ msgid "Chat Agent Online"
166
+ msgstr "Operatore Chat Disponibile"
167
 
168
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:485
169
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:490
170
+ msgid "Chat Agents Online"
171
+ msgstr "Operatori Chat Disponibili"
172
 
173
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:21
174
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
175
  msgid "WP Live Chat Support Settings"
176
  msgstr "Impostazioni Supporto WP live Chat"
177
 
178
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
179
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
180
  msgid "General Settings"
181
  msgstr "Impostazioni Generali"
182
 
183
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
184
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
185
  msgid "Chat Box"
186
  msgstr "Riquadro Chat"
187
 
188
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
189
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
190
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
191
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:259
192
  msgid "Offline Messages"
193
  msgstr "Messaggi Offline"
194
 
195
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
196
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:340
197
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:23
198
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
199
  msgid "Styling"
200
  msgstr "Stile"
201
 
202
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:37
203
+ msgid "Chat Agents"
204
+ msgstr "Operatori Chat"
205
 
206
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
207
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
208
  msgid "Main Settings"
209
  msgstr "Impostazioni Principali"
210
 
211
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
212
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
213
  msgid "Chat enabled"
214
  msgstr "Chat abilitata"
215
 
216
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
217
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
218
  msgid "Yes"
219
  msgstr "Si"
220
 
221
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:47
222
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
223
  msgid "No"
224
  msgstr "No"
225
 
226
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:53
227
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
228
  msgid "Hide Chat"
229
  msgstr "Nascondi Chat"
230
 
231
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:54
232
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:41
233
  msgid "Hides chat for 24hrs when user clicks X"
234
  msgstr "Nasconde la chat per 24 ore quando l'utente fa clic sulla X"
235
 
236
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:62
237
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
238
+ msgid "Require Name And Email"
239
+ msgstr "Bisogna inserire Nome ed E-mail"
 
 
 
 
240
 
241
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:63
242
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:58
243
+ msgid ""
244
+ "Users will have to enter their Name and Email Address when starting a chat"
245
+ msgstr ""
246
+ "Gli Utenti devono inserire il proprio Nome e Indirizzo E-mail quando "
247
+ "iniziano la chat"
248
+
249
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
250
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
251
+ msgid "Input Field Replacement Text"
252
+ msgstr "Campo per l'immissione del testo sostitutivo"
253
+
254
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:72
255
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
256
+ msgid "This is the text that will show in place of the Name And Email fields"
257
+ msgstr "Questo è il testo che viene mostrato al posto dei campi Nome ed E-mail"
258
+
259
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:80
260
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:75
261
+ msgid "Use Logged In User Details"
262
+ msgstr "Utilizzare i Dettagli di Accesso Utente"
263
+
264
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
265
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
266
+ msgid ""
267
+ "A user's Name and Email Address will be used by default if they are logged "
268
+ "in."
269
+ msgstr ""
270
+ "Per gli utenti registrati se hanno effettuato l'accesso il sistema userà "
271
+ "automaticamente il loro Nome e indirizzo E-mail."
272
+
273
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
274
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
275
+ msgid "Enable On Mobile Devices"
276
+ msgstr "Abilitare sui dispositivi portatili"
277
+
278
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
279
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
280
+ msgid ""
281
+ "Disabling this will mean that the Chat Box will not be displayed on mobile "
282
+ "devices. (Smartphones and Tablets)"
283
+ msgstr ""
284
+ "Se disabilitato la Finestra di Chat non verrà mostrata nei dispositivi "
285
+ "prtatili. (Smartphones e Tablets)"
286
+
287
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
288
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
289
+ msgid "Include chat window on the following pages:"
290
+ msgstr "Includere la finestra della chat nelle seguenti pagine:"
291
+
292
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:99
293
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:94
294
+ msgid ""
295
+ "Show the chat window on the following pages. Leave blank to show on all. "
296
+ "(Use comma-separated Page ID's)"
297
+ msgstr ""
298
+ "Mostra la finestra della chat nelle seguenti pagine. Lasciare vuoto per "
299
+ "visualizzarla sempre. (Usare ID Pagine separati da virgola)"
300
+
301
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
302
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:113
303
+ msgid ""
304
+ "Do not include and exclude pages at the same time. Please only use one or "
305
+ "the other"
306
+ msgstr ""
307
+ "Non includere ed escludere pagine allo stesso tempo. Si consiglia di usare "
308
+ "soltanto uno o l'altro."
309
+
310
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:108
311
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
312
+ msgid "Exclude chat window on the following pages:"
313
+ msgstr "Escludere la finestra della chat nelle seguenti pagine:"
314
+
315
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
316
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:110
317
+ msgid ""
318
+ "Do not show the chat window on the following pages. Leave blank to show on "
319
+ "all. (Use comma-separated Page ID's)"
320
+ msgstr ""
321
+ "Non mostrare la finestra della chat nelle seguenti pagine. Lasciare vuoto "
322
+ "per visualizzarla sempre. (Usare ID Pagine separati da virgola)"
323
 
324
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:123
325
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:128
326
  msgid "Chat Window Settings"
327
  msgstr "Impostazioni Finestra Chat"
328
 
329
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
330
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
331
  msgid "Chat box alignment"
332
  msgstr "Allineamento Riquadro Chat"
333
 
334
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
335
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:134
336
  msgid "Bottom left"
337
  msgstr "In Basso a sinistra"
338
 
339
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
340
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
341
  msgid "Bottom right"
342
  msgstr "In Basso a Destra"
343
 
344
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:131
345
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
346
  msgid "Left"
347
  msgstr "A sinistra"
348
 
349
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:132
350
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
351
  msgid "Right"
352
  msgstr "A destra"
353
 
354
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
355
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:143
356
  msgid "Auto Pop-up"
357
  msgstr "Pop-up automatico"
358
 
359
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:142
360
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
361
  msgid ""
362
  "Expand the chat box automatically (prompts the user to enter their name and "
363
  "email address)."
365
  "Espandi l'area della chat automaticamente (richiedi all'utente di inserire "
366
  "il nome e l'indirizzo e-mail)."
367
 
368
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
369
+ msgid "Name "
370
+ msgstr "Nome"
371
+
372
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
373
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:169
374
  msgid "Picture"
375
  msgstr "Immagine"
376
 
377
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:170
378
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:172
379
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:188
380
  msgid "Upload Image"
381
  msgstr "Carica Immagine"
382
 
383
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
384
+ msgid "Remove Image"
385
+ msgstr "Rimuovi Immagine"
386
+
387
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:173
388
+ msgid "Recomended Size 40px x 40px"
389
+ msgstr "Dimensioni consigliate 40px x 40px"
390
+
391
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:179
392
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:185
393
  msgid "Logo"
394
  msgstr "Logo"
395
 
396
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:187
397
+ msgid "Upload Logo"
398
+ msgstr "Carica Logo"
399
+
400
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:189
401
+ msgid "Remove Logo"
402
+ msgstr "Rimuovi Logo"
403
+
404
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:190
405
+ msgid "Recomended Size 250px x 40px"
406
+ msgstr "Dimensioni consigliate 250px x 40px"
407
 
408
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:196
409
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:201
410
+ msgid "Chat delay (seconds)"
411
+ msgstr "Ritardo Chat (secondi)"
412
+
413
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:199
414
+ msgid "how long it takes for your chat window to pop up"
415
+ msgstr "quanto tempo necessita per apparire la vostra finestra di chat"
416
+
417
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:205
418
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:217
419
  msgid "Chat notifications"
420
  msgstr "Notifiche Chat"
421
 
422
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:209
423
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:221
424
  msgid "Alert me via email as soon as someone wants to chat"
425
  msgstr "Avvisami via e-mail quando qualcuno vuole chattare"
426
 
427
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:210
428
+ msgid "(while online only)"
429
+ msgstr "(solo quando è in linea)"
 
 
 
 
 
430
 
431
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:215
432
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:233
433
+ msgid "Display name and avatar in chat"
434
+ msgstr "Visualizzare nome ed avatar nella chat"
435
 
436
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:221
437
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
438
+ msgid "Display the agent and user name above each message in the chat window."
439
+ msgstr ""
440
+ "Visualizzare nella finestra della chat l'operatore ed il nome utente sopra "
441
+ "ciascun messaggio."
442
 
443
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:226
444
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:244
445
+ msgid "Only show the chat window to users that are logged in"
446
+ msgstr ""
447
+ "Visualizzare la finestra della chat soltanto agli utenti che sono collegati"
448
 
449
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:234
450
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
451
+ msgid ""
452
+ "By checking this, only users that are logged in will be able to chat with "
453
+ "you."
454
+ msgstr ""
455
+ "Selezionando questa opzione soltanto gli utenti che sono collegati potranno "
456
+ "chattare con te."
457
 
458
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:246
459
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:263
460
+ msgid "Do not allow users to send offline messages"
461
+ msgstr "Non permettere agli utenti di inviare messaggi con la chat inattiva"
462
 
463
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:254
464
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:267
465
+ msgid ""
466
+ "The chat window will be hidden when it is offline. Users will not be able to "
467
+ "send offline messages to you"
468
+ msgstr ""
469
+ "La finestra della chat verrà nascosta quando è inattiva e gli utenti non "
470
+ "potranno inviarti messaggi differiti."
471
 
472
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:259
473
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:272
474
+ msgid "Email Address"
475
+ msgstr "Indirizzo E-mail"
476
 
477
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:263
478
+ msgid "Email address where offline messages are delivered to"
479
+ msgstr "Indirizzo e-mail a cui i messaggi non in linea vengono recapitati"
480
 
481
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:271
482
+ msgid "Sending Method"
483
+ msgstr "Metodo di Spedizione"
484
 
485
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:272
486
+ msgid "WP Mail"
487
+ msgstr "WP Mail"
488
 
489
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:273
490
+ msgid "PHP Mailer"
491
+ msgstr "PHP Mailer"
 
492
 
493
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:285
494
+ msgid "Host"
495
+ msgstr "Host"
496
 
497
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:293
498
+ msgid "Port"
499
+ msgstr "Porta"
500
 
501
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:301
502
+ msgid "Username"
503
+ msgstr "Nome Utente"
504
 
505
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:309
506
+ msgid "Password"
507
+ msgstr "Password"
508
 
509
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:318
510
+ msgid "Offline Chat Box Title"
511
+ msgstr "Titolo Riquadro Chat Non in linea"
512
 
513
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:326
514
+ msgid "Offline Text Fields"
515
+ msgstr "Testo Campi Offline"
516
 
517
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:343
518
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:308
519
+ msgid "Chat box fill color"
520
+ msgstr "Colore di riempimento riquadro Chat"
521
 
522
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:349
523
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:314
524
+ msgid "Chat box font color"
525
+ msgstr "Colore Carattere riquadro Chat"
526
 
527
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:355
528
+ msgid "First Section Text"
529
+ msgstr "Testo Prima Sezione "
530
 
531
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:364
532
+ msgid "Intro Text"
533
+ msgstr "Testo introduttivo"
534
 
535
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:370
536
+ msgid "Second Section Text"
537
+ msgstr "Testo Seconda Sezione "
538
 
539
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:377
540
+ msgid "Reactivate Chat Section Text"
541
+ msgstr "Riattivare la sezione testo della Chat"
542
 
543
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:385
544
+ msgid "User chat welcome"
545
+ msgstr "Benvenuto all'utente della chat"
546
 
547
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:394
548
+ msgid "Other text"
549
+ msgstr "Altro testo"
550
 
551
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:414
552
+ msgid ""
553
+ "To add or remove a user as a chat agent, go into the users profile and "
554
+ "select the checkbox Chat Agent and click save."
555
  msgstr ""
556
+ "Per aggiungere o rimuovere un utente da operatore di chat, andare nel "
557
+ "profilo utenti, selezionare Operatore Chat e poi cliccare sul pulsante salva."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
 
559
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:415
560
+ msgid "If there are no chat agents online, the chat will show as offline"
561
+ msgstr ""
562
+ "Se non c'è alcun operatore di chat collegato la chat verrà visualizzata come "
563
+ "non operativa."
564
 
565
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:419
566
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:358
567
+ msgid "Save Settings"
568
+ msgstr "Salva Impostazioni"
569
 
570
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:382
571
  msgid "Dear User"
572
  msgstr "Caro Utente"
573
 
574
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:383
575
  msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
576
  msgstr ""
577
  "Stai utilizzando una versione non aggiornata del supporto WP Live Chat "
578
  "Basic. Per favore"
579
 
580
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:383
581
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:676
582
+ msgid "update to at least version"
583
+ msgstr "aggiorna all'ultima versione"
584
+
585
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:383
586
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:676
587
+ msgid "to ensure all functionality is in working order"
588
+ msgstr "affinchè tutte le funzionalità funzionino correttamente"
589
+
590
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:384
591
  msgid ""
592
  "You're live chat box on your website has been temporarily disabled until the "
593
  "basic plugin has been updated. This is to ensure a smooth and hassle-free "
597
  "l'aggiornamento della versione base del plugin per evitare possibili "
598
  "inconvenienti di operabilità a voi ed ai vostri visitatori."
599
 
600
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:385
601
  msgid ""
602
  "You can update your plugin <a href='./update-core.php'>here</a> or <a "
603
  "href='./plugins.php'>here</a>."
605
  "Potete aggiornare il vostro plugin <a href='./update-core.php'>qui</a> "
606
  "oppure <a href='./plugins.php'>qua</a>."
607
 
608
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:386
609
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:679
610
+ msgid "If you are having difficulty updating the plugin, please contact"
611
+ msgstr ""
612
+ "Se si hanno difficoltà con l'aggiornamento del plug-in, si prega di "
613
+ "contattarci"
614
+
615
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:402
616
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:675
617
+ msgid "Dear Pro User"
618
+ msgstr "Caro Utente PRO"
619
+
620
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:403
621
  msgid ""
622
  "WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
623
  "download the latest copy from"
625
  "WP Live Chat Support Pro richiede WP Live Chat Support per funzionare. È "
626
  "possibile scaricare l'ultima versione da"
627
 
628
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:505
629
  msgid "Date"
630
  msgstr "Data"
631
 
632
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:516
633
  msgid "No chats available at the moment"
634
  msgstr "Nessun chat disponibile al momento"
635
 
636
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:697
637
  msgid "Send message"
638
  msgstr "Invia Messaggio"
639
 
640
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:725
641
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:414
642
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:826
643
+ msgid "Send"
644
+ msgstr "Invia"
645
+
646
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:748
647
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1201
648
+ msgid "Please click 'Start Chat' to initiate a chat with an agent"
649
+ msgstr ""
650
+ "Per favore clicca su 'Avvia Chat' per iniziare una discussione con "
651
+ "l'operatore disponibile"
652
+
653
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:795
654
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1212
655
+ msgid "Your settings have been saved."
656
+ msgstr "Le impostazioni sono state salvate."
657
+
658
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:816
659
  msgid "Chat sessions"
660
  msgstr "Sessioni di Chat"
661
 
662
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:825
663
  msgid ""
664
  "Please note: This window must be open in order to receive new chat "
665
  "notifications."
667
  "Attenzione: Questa finestra deve essere aperta per ricevere le nuove "
668
  "notifiche di chat."
669
 
670
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:830
671
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:729
672
+ msgid "Visitors on site"
673
+ msgstr "sito per i visitatori"
674
+
675
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:903
676
  msgid "Unknown"
677
  msgstr "Sconosciuto"
678
 
679
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:911
680
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:779
681
+ msgid "End chat"
682
+ msgstr "Fine chat"
683
 
684
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:916
685
  msgid "Attempting to open the chat window... Please be patient."
686
  msgstr ""
687
  "In attesa di aprire la finestra di discussione... Si prega di essere "
688
  "pazienti."
689
 
690
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:939
691
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:795
692
+ msgid "Site Info"
693
+ msgstr "Informazioni Sito"
694
+
695
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:941
696
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:797
697
+ msgid "Chat initiated on:"
698
+ msgstr "Chat avviata il:"
699
+
700
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:945
701
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:801
702
+ msgid "Advanced Info"
703
+ msgstr "Informazioni Avanzate"
704
+
705
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:947
706
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
707
+ msgid "Browser:"
708
+ msgstr "Browser:"
709
+
710
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:948
711
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:804
712
+ msgid "IP Address:"
713
+ msgstr "Indirizzo IP"
714
+
715
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1009
716
  msgid "This chat has already been answered. Please close the chat window"
717
  msgstr ""
718
  "Questa discussione ha già ricevuto una risposta. Si prega di chiudere la "
719
  "finestra di chat"
720
 
721
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1073
722
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:929
723
+ msgid "User has opened the chat window"
724
+ msgstr "L'utente ha aperto la finestra di chat"
725
+
726
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1078
727
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:934
728
+ msgid "User has minimized the chat window"
729
+ msgstr "L'utente ha ridotto al minimo la finestra di chat"
730
+
731
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1083
732
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:939
733
+ msgid "User has maximized the chat window"
734
+ msgstr "L'utente ha massimizzato la finestra di chat"
735
+
736
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1088
737
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:944
738
+ msgid "User has closed and ended the chat"
739
+ msgstr "L'utente ha chiuso e terminato la chat"
740
+
741
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1455
742
  msgid ""
743
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
744
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
747
  "<p> <a href=\"?\" onclick=\"document.location.reload(); return false;"
748
  "\">Riprovare</a>"
749
 
750
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1460
751
  msgid "An unknown error occurred"
752
  msgstr "Si è verificato un errore sconosciuto"
753
 
754
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1581
755
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:205
756
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:710
757
+ msgid "Live Chat"
758
+ msgstr "Live Chat"
759
+
760
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1582
761
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:206
762
+ msgid "Settings"
763
+ msgstr "Impostazioni"
764
+
765
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1583
766
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1585
767
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:207
768
+ msgid "History"
769
+ msgstr "Cronologia"
770
+
771
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1583
772
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1596
773
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1607
774
  msgid "Quick Responses"
775
  msgstr "Risposte Rapide"
776
 
777
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1586
778
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
779
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:208
780
+ msgid "Feedback"
781
+ msgstr "Feedback"
782
+
783
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1590
784
  msgid "Error Log"
785
  msgstr "Log Errori"
786
 
787
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1597
788
  msgid "Quick Response"
789
  msgstr "Risposta Rapida"
790
 
791
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1598
792
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1601
793
  msgid "New Quick Response"
794
  msgstr "Nuova Risposta Rapida"
795
 
796
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1599
797
  msgid "Add New Quick Response"
798
  msgstr "Aggiungi Nuova Risposta Rapida"
799
 
800
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1600
801
  msgid "Edit Quick Response"
802
  msgstr "Modifica Risposta Rapida"
803
 
804
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1602
805
  msgid "All Quick Responses"
806
  msgstr "Tutte le Risposte Rapide"
807
 
808
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1603
809
  msgid "View Quick Responses"
810
  msgstr "Mostra le Risposte Rapide"
811
 
812
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1604
813
  msgid "Search Quick Responses"
814
  msgstr "Cerca nelle Risposte Rapide"
815
 
816
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1605
817
  msgid "No Quick Responses found"
818
  msgstr "Non sono state trovate Risposte Rapide"
819
 
820
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1606
821
  msgid "No Quick Responses found in the Trash"
822
  msgstr "Non sono state trovate Risposte Rapide nel cestino"
823
 
824
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1611
825
  msgid "Quick Responses for WP Live Chat Support Pro"
826
  msgstr "Risposte Rapide per WP live Chat Support Pro"
827
 
828
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1670
829
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1672
830
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:813
831
+ msgid "Assign Quick Response"
832
+ msgstr "Assegnare Risposta rAPIDA"
833
+
834
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1674
835
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:813
836
+ msgid "Select"
837
+ msgstr "Seleziona"
838
+
839
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1681
840
  msgid "What is this?"
841
  msgstr "Che cosa significa?"
842
 
843
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:524
844
+ msgid "complete"
845
+ msgstr "completa"
846
 
847
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:527
848
+ msgid "pending"
849
+ msgstr "in attesa"
850
+
851
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:530
852
+ msgid "active"
853
+ msgstr "attiva"
854
+
855
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:533
856
+ msgid "deleted"
857
+ msgstr "cancellata"
858
+
859
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:536
860
+ msgid "browsing"
861
+ msgstr "esplorazione"
862
+
863
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:539
864
+ msgid "requesting chat"
865
+ msgstr "richiesta di chat"
866
+
867
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:542
868
+ msgid "Chat Ended - User still browsing"
869
+ msgstr "Chat Terminata - L'utente sta ancora navigando"
870
+
871
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:545
872
+ msgid "User is browsing but doesn't want to chat"
873
+ msgstr "L'utente sta navigando, ma non vuole usare la chat"
874
+
875
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:609
876
+ msgid "Get Pro Add-on to accept more chats"
877
+ msgstr "Passa alla versione Pro per accettare più conversazioni"
878
+
879
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
880
+ msgid "WP Live Chat Support Feedback"
881
+ msgstr "Commenti del Supporto WP Live Chat"
882
+
883
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
884
+ msgid "We'd love to hear your comments and/or suggestions"
885
+ msgstr "Ci piacerebbe ricevere i vostri commenti e / o suggerimenti"
886
+
887
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
888
+ msgid "Your Name"
889
  msgstr "Nome"
890
 
891
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
892
+ msgid "Your Email"
893
+ msgstr "Email"
894
 
895
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
896
+ msgid "Your Website"
897
+ msgstr "Sito Web"
898
 
899
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
900
+ msgid "Send Feedback"
901
+ msgstr "Invia Commento"
902
 
903
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
904
+ msgid "Agents"
905
+ msgstr "Operatori"
906
 
907
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
908
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
909
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
910
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:159
911
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:175
912
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:191
913
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
914
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:224
915
+ msgid "available in the"
916
+ msgstr "disponibile"
917
 
918
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:48
919
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
920
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
921
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
922
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:176
923
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:192
924
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
925
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
926
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:279
927
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:293
928
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
929
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1177
930
+ msgid "Pro Add-on"
931
+ msgstr "Pro Add-on"
932
 
933
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:49
934
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:102
935
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:118
936
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:161
937
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
938
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
939
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
940
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
941
+ msgid "only"
942
+ msgstr "solo"
943
 
944
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:50
945
+ msgid " once off. Updates included forever."
946
+ msgstr ""
947
+ "Si paga una sola volta e poi si riceveranno gli aggiornamenti per sempre."
948
 
949
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:278
950
+ msgid "Get offline messages with the "
951
+ msgstr "Ricevi i messaggi non in linea con il "
952
 
953
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:287
954
+ msgid "Offline text"
955
+ msgstr "Testo non in linea"
956
 
957
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
958
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
959
+ msgid "Edit these text fields using the "
960
+ msgstr "Modificare questi campi di testo utilizzando il"
961
 
962
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
963
+ msgid "First section text"
964
+ msgstr "Testo della Prima sezione"
965
 
966
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:323
967
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:327
968
+ msgid "Questions?"
969
+ msgstr "Domande?"
970
 
971
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:324
972
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:327
973
+ msgid "Chat with us"
974
+ msgstr "Chatta con noi"
975
 
976
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:328
977
+ msgid "Second section text"
978
+ msgstr "Testo della seconda sezione"
979
 
980
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:330
981
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:395
982
+ msgid "Start Chat"
983
+ msgstr "Inizia Chat"
984
 
985
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:331
986
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:402
987
+ msgid "Connecting you to a sales person. Please be patient."
988
+ msgstr ""
989
+ "Ti stiamo collegando con un nostro addetto alle vendite. Si prega di essere "
990
+ "pazienti."
991
 
992
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:337
993
+ msgid "Reactivate chat section text"
994
+ msgstr "Riattivare la sezione testuale della chat "
995
 
996
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:339
997
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:405
998
+ msgid "Reactivating your previous chat..."
999
+ msgstr "Riattivazione precedente conversazione ..."
1000
 
1001
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
1002
+ msgid "Multiple Agents"
1003
+ msgstr "Operatori Multipli"
1004
 
1005
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
1006
+ msgid "Get"
1007
+ msgstr "Ottenere"
1008
 
1009
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
1010
+ msgid "Multiple agent support"
1011
+ msgstr "Supporto Operatore Multiplo"
1012
 
1013
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
1014
+ msgid "Welcome to "
1015
+ msgstr "Benvenuto a"
1016
+
1017
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
1018
+ msgid "WordPress.org plugin repository "
1019
+ msgstr "Magazzino dei plugin di WordPress.org"
1020
+
1021
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
1022
+ msgid "Search Term"
1023
+ msgstr "Cerca Termine"
1024
+
1025
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
1026
+ msgid "Google or other search Engine"
1027
+ msgstr "Google o altro motore di ricerca"
1028
+
1029
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
1030
+ msgid "Friend recommendation"
1031
+ msgstr "Raccomandazione da Amici"
1032
+
1033
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
1034
+ msgid "Other"
1035
+ msgstr "Altro"
1036
+
1037
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
1038
+ msgid "Please Explain"
1039
+ msgstr "Si prega di spiegare"
1040
+
1041
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
1042
+ msgid "Submit"
1043
+ msgstr "Invia"
1044
+
1045
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
1046
+ msgid "Skip"
1047
+ msgstr "Salta"
1048
 
1049
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:177
1050
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1067
1051
+ msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
1052
+ msgstr ""
1053
+ "Per favore clicca su \\'Avvia Chat\\' per iniziare una discussione con "
1054
+ "l'operatore disponibile"
1055
+
1056
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:337
1057
+ msgid "Start Live Chat"
1058
+ msgstr "Avvia Chat in diretta"
1059
+
1060
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:410
1061
+ msgid "Press ENTER to send your message"
1062
+ msgstr "Premi INVIO per inviare il tuo messaggio"
1063
+
1064
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:676
1065
  msgid ""
1066
+ "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1067
+ "strong>. Please"
1068
  msgstr ""
1069
+ "Stai utilizzando una versione non aggiornata di <strong>WP Live Chat Support "
1070
+ "Pro</strong>. Per favore"
1071
 
1072
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:677
1073
+ msgid ""
1074
+ "You're live chat box on your website has been temporarily disabled until the "
1075
+ "Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
1076
+ "experience for both yourself and your visitors."
1077
  msgstr ""
1078
+ "La vostra finestra di chat è stata temporaneamente disabilitata durante "
1079
+ "l'aggiornamento della versione Pro così da evitare possibili inconvenienti "
1080
+ "di operabilità sia per voi che per i vostri visitatori."
1081
+
1082
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:678
1083
+ msgid ""
1084
+ "You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
1085
+ "plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
1086
+ "version/' target='_BLANK'>here</a>."
1087
+ msgstr ""
1088
+ "Potete aggiornare il vostro plugin <a href='./update-core.php'>qui</a>, <a "
1089
+ "href='./plugins.php'>qui</a> oppure <a href='http://wp-livechat.com/get-"
1090
+ "updated-version/' target='_BLANK'>qua</a>."
1091
+
1092
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:704
1093
+ msgid "Experiencing problems with the plugin?"
1094
+ msgstr "Problemi con il plugin?"
1095
+
1096
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:706
1097
+ msgid "Review the documentation."
1098
+ msgstr "Vi suggeriamo di consultare prima la documentazione."
1099
+
1100
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:707
1101
+ msgid "Or ask a question on our"
1102
+ msgstr "O fare una domanda sul nostro"
1103
+
1104
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:730
1105
+ msgid "With the Pro add-on of WP Live Chat Support, you can"
1106
+ msgstr "Con il modulo aggiuntivo Pro di WP Live Chat Support, è possibile"
1107
+
1108
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:730
1109
+ msgid "see who's online and initiate chats"
1110
+ msgstr "vedere chi è online e avviare la chat"
1111
+
1112
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:730
1113
+ msgid "with your online visitors with the click of a button."
1114
+ msgstr ""
1115
+ "con tutti i tuoi visitatori in linea semplicemente cliccando un bottone."
1116
+
1117
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:730
1118
+ msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
1119
+ msgstr ""
1120
+ "Acquista ora il pacchetto aggiuntivo Pro, paghi soltanto UNA VOLTA 19,95 "
1121
+ "dollari e riceverai gratuitamente PER SEMPRE tutti gli aggiornamenti futuri."
1122
+
1123
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:730
1124
+ msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
1125
+ msgstr ""
1126
+ "Acquista ora il pacchetto aggiuntivo Pro, paghi soltanto una volta 19,95 "
1127
+ "dollari e riceverai gratuitamente per sempre tutti gli aggiornamenti futuri."
1128
+
1129
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:774
1130
+ msgid "Previous"
1131
+ msgstr "Precedente"
1132
+
1133
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:774
1134
+ msgid "Active"
1135
+ msgstr "Attiva"
1136
+
1137
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:813
1138
+ msgid "Add Quick Responses to your Live Chat"
1139
+ msgstr "Aggiungere Risposte rapide alla vostra Chat Attiva"
1140
+
1141
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:813
1142
+ msgid "Pro version only"
1143
+ msgstr "Solo nella versione Pro"
1144
+
1145
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:824
1146
+ msgid "type here..."
1147
+ msgstr "scrivi qua..."
1148
+
1149
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1172
1150
+ msgid "WP Live Chat History"
1151
+ msgstr "Cronologia WP Live Chat"
1152
+
1153
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1227
1154
+ msgid "Thank You for your feedback!"
1155
+ msgstr "Grazie per le vostre risposte!"
1156
+
1157
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1231
1158
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1244
1159
+ msgid "Thank you for your feedback. We will be in touch soon"
1160
+ msgstr "Grazie per le vostre risposte. Vi contatteremo al più presto"
1161
+
1162
+ #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1248
1163
+ msgid "There was a problem sending your feedback. Please log your feedback on "
1164
+ msgstr ""
1165
+ "C'è stato un problema nell'invio del feedback. Si prega di inserire il "
1166
+ "vostro commento nei"
1167
+
1168
+ #~ msgid "Chat with"
1169
+ #~ msgstr "Discuti con"
1170
 
1171
  #~ msgid "IP"
1172
  #~ msgstr "IP"
1177
  #~ msgid "Email address"
1178
  #~ msgstr "Indirizzo Email"
1179
 
 
 
 
1180
  #~ msgid "From URL"
1181
  #~ msgstr "Dall'URL"
1182
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: WP-LiveChat
4
  Donate link: http://www.wp-livechat.com
5
  Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, live chat plugin, live support plugin, live chat support plugin, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, chat widget, customer help
6
  Requires at least: 3.8
7
- Tested up to: 4.0.1
8
  Stable tag: trunk
9
  License: GPLv2
10
 
@@ -145,6 +145,14 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
145
 
146
  == Changelog ==
147
 
 
 
 
 
 
 
 
 
148
  = 4.2.4 2014-12-17 - Low Priority =
149
  * New feature: The live chat window can be hidden when offline (Pro only)
150
  * New feature: Desktop notifications added
4
  Donate link: http://www.wp-livechat.com
5
  Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, live chat plugin, live support plugin, live chat support plugin, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, chat widget, customer help
6
  Requires at least: 3.8
7
+ Tested up to: 4.1
8
  Stable tag: trunk
9
  License: GPLv2
10
 
145
 
146
  == Changelog ==
147
 
148
+ = 4.2.5 2015-01-21 - Low Priority =
149
+ * New Feature: You can now view any live chats you have missed
150
+ * New Pro Feature: You can record offline messages when live chat is not online
151
+ * Code Improvements: Labels added to buttons on live chat window
152
+ * Code Improvements: PHP Errors fixed
153
+ * Updated Translations:
154
+ * Italian (Thank You Angelo Giammarresi)
155
+
156
  = 4.2.4 2014-12-17 - Low Priority =
157
  * New feature: The live chat window can be hidden when offline (Pro only)
158
  * New feature: Desktop notifications added
wp-live-chat-support.php CHANGED
@@ -3,13 +3,22 @@
3
  Plugin Name: WP Live Chat Support
4
  Plugin URI: http://www.wp-livechat.com
5
  Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
6
- Version: 4.2.4
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
- /* 4.2.4 2014-12-17 - Low Priority
 
 
 
 
 
 
 
 
 
13
  * New feature: The chat window can be hidden when offline (Pro only)
14
  * New feature: Desktop notifications added
15
  * Bug fix: Email address gave false validation error when not required.
@@ -105,6 +114,8 @@ Author URI: http://www.wp-livechat.com
105
  *
106
  */
107
 
 
 
108
  //error_reporting(E_ERROR);
109
  global $wplc_version;
110
  global $wplc_p_version;
@@ -114,7 +125,7 @@ global $wplc_tblname_chats;
114
  global $wplc_tblname_msgs;
115
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
116
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
117
- $wplc_version = "4.2.4";
118
 
119
  define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
120
  define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
@@ -196,7 +207,6 @@ function wplc_action_callback() {
196
 
197
  }
198
 
199
-
200
  function wplc_feedback_page_include(){
201
  include 'includes/feedback-page.php';
202
  }
@@ -205,6 +215,7 @@ function wplc_admin_menu() {
205
  $wplc_mainpage = add_menu_page('WP Live Chat', __('Live Chat','wplivechat'), 'manage_options', 'wplivechat-menu', 'wplc_admin_menu_layout');
206
  add_submenu_page('wplivechat-menu', __('Settings','wplivechat'), __('Settings','wplivechat'), 'manage_options' , 'wplivechat-menu-settings', 'wplc_admin_settings_layout');
207
  add_submenu_page('wplivechat-menu', __('History','wplivechat'), __('History','wplivechat'), 'manage_options' , 'wplivechat-menu-history', 'wplc_admin_history_layout');
 
208
  add_submenu_page('wplivechat-menu', __('Feedback','wplivechat'), __('Feedback','wplivechat'), 'manage_options' , 'wplivechat-menu-feedback-page', 'wplc_feedback_page_include');
209
  }
210
  add_action('wp_head','wplc_user_top_js');
@@ -591,14 +602,14 @@ function wplc_admin_javascript() {
591
  wplc_title_alerts2 = setTimeout(function (){ document.title = "** CHAT REQUEST **"; }, 2000);
592
  wplc_title_alerts4 = setTimeout(function (){ document.title = orig_title; }, 4000);
593
 
594
- // document.getElementById("wplc_sound").innerHTML="<embed src='<?php // echo plugins_url('/ring.wav', __FILE__); ?>' hidden=true autostart=true loop=false>";
595
 
596
- var wplc_notify_sound = '<?php echo plugins_url('/ring.wav', __FILE__); ?>';
597
- var wplc_notify_chat = new Audio(wplc_notify_sound);
598
-
599
- if(ringer_cnt < 5){
600
- wplc_notify_chat.play();
601
- }
602
 
603
  }, 5000);
604
  } else {
@@ -1133,7 +1144,7 @@ function wplc_add_user_stylesheet() {
1133
 
1134
  }
1135
  function wplc_add_admin_stylesheet() {
1136
- if (isset($_GET['page']) && ($_GET['page'] == 'wplivechat-menu' || $_GET['page'] == 'wplivechat-menu-settings')) {
1137
  wp_register_style( 'wplc-admin-style', plugins_url('/css/jquery-ui.css', __FILE__) );
1138
  wp_enqueue_style( 'wplc-admin-style' );
1139
  wp_register_style( 'wplc-chat-style', plugins_url('/css/chat-style.css', __FILE__) );
@@ -1175,6 +1186,26 @@ function wplc_admin_history_layout() {
1175
  }
1176
  }
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
 
1179
  function wplc_settings_page_basic() {
1180
  if(function_exists("wplc_register_pro_version")){
3
  Plugin Name: WP Live Chat Support
4
  Plugin URI: http://www.wp-livechat.com
5
  Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
6
+ Version: 4.2.5
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
+ /* 4.2.5 2015-01-21 - Low Priority
13
+ * New Feature: You can now view any live chats you have missed
14
+ * New Pro Feature: You can record offline messages when live chat is not online
15
+ * Code Improvements: Labels added to buttons
16
+ * Code Improvements: PHP Errors fixed
17
+ *
18
+ * Updated Translations:
19
+ * Italian (Thank You Angelo Giammarresi)
20
+ *
21
+ * 4.2.4 2014-12-17 - Low Priority
22
  * New feature: The chat window can be hidden when offline (Pro only)
23
  * New feature: Desktop notifications added
24
  * Bug fix: Email address gave false validation error when not required.
114
  *
115
  */
116
 
117
+
118
+
119
  //error_reporting(E_ERROR);
120
  global $wplc_version;
121
  global $wplc_p_version;
125
  global $wplc_tblname_msgs;
126
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
127
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
128
+ $wplc_version = "4.2.5";
129
 
130
  define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
131
  define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
207
 
208
  }
209
 
 
210
  function wplc_feedback_page_include(){
211
  include 'includes/feedback-page.php';
212
  }
215
  $wplc_mainpage = add_menu_page('WP Live Chat', __('Live Chat','wplivechat'), 'manage_options', 'wplivechat-menu', 'wplc_admin_menu_layout');
216
  add_submenu_page('wplivechat-menu', __('Settings','wplivechat'), __('Settings','wplivechat'), 'manage_options' , 'wplivechat-menu-settings', 'wplc_admin_settings_layout');
217
  add_submenu_page('wplivechat-menu', __('History','wplivechat'), __('History','wplivechat'), 'manage_options' , 'wplivechat-menu-history', 'wplc_admin_history_layout');
218
+ add_submenu_page('wplivechat-menu', __('Missed Chats','wplivechat'), __('Missed Chats','wplivechat'), 'manage_options' , 'wplivechat-menu-missed-chats', 'wplc_admin_missed_chats');
219
  add_submenu_page('wplivechat-menu', __('Feedback','wplivechat'), __('Feedback','wplivechat'), 'manage_options' , 'wplivechat-menu-feedback-page', 'wplc_feedback_page_include');
220
  }
221
  add_action('wp_head','wplc_user_top_js');
602
  wplc_title_alerts2 = setTimeout(function (){ document.title = "** CHAT REQUEST **"; }, 2000);
603
  wplc_title_alerts4 = setTimeout(function (){ document.title = orig_title; }, 4000);
604
 
605
+ document.getElementById("wplc_sound").innerHTML="<embed src='<?php echo plugins_url('/ring.wav', __FILE__); ?>' hidden=true autostart=true loop=false>";
606
 
607
+ // var wplc_notify_sound = '<?php echo plugins_url('/ring.wav', __FILE__); ?>';
608
+ // var wplc_notify_chat = new Audio(wplc_notify_sound);
609
+ //
610
+ // if(ringer_cnt < 5){
611
+ // wplc_notify_chat.play();
612
+ // }
613
 
614
  }, 5000);
615
  } else {
1144
 
1145
  }
1146
  function wplc_add_admin_stylesheet() {
1147
+ if (isset($_GET['page']) && ($_GET['page'] == 'wplivechat-menu' || $_GET['page'] == 'wplivechat-menu-settings' || $_GET['page'] == 'wplivechat-menu-offline-messages')) {
1148
  wp_register_style( 'wplc-admin-style', plugins_url('/css/jquery-ui.css', __FILE__) );
1149
  wp_enqueue_style( 'wplc-admin-style' );
1150
  wp_register_style( 'wplc-chat-style', plugins_url('/css/chat-style.css', __FILE__) );
1186
  }
1187
  }
1188
 
1189
+ function wplc_admin_missed_chats() {
1190
+ echo "<div class=\"wrap\"><div id=\"icon-edit\" class=\"icon32 icon32-posts-post\"><br></div><h2>".__("WP Live Chat Missed Chats","wplivechat")."</h2>";
1191
+ if(function_exists('wplc_admin_display_missed_chats')){
1192
+ wplc_admin_display_missed_chats();
1193
+ }
1194
+ }
1195
+
1196
+ function wplc_admin_offline_messages(){
1197
+ echo"<div class=\"wrap\"><div id=\"icon-edit\" class=\"icon32 icon32-posts-post\"><br></div><h2>".__("WP Live Chat Offline Messages","wplivechat")."</h2>";
1198
+ if (function_exists("wplc_register_pro_version")) {
1199
+ if(function_exists('wplc_pro_admin_display_offline_messages')){
1200
+ wplc_pro_admin_display_offline_messages();
1201
+ } else {
1202
+ echo "<div class='updated'><p>".__('Please update to the latest version of WP Live Chat Support Pro to start recording any offline messages.', 'wplivechat')."</p></div>";
1203
+ }
1204
+ }
1205
+ else {
1206
+ echo "<br /><br >This option is only available in the <a href=\"http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=missed_chats1\" title=\"".__("Pro Add-on","wplivechat")."\" target=\"_BLANK\">Pro Add-on</a> of WP Live Chat. <a href=\"http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=missed_chats2\" title=\"".__("Pro Add-on","wplivechat")."\" target=\"_BLANK\">Get it now for only $19.95 once off!</a>";
1207
+ }
1208
+ }
1209
 
1210
  function wplc_settings_page_basic() {
1211
  if(function_exists("wplc_register_pro_version")){