WP Live Chat Support - Version 5.0.0

Version Description

  • Doppio Update - 2015-07-29 - Medium Priority =
  • New, modern chat dashboard
  • Better user handling (chat long polling)
  • Added a welcome page to the live chat dashboard
  • The live hat dashboard is now fully responsive
  • You are now able to see who is a new visitor and who is a returning visitor
  • Bug fixes in the javascript that handles the live chat controls
  • Fixed the bug that stopped the chats from timing out after a certain amount of time
Download this release

Release Info

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

Code changes from version 4.4.4 to 5.0.0

ajax_new.php CHANGED
@@ -45,8 +45,8 @@ function wplc_init_ajax_callback() {
45
  $i = 1;
46
  while($i <= $iterations){
47
 
48
- // update chats if they have timed out every 10 seconds
49
- if($i %10 == 0) {
50
  wplc_update_chat_statuses();
51
  }
52
 
@@ -55,19 +55,25 @@ function wplc_init_ajax_callback() {
55
 
56
 
57
  if($_POST['wplc_update_admin_chat_table'] == 'false'){
 
58
  $old_chat_data = false;
59
  } else {
60
- $old_chat_data = sanitize_text_field($_POST['wplc_update_admin_chat_table']);
61
  }
62
 
63
  $pending = wplc_check_pending_chats();
64
- $new_chat_data = wplc_list_chats();
65
 
66
- if(sanitize_text_field($new_chat_data) !== sanitize_text_field($old_chat_data)){
 
 
 
 
 
67
  $array['old_chat_data'] = $old_chat_data;
68
  $array['wplc_update_admin_chat_table'] = $new_chat_data;
69
  $array['pending'] = $pending;
70
- $array['action'] = "wplc_update_admin_chat";
71
 
72
  }
73
 
@@ -141,7 +147,7 @@ function wplc_init_ajax_callback() {
141
  while($i <= $iterations){
142
  if($_POST['cid'] == null || $_POST['cid'] == "" || $_POST['cid'] == "null" || $_POST['cid'] == 0){
143
  // echo 1;
144
- $user = "user".time();
145
  $email = "no email set";
146
  $cid = wplc_log_user_on_page($user,$email,sanitize_text_field($_POST['wplcsession']));
147
  $array['cid'] = $cid;
45
  $i = 1;
46
  while($i <= $iterations){
47
 
48
+ // update chats if they have timed out every 15 iterations
49
+ if($i %15 == 0) {
50
  wplc_update_chat_statuses();
51
  }
52
 
55
 
56
 
57
  if($_POST['wplc_update_admin_chat_table'] == 'false'){
58
+ /* this is a new load of the page, return false so we can force a send of the new visitor data */
59
  $old_chat_data = false;
60
  } else {
61
+ $old_chat_data = stripslashes($_POST['wplc_update_admin_chat_table']);
62
  }
63
 
64
  $pending = wplc_check_pending_chats();
65
+ $new_chat_data = wplc_list_chats_new();
66
 
67
+
68
+ if ($new_chat_data == "false") { $new_chat_data = false; }
69
+
70
+
71
+
72
+ if($new_chat_data !== $old_chat_data){
73
  $array['old_chat_data'] = $old_chat_data;
74
  $array['wplc_update_admin_chat_table'] = $new_chat_data;
75
  $array['pending'] = $pending;
76
+ $array['action'] = "wplc_update_chat_list";
77
 
78
  }
79
 
147
  while($i <= $iterations){
148
  if($_POST['cid'] == null || $_POST['cid'] == "" || $_POST['cid'] == "null" || $_POST['cid'] == 0){
149
  // echo 1;
150
+ $user = "Guest";
151
  $email = "no email set";
152
  $cid = wplc_log_user_on_page($user,$email,sanitize_text_field($_POST['wplcsession']));
153
  $array['cid'] = $cid;
css/chat-style.css CHANGED
@@ -355,9 +355,151 @@
355
  }
356
  .admin_visitor_advanced_info{
357
  width: 93%;
 
358
  }
359
  }
360
 
361
  .wplc_admin_dashboard_container p {
362
  padding: 0 5px;
363
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  }
356
  .admin_visitor_advanced_info{
357
  width: 93%;
358
+ clear:both;
359
  }
360
  }
361
 
362
  .wplc_admin_dashboard_container p {
363
  padding: 0 5px;
364
+ }
365
+
366
+ .toplevel_page_wplivechat-menu .wp-pointer-content h3 {
367
+ background-color: #ec822c;
368
+ border: 1px solid #ec822c;
369
+ }
370
+ .toplevel_page_wplivechat-menu .wp-pointer-content h3:before {
371
+ color: #ec822c;
372
+
373
+ }
374
+
375
+ #wplc_admin_chat_holder {
376
+ width:990px;
377
+ margin:0 auto;
378
+ display:block;
379
+ overflow:auto;
380
+ clear:both;
381
+
382
+ }
383
+ #wplc_admin_chat_area_new {
384
+ width: 750px;
385
+ font-size: 13px;
386
+ float:left;
387
+ display:block;
388
+ background-color:#FFF;
389
+ border-radius:25px;
390
+ }
391
+ #wplc_admin_chat_info_new {
392
+ float:left;
393
+ width:240px;
394
+ display:block;
395
+ margin-bottom:20px;
396
+
397
+
398
+ }
399
+ .wplc_chat_vis_count_box {
400
+ width:57%;
401
+ min-width:198px;
402
+ background-color:#FFF;
403
+ min-height:150px;
404
+ border-radius:25px;
405
+ margin-left:auto;
406
+ margin-right:auto;
407
+ display:block;
408
+ text-align:center;
409
+ padding:10px;
410
+ }
411
+
412
+ .wplc_vis_online {
413
+ font-size: 60px;
414
+ line-height:70px;
415
+ color: #ec822c;
416
+ text-align: center;
417
+ padding-top: 36px;
418
+ font-family: Arial;
419
+ display: block;
420
+ font-weight:bold;
421
+ }
422
+
423
+
424
+
425
+ #wplc_admin_chat_area_new li {
426
+ float: left;
427
+ background: none;
428
+
429
+ padding: 0 2px 0 0;
430
+ list-style:none;
431
+ margin:0;
432
+
433
+ }
434
+ .wplc_header_vh {
435
+ font: bold 14px/26px Arial;
436
+ padding: 0 0 0 0px;
437
+ color: #C2BBBE;
438
+ display: block;
439
+ text-transform: uppercase;
440
+ display:block;
441
+ }
442
+ .wplc_headerspan_v { min-width:140px; width:20%; display:block; }
443
+ .wplc_headerspan_nr { min-width:100px; width:14%; display:block; }
444
+ .wplc_headerspan_d { min-width:200px; width:30%; display:block; }
445
+ .wplc_headerspan_d a { font-style: italic; }
446
+ .wplc_headerspan_t { min-width:60px; width:9%; display:block; }
447
+ .wplc_headerspan_s { min-width:80px; width:12%; display:block; }
448
+ .wplc_headerspan_a { min-width:100px; width:15%; display:block; }
449
+ .wplc_chat_ul_header {
450
+ clear: both;
451
+ overflow:auto;
452
+ display:block;
453
+ padding:10px;
454
+
455
+ }
456
+ #wplc_chat_ul {
457
+ clear: both;
458
+ overflow:auto;
459
+ display:block;
460
+
461
+ }
462
+ .wplc_p_cul { padding:10px; clear:both; display:block; overflow: auto; }
463
+ .wplc_p_cul:hover { background-color:#eee; border-radius:5px; }
464
+
465
+ .wplc_status_box {
466
+ padding: 3px;
467
+ border-radius: 5px;
468
+ color:white;
469
+ font-size:11px;
470
+
471
+ }
472
+ .wplc-agent-info {
473
+ font: bold 12px/24px Arial;
474
+ color: #C2BBBE;
475
+ text-transform: uppercase;
476
+ display: block;
477
+ }
478
+ .wplc_agents_online { color: #ec822c; }
479
+ .wplc_type_new { background-color: #E1734A; }
480
+ .wplc_type_returning { background-color: #ec822c; }
481
+
482
+ .wplc_status_1 { background-color: #CCCCCC; }
483
+ .wplc_status_4 { background-color: #CCCCCC; }
484
+ .wplc_status_8 { background-color: #CCCCCC; }
485
+
486
+ .wplc_status_5 { background-color: #B3D24B; }
487
+
488
+ .wplc_status_2 { background-color: #3278CD; }
489
+ .wplc_status_3 { background-color: #3278CD; }
490
+
491
+
492
+ .wplc_status_6 { background-color: red; }
493
+ .wplc_status_7 { background-color: #BFBCBB; }
494
+ .wplc_status_9 { background-color: #BFBCBB; }
495
+
496
+
497
+ .browser-tag { font-size:10px; }
498
+ .wplc-sub-item-header { color:#C7C3C3; font-style: italic; }
499
+
500
+ @media (min-width:320px) { #wplc_admin_chat_holder { width:100%; } #wplc_admin_chat_area_new { width:90%; float:none; display:block; margin: 0 auto; } #wplc_admin_chat_info_new { width:240px; float:none; display:block; margin: 20px auto; } .wplc_headerspan_t { display:none; } .wplc_headerspan_nr { display:none; } .wplc_chat_ul_header { display:none; } .wplc_p_cul { border-bottom:1px solid #ccc; } #wplc_admin_chat_area_new li { float:none; } .wplc_headerspan_a,.wplc_headerspan_d,.wplc_headerspan_v,.wplc_headerspan_s { margin:5px auto; text-align:center; } .wplc_chat_vis_count_box { min-width:180px; } }
501
+ @media (min-width:481px) { #wplc_admin_chat_holder { width:100%; } #wplc_admin_chat_area_new { width:90%; float:none; display:block; margin: 0 auto; } #wplc_admin_chat_info_new { width:240px; float:none; display:block; margin: 20px auto; } .wplc_headerspan_t { display:none; } .wplc_headerspan_nr { display:none; } .wplc_chat_ul_header { display:none; } .wplc_p_cul { border-bottom:1px solid #ccc; } #wplc_admin_chat_area_new li { float:none; } .wplc_headerspan_a,.wplc_headerspan_d,.wplc_headerspan_v,.wplc_headerspan_s { margin:5px auto; text-align:center; } .wplc_chat_vis_count_box { min-width:180px; } }
502
+ @media (min-width:641px) { #wplc_admin_chat_holder { width:650px; } #wplc_admin_chat_area_new { width:640px; float:none; display:block; margin: 0 auto; } #wplc_admin_chat_info_new { width:240px; float:none; display:block; margin: 20px auto; } .wplc_headerspan_t { display:block; } .wplc_headerspan_nr { display:none; } .wplc_chat_ul_header { display:block; } .wplc_p_cul { border-bottom:none; } #wplc_admin_chat_area_new li { float:left; } .wplc_headerspan_a,.wplc_headerspan_d,.wplc_headerspan_v,.wplc_headerspan_s { margin:0; text-align:left; } .wplc_chat_vis_count_box { min-width:180px; } }
503
+ @media (min-width:961px) { #wplc_admin_chat_holder { width:850px; } #wplc_admin_chat_area_new { width:700px; float:none; display:block; margin: 0 auto; } #wplc_admin_chat_info_new { width:240px; float:none; display:block; margin: 20px auto; } .wplc_headerspan_t { display:none; } .wplc_headerspan_nr { display:block; } .wplc_chat_ul_header { display:block; } .wplc_p_cul { border-bottom:none; } #wplc_admin_chat_area_new li { float:left; } .wplc_headerspan_a,.wplc_headerspan_d,.wplc_headerspan_v,.wplc_headerspan_s { margin:0; text-align:left; } .wplc_chat_vis_count_box { min-width:110px; } }
504
+ @media (min-width:1025px) { #wplc_admin_chat_holder { width:990px; } #wplc_admin_chat_area_new { width:700px; float:left; display:block; margin: 0; } #wplc_admin_chat_info_new { width:140px; float:left; display:block; margin: 0; } .wplc_headerspan_t { display:none; } .wplc_headerspan_nr { display:block; } .wplc_chat_ul_header { display:block; } .wplc_p_cul { border-bottom:none; } #wplc_admin_chat_area_new li { float:left; } .wplc_headerspan_a,.wplc_headerspan_d,.wplc_headerspan_v,.wplc_headerspan_s { margin:0; text-align:left; } .wplc_chat_vis_count_box { min-width:110px; } }
505
+ @media (min-width:1281px) { #wplc_admin_chat_holder { width:990px; } #wplc_admin_chat_area_new { width:750px; float:left; display:block; margin: 0; } #wplc_admin_chat_info_new { width:240px; float:left; display:block; margin: 0; } .wplc_headerspan_t { display:block; } .wplc_headerspan_nr { display:block; } .wplc_chat_ul_header { display:block; } .wplc_p_cul { border-bottom:none; } #wplc_admin_chat_area_new li { float:left; } .wplc_headerspan_a,.wplc_headerspan_d,.wplc_headerspan_v,.wplc_headerspan_s { margin:0; text-align:left; } .wplc_chat_vis_count_box { min-width:198px; } }
functions.php CHANGED
@@ -32,6 +32,16 @@ function wplc_log_user_on_page($name,$email,$session) {
32
  //
33
  // $rows_affected = $wpdb->insert( $wplc_tblname_chats, $ins_array );
34
 
 
 
 
 
 
 
 
 
 
 
35
  $wpdb->insert(
36
  $wplc_tblname_chats,
37
  array(
@@ -42,7 +52,8 @@ function wplc_log_user_on_page($name,$email,$session) {
42
  'session' => $session,
43
  'ip' => maybe_serialize($user_data),
44
  'url' => $_SERVER['HTTP_REFERER'],
45
- 'last_active_timestamp' => current_time('mysql')
 
46
  ),
47
  array(
48
  '%s',
@@ -52,6 +63,7 @@ function wplc_log_user_on_page($name,$email,$session) {
52
  '%s',
53
  '%s',
54
  '%s',
 
55
  '%s'
56
  )
57
  );
@@ -290,7 +302,9 @@ function wplc_list_chats() {
290
  $trstyle = "style='background-color:#F7FCFE; height:30px;'";
291
  $icon = "<i class=\"fa fa-check-circle wplc_active\" title='".__('Chat Active', 'wplivechat')."' alt='".__('Chat Active', 'wplivechat')."'></i><div class='wplc_icon_message'>".__('This chat is active', 'wplivechat')."</div>";
292
  }
293
- if ($wplc_c>1) { $actions = wplc_get_msg(); }
 
 
294
 
295
  $trstyle = "";
296
 
@@ -335,6 +349,165 @@ function wplc_list_chats() {
335
  return $table;
336
  }
337
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
 
339
 
340
 
@@ -843,7 +1016,7 @@ function wplc_user_initiate_chat($name,$email,$cid = null,$session) {
843
 
844
 
845
  function wplc_get_msg() {
846
- return "<a href=\"http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=morechats\" title=\"".__("Get Pro Add-on to accept more chats","wplivechat")."\" target=\"_BLANK\">Get Pro Add-on to accept more chats</a>";
847
  }
848
  function wplc_update_chat_statuses() {
849
 
@@ -859,26 +1032,29 @@ function wplc_update_chat_statuses() {
859
  foreach ($results as $result) {
860
  $id = $result->id;
861
  $timestamp = strtotime($result->last_active_timestamp);
862
- if ($result->status == 2) {
863
- if ((time() - $timestamp) >= 60) { // 1 minute max
 
 
 
864
  wplc_change_chat_status($id,0);
865
  }
866
  }
867
- else if ($result->status == 3) {
868
- if ((time() - $timestamp) >= 300) { // 30 seconds
869
  wplc_change_chat_status($id,1);
870
  }
871
  }
872
- else if ($result->status == 5) {
873
- if ((time() - $timestamp) >= 120) { // 2 minute timeout
874
  wplc_change_chat_status($id,7); // 7 - timedout
875
  }
876
- } else if($result->status == 8){ // chat is complete but user is still browsing
877
- if ((time() - $timestamp) >= 20) { // 20 seconds
878
  wplc_change_chat_status($id,1); // 1 - chat is now complete
879
  }
880
- } else if($result->status == 9 || $result->status == 10){
881
- if ((time() - $timestamp) >= 20) { // 20 seconds
882
  wplc_change_chat_status($id,7); // 7 - timedout
883
  }
884
  }
32
  //
33
  // $rows_affected = $wpdb->insert( $wplc_tblname_chats, $ins_array );
34
 
35
+ /* user types
36
+ * 1 = new
37
+ * 2 = returning
38
+ * 3 = timed out
39
+ */
40
+
41
+ $other = array(
42
+ "user_type" => 1
43
+ );
44
+
45
  $wpdb->insert(
46
  $wplc_tblname_chats,
47
  array(
52
  'session' => $session,
53
  'ip' => maybe_serialize($user_data),
54
  'url' => $_SERVER['HTTP_REFERER'],
55
+ 'last_active_timestamp' => current_time('mysql'),
56
+ 'other' => maybe_serialize($other),
57
  ),
58
  array(
59
  '%s',
63
  '%s',
64
  '%s',
65
  '%s',
66
+ '%s',
67
  '%s'
68
  )
69
  );
302
  $trstyle = "style='background-color:#F7FCFE; height:30px;'";
303
  $icon = "<i class=\"fa fa-check-circle wplc_active\" title='".__('Chat Active', 'wplivechat')."' alt='".__('Chat Active', 'wplivechat')."'></i><div class='wplc_icon_message'>".__('This chat is active', 'wplivechat')."</div>";
304
  }
305
+
306
+
307
+ /* if ($wplc_c>1) { $actions = wplc_get_msg(); } */
308
 
309
  $trstyle = "";
310
 
349
  return $table;
350
  }
351
 
352
+ function wplc_time_ago($time_ago)
353
+ {
354
+ $time_ago = strtotime($time_ago);
355
+ $cur_time = current_time('timestamp');
356
+ $time_elapsed = $cur_time - $time_ago;
357
+ $seconds = $time_elapsed ;
358
+ $minutes = round($time_elapsed / 60 );
359
+ $hours = round($time_elapsed / 3600);
360
+ $days = round($time_elapsed / 86400 );
361
+ $weeks = round($time_elapsed / 604800);
362
+ $months = round($time_elapsed / 2600640 );
363
+ $years = round($time_elapsed / 31207680 );
364
+ // Seconds
365
+ if($seconds <= 60){
366
+ return "0 min";
367
+ }
368
+ //Minutes
369
+ else if($minutes <=60){
370
+ if($minutes==1){
371
+ return "1 min";
372
+ }
373
+ else{
374
+ return "$minutes min";
375
+ }
376
+ }
377
+ //Hours
378
+ else if($hours <=24){
379
+ if($hours==1){
380
+ return "1 hr";
381
+ }else{
382
+ return "$hours hrs";
383
+ }
384
+ }
385
+ //Days
386
+ else if($days <= 7){
387
+ if($days==1){
388
+ return "1 day";
389
+ }else{
390
+ return "$days days";
391
+ }
392
+ }
393
+ //Weeks
394
+ else if($weeks <= 4.3){
395
+ if($weeks==1){
396
+ return "1 week";
397
+ }else{
398
+ return "$weeks weeks";
399
+ }
400
+ }
401
+ //Months
402
+ else if($months <=12){
403
+ if($months==1){
404
+ return "1 month";
405
+ }else{
406
+ return "$months months";
407
+ }
408
+ }
409
+ //Years
410
+ else{
411
+ if($years==1){
412
+ return "1 year";
413
+ }else{
414
+ return "$years years";
415
+ }
416
+ }
417
+ }
418
+ function wplc_list_chats_new() {
419
+
420
+ global $wpdb;
421
+ global $wplc_tblname_chats;
422
+ $status = 3;
423
+ $wplc_c = 0;
424
+ $results = $wpdb->get_results("SELECT * FROM $wplc_tblname_chats WHERE `status` = 3 OR `status` = 2 OR `status` = 10 OR `status` = 5 or `status` = 8 or `status` = 9 ORDER BY `timestamp` ASC");
425
+ $data_array = array();
426
+ $id_list = array();
427
+
428
+
429
+ if (!$results) {
430
+ $data_array = false;
431
+ } else {
432
+
433
+
434
+ foreach ($results as $result) {
435
+ unset($trstyle);
436
+ unset($actions);
437
+
438
+
439
+ global $wplc_basic_plugin_url;
440
+ $user_data = maybe_unserialize($result->ip);
441
+ $user_ip = $user_data['ip'];
442
+ $browser = wplc_return_browser_string($user_data['user_agent']);
443
+ $browser_image = wplc_return_browser_image($browser,"16");
444
+
445
+ if($user_ip == ""){
446
+ $user_ip = __('IP Address not recorded', 'wplivechat');
447
+ } else {
448
+ $user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."'>".$user_ip."</a>";
449
+ }
450
+
451
+ if (intval($result->status) == 2) {
452
+ $url = admin_url( 'admin.php?page=wplivechat-menu&action=ac&cid='.$result->id);
453
+ $actions = "<a href=\"".$url."\" class=\"wplc_open_chat button button-primary\" window-title=\"WP_Live_Chat_".$result->id."\">".__("Accept Chat","wplivechat")."</a>";
454
+ $trstyle = "style='background-color:#FFFBE4; height:30px;'";
455
+ $icon = "<i class=\"fa fa-phone wplc_pending\" title='".__('Incoming Chat', 'wplivechat')."' alt='".__('Incoming Chat', 'wplivechat')."'></i><div class='wplc_icon_message'>".__('You have an incoming chat.', 'wplivechat')."</div>";
456
+ $wplc_c++;
457
+
458
+ }
459
+ else if (intval($result->status) == 3) {
460
+ $wplc_c++;
461
+ $url = admin_url( 'admin.php?page=wplivechat-menu&action=ac&cid='.$result->id);
462
+ $actions = "<a href=\"".$url."\" class=\"wplc_open_chat button button-primary\" window-title=\"WP_Live_Chat_".$result->id."\">".__("Open Chat","wplivechat")."</a>";
463
+ $trstyle = "style='background-color:#F7FCFE; height:30px;'";
464
+ $icon = "<i class=\"fa fa-check-circle wplc_active\" title='".__('Chat Active', 'wplivechat')."' alt='".__('Chat Active', 'wplivechat')."'></i><div class='wplc_icon_message'>".__('This chat is active', 'wplivechat')."</div>";
465
+ }
466
+ else if(intval($result->status) == 5 ){
467
+ $actions = "<a href=\"javascript:void(0);\" id=\"wplc_initiate_chat\" class=\"wplc_initiate_chat button button-secondary\">".__("Initiate Chat","wplivechat")."</a>";
468
+ }
469
+ else {
470
+ $actions = "";
471
+ }
472
+ if ($wplc_c>1) { $actions = wplc_get_msg(); }
473
+
474
+
475
+
476
+ $trstyle = "";
477
+
478
+ $id_list[intval($result->id)] = true;
479
+
480
+ $data_array[$result->id]['name'] = $result->name;
481
+ $data_array[$result->id]['email'] = $result->email;
482
+
483
+ $data_array[$result->id]['status'] = $result->status;
484
+ $data_array[$result->id]['action'] = $actions;
485
+ $data_array[$result->id]['timestamp'] = wplc_time_ago($result->timestamp);
486
+
487
+ if ((current_time('timestamp') - strtotime($result->timestamp)) < 3600) {
488
+ $data_array[$result->id]['type'] = __("New","wplivechat");
489
+ } else {
490
+ $data_array[$result->id]['type'] = __("Returning","wplivechat");
491
+ }
492
+
493
+ $data_array[$result->id]['image'] = "<img src=\"//www.gravatar.com/avatar/".md5($result->email)."?s=20&d=mm\" />";
494
+ $data_array[$result->id]['data']['browsing'] = $result->url;
495
+ $path = parse_url($result->url, PHP_URL_PATH);
496
+
497
+ if (strlen($path) > 20) {
498
+ $data_array[$result->id]['data']['browsing_nice_url'] = substr($path,0,20).'...';
499
+ } else {
500
+ $data_array[$result->id]['data']['browsing_nice_url'] = $path;
501
+ }
502
+
503
+ $data_array[$result->id]['data']['browser'] = "<img src='" . $wplc_basic_plugin_url . "/images/$browser_image' alt='$browser' title='$browser' /> ";
504
+ $data_array[$result->id]['data']['ip'] = $user_ip;
505
+ }
506
+ $data_array['ids'] = $id_list;
507
+ }
508
+
509
+ return json_encode($data_array);
510
+ }
511
 
512
 
513
 
1016
 
1017
 
1018
  function wplc_get_msg() {
1019
+ return "<a href=\"javascript:void(0);\" class=\"wplc_second_chat_request button button-primary\" style='cursor:not-allowed' title=\"".__("Get Pro Add-on to accept more chats","wplivechat")."\" target=\"_BLANK\">".__("Accept Chat","wplivechat")."</a>";
1020
  }
1021
  function wplc_update_chat_statuses() {
1022
 
1032
  foreach ($results as $result) {
1033
  $id = $result->id;
1034
  $timestamp = strtotime($result->last_active_timestamp);
1035
+ $datenow = current_time('timestamp');
1036
+ $difference = $datenow - $timestamp;
1037
+
1038
+ if (intval($result->status) == 2) {
1039
+ if ($difference >= 60) { // 1 minute max
1040
  wplc_change_chat_status($id,0);
1041
  }
1042
  }
1043
+ else if (intval($result->status) == 3) {
1044
+ if ($difference >= 300) { // 30 seconds
1045
  wplc_change_chat_status($id,1);
1046
  }
1047
  }
1048
+ else if (intval($result->status) == 5) {
1049
+ if ($difference >= 120) { // 2 minute timeout
1050
  wplc_change_chat_status($id,7); // 7 - timedout
1051
  }
1052
+ } else if(intval($result->status) == 8){ // chat is complete but user is still browsing
1053
+ if ($difference >= 45) { // 30 seconds
1054
  wplc_change_chat_status($id,1); // 1 - chat is now complete
1055
  }
1056
+ } else if(intval($result->status) == 9 || $result->status == 10){
1057
+ if ($difference >= 120) { // 120 seconds
1058
  wplc_change_chat_status($id,7); // 7 - timedout
1059
  }
1060
  }
images/support.png ADDED
Binary file
includes/settings_page.php CHANGED
@@ -274,14 +274,6 @@
274
  <div id="tabs-3">
275
  <h3><?php _e("Offline Messages",'wplivechat')?></h3>
276
  <table class='form-table' width='700'>
277
- <tr>
278
- <td>
279
- <?php _e("Do not allow users to send offline messages", "wplivechat") ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?php _e("The chat window will be hidden when it is offline. Users will not be able to send offline messages to you", "wplivechat") ?>"></i>
280
- </td>
281
- <td>
282
- <input type="checkbox" name="wplc_hide_when_offline" value="1" readonly="readonly" disabled/>
283
- </td>
284
- </tr>
285
  <tr>
286
  <td width='200' valign='top'>
287
  <?php _e("Email Address","wplivechat")?>:
@@ -311,6 +303,14 @@
311
  <br />
312
  </td>
313
  </tr>
 
 
 
 
 
 
 
 
314
 
315
  </table>
316
  </div>
@@ -443,8 +443,96 @@
443
  </table>
444
  </div>
445
  <div id="tabs-5">
446
- <h3><?php _e("Multiple Agents", "wplivechat") ?></h3>
447
- <p><?php _e("Get","wplivechat") ?> <a href="http://wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=multipleAgents" target="_BLANK"><?php _e("Multiple agent support", "wplivechat") ?></a></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  </div>
449
  <div id="tabs-7">
450
  <h3><?php _e("Blocked Visitors - Based on IP Address", "wplivechat") ?></h3>
@@ -452,8 +540,10 @@
452
  $ip_addresses = get_option('WPLC_BANNED_IP_ADDRESSES');
453
  if($ip_addresses){
454
  $ip_addresses = maybe_unserialize($ip_addresses);
455
- foreach($ip_addresses as $ip){
456
- echo $ip."\n";
 
 
457
  }
458
  }
459
  ?></textarea>
274
  <div id="tabs-3">
275
  <h3><?php _e("Offline Messages",'wplivechat')?></h3>
276
  <table class='form-table' width='700'>
 
 
 
 
 
 
 
 
277
  <tr>
278
  <td width='200' valign='top'>
279
  <?php _e("Email Address","wplivechat")?>:
303
  <br />
304
  </td>
305
  </tr>
306
+ <tr>
307
+ <td>
308
+ <?php _e("Do not allow users to send offline messages", "wplivechat") ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?php _e("The chat window will be hidden when it is offline. Users will not be able to send offline messages to you", "wplivechat") ?>"></i>
309
+ </td>
310
+ <td>
311
+ <input type="checkbox" name="wplc_hide_when_offline" value="1" readonly="readonly" disabled/>
312
+ </td>
313
+ </tr>
314
 
315
  </table>
316
  </div>
443
  </table>
444
  </div>
445
  <div id="tabs-5">
446
+
447
+
448
+ <style>
449
+ .wplc_agent_container ul {
450
+ display:block;
451
+ overflow:auto;
452
+ }
453
+ .wplc_agent_container li{
454
+ display: block;
455
+ float: left;
456
+ text-align: center;
457
+ border: 1px solid #CCC;
458
+ width:150px;
459
+ height:310px;
460
+ padding: 10px;
461
+ border-radius: 5px;
462
+ margin: 10px;
463
+ box-shadow: 2px 2px 2px #CCC;
464
+ overflow: auto;
465
+
466
+ }
467
+ .wplc_agent_container img{
468
+ border-radius: 100px;
469
+ }
470
+ .wplc_agent_container h3 {
471
+ font: bold 12px/16px Arial;
472
+ padding: 0 0 0 0px;
473
+ color: #C2BBBE;
474
+ display: block;
475
+ height:40px;
476
+ text-transform: uppercase;
477
+ }
478
+ .wplc_agent_container small { word-wrap: break-word; display:block; height:50px; }
479
+ .wplc_agent_container select { width: 120px; }
480
+ #wplc_add_agent { cursor: not-allowed;}
481
+ </style>
482
+ <h3><?php _e('Current Users that are Chat Agents', 'wplivechat'); ?></h3>
483
+ <?php
484
+ $wplc_agents = "<div class='wplc_agent_container'><ul>";
485
+ $user = wp_get_current_user();
486
+ $wplc_agents .= "<li id=\"wplc_agent_li_".$user->ID."\">";
487
+ $wplc_agents .= "<p><img src=\"//www.gravatar.com/avatar/" . md5($user->user_email) . "?s=80&d=mm\" /></p>";
488
+ $check = get_user_meta($user->ID,"wplc_chat_agent_online");
489
+ if ($check) {
490
+ $wplc_agents .= "<span class='wplc_status_box wplc_type_returning'>".__("Online","wplivechat")."</span>";
491
+ }
492
+ $wplc_agents .= "<h3>" . $user->display_name . "</h3>";
493
+
494
+ $wplc_agents .= "<small>" . $user->user_email . "</small>";
495
+
496
+ $wplc_agents .= "</li>";
497
+ echo $wplc_agents;
498
+ ?>
499
+ <li style='width:150px;' id='wplc_add_new_agent_box'>
500
+ <p><i class='fa fa-plus-circle fa-4x' style='color:#ccc;' ></i></p>
501
+ <h3><?php _e("Add New Agent","wplivechat"); ?></h3>
502
+ <select id='wplc_agent_select'>
503
+ <option value=''><?php _e("Select","wplivechat"); ?></option>
504
+
505
+ <?php
506
+ $blogusers = get_users( array( 'role' => 'administrator', 'fields' => array( 'display_name','id','user_email' ) ) );
507
+ // Array of stdClass objects.
508
+ foreach ( $blogusers as $user ) {
509
+ $is_agent = get_user_meta(esc_html( $user->ID ), 'wplc_ma_agent', true);
510
+ if(!$is_agent){ echo '<option id="wplc_selected_agent_'. esc_html( $user->ID ) .'" value="' . esc_html( $user->ID ) . '">' . esc_html( $user->display_name ) . ' ('.__('Administrator','wplivechat').')</option>'; }
511
+ }
512
+ $blogusers = get_users( array( 'role' => 'editor', 'fields' => array( 'display_name','id','user_email' ) ) );
513
+ // Array of stdClass objects.
514
+ foreach ( $blogusers as $user ) {
515
+ $is_agent = get_user_meta(esc_html( $user->ID ), 'wplc_ma_agent', true);
516
+ if(!$is_agent){ echo '<option id="wplc_selected_agent_'. esc_html( $user->ID ) .'" value="' . esc_html( $user->ID ) . '">' . esc_html( $user->display_name ) . ' ('.__('Editor','wplivechat').')</option>'; }
517
+ }
518
+ $blogusers = get_users( array( 'role' => 'author', 'fields' => array( 'display_name','id','user_email' ) ) );
519
+ // Array of stdClass objects.
520
+ foreach ( $blogusers as $user ) {
521
+ $is_agent = get_user_meta(esc_html( $user->ID ), 'wplc_ma_agent', true);
522
+ if(!$is_agent){ echo '<option id="wplc_selected_agent_'. esc_html( $user->ID ) .'" value="' . esc_html( $user->ID ) . '">' . esc_html( $user->display_name ) . ' ('.__('Author','wplivechat').')</option>'; }
523
+ }
524
+ ?>
525
+ </select>
526
+ <p><button class='button button-secondary' id='wplc_add_agent' disabled style=><?php _e("Add Agent","wplivechat"); ?></button></p>
527
+ <p style='font-size:0.8em'><?php _e("Add as many agents as you need with the ","wplivechat") ?> <a href="http://wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=multipleAgents" target="_BLANK"><?php _e("Pro version for only $19.95 once off.", "wplivechat") ?></a></p>
528
+ </li>
529
+ </ul>
530
+ </div>
531
+
532
+ <hr/>
533
+
534
+
535
+
536
  </div>
537
  <div id="tabs-7">
538
  <h3><?php _e("Blocked Visitors - Based on IP Address", "wplivechat") ?></h3>
540
  $ip_addresses = get_option('WPLC_BANNED_IP_ADDRESSES');
541
  if($ip_addresses){
542
  $ip_addresses = maybe_unserialize($ip_addresses);
543
+ if ($ip_addresses && is_array($ip_addresses)) {
544
+ foreach($ip_addresses as $ip){
545
+ echo $ip."\n";
546
+ }
547
  }
548
  }
549
  ?></textarea>
includes/welcome_page.php CHANGED
@@ -3,7 +3,7 @@
3
  <h1 style="font-weight: 300; font-size: 50px; line-height: 50px;">
4
  <?php _e("Welcome to ",'wplivechat'); ?>
5
  <strong style='color: #ec822c;'>WP Live Chat Support</strong>
6
- <small><?php _e('Version 4', 'wplivechat'); ?></small>
7
  </h1>
8
  <div class="about-text" style="margin: 0;"><?php _e('Provide Instant Live Chat Support!', 'wplivechat'); ?></div>
9
 
3
  <h1 style="font-weight: 300; font-size: 50px; line-height: 50px;">
4
  <?php _e("Welcome to ",'wplivechat'); ?>
5
  <strong style='color: #ec822c;'>WP Live Chat Support</strong>
6
+ <small><?php _e('Version 5', 'wplivechat'); ?></small>
7
  </h1>
8
  <div class="about-text" style="margin: 0;"><?php _e('Provide Instant Live Chat Support!', 'wplivechat'); ?></div>
9
 
js/wplc-admin-pointers.js ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ var wp_button_pointer_array = new Array();
2
+ wp_button_pointer_array[1] = {
3
+ 'element' : 'wplc_initiate_chat',
4
+ 'options' : {
5
+ 'content': pointer_localize_strings["initiate"],
6
+ 'position': {'edge': 'right', 'align': 'middle'}
7
+ }
8
+ };
9
+ wp_button_pointer_array[2] = {
10
+ 'element' : 'wplc-agent-info',
11
+ 'options' : {
12
+ 'content': pointer_localize_strings["agent_info"],
13
+ 'position': {'edge': 'right', 'align': 'middle'}
14
+ }
15
+ };
16
+ wp_button_pointer_array[3] = {
17
+ 'element' : 'wplc_second_chat_request',
18
+ 'options' : {
19
+ 'content': pointer_localize_strings["chats"],
20
+ 'position': {'edge': 'right', 'align': 'middle'}
21
+ }
22
+ };
23
+
24
+
25
+ jQuery(document).ready( function($) {
26
+
27
+ jQuery('body').on("click", ".wplc_initiate_chat", function (e) {
28
+ e.preventDefault();
29
+ if(typeof(jQuery().pointer) != 'undefined') { // make sure the pointer class exists
30
+
31
+ if(jQuery('.wp-pointer').is(":visible")) { // if a pointer is already open...
32
+ var openid = jQuery('.wp-pointer:visible').attr("id").replace('wp-pointer-',''); // ... note its id
33
+ jQuery('#' + wp_button_pointer_array[2].element).pointer('close'); // ... and close it
34
+ jQuery('#' + wp_button_pointer_array[3].element).pointer('close'); // ... and close it
35
+ var pointerid = parseInt(openid) + 1;
36
+ } else {
37
+ var pointerid = 1; // ... otherwise we want to open the first pointer
38
+ }
39
+
40
+ if(wp_button_pointer_array[pointerid] != undefined) { // check if next pointer exists
41
+ jQuery('#' + wp_button_pointer_array[1].element).pointer(wp_button_pointer_array[1].options).pointer('open');
42
+ var nextid = pointerid + 1;
43
+ }
44
+ }
45
+ });
46
+
47
+ jQuery('body').on("click", ".wplc-agent-info", function (e) {
48
+ e.preventDefault();
49
+ if(typeof(jQuery().pointer) != 'undefined') { // make sure the pointer class exists
50
+
51
+ if(jQuery('.wp-pointer').is(":visible")) { // if a pointer is already open...
52
+ var openid = jQuery('.wp-pointer:visible').attr("id").replace('wp-pointer-',''); // ... note its id
53
+ jQuery('#' + wp_button_pointer_array[1].element).pointer('close'); // ... and close it
54
+ jQuery('#' + wp_button_pointer_array[3].element).pointer('close'); // ... and close it
55
+ var pointerid = parseInt(openid) + 1;
56
+ } else {
57
+ var pointerid = 1; // ... otherwise we want to open the first pointer
58
+ }
59
+
60
+ if(wp_button_pointer_array[pointerid] != undefined) { // check if next pointer exists
61
+ jQuery('#' + wp_button_pointer_array[2].element).pointer(wp_button_pointer_array[2].options).pointer('open');
62
+ var nextid = pointerid + 1;
63
+ }
64
+ }
65
+ });
66
+
67
+ jQuery('body').on("click", ".wplc_second_chat_request", function (e) {
68
+ e.preventDefault();
69
+ if(typeof(jQuery().pointer) != 'undefined') { // make sure the pointer class exists
70
+
71
+ if(jQuery('.wp-pointer').is(":visible")) { // if a pointer is already open...
72
+ var openid = jQuery('.wp-pointer:visible').attr("id").replace('wp-pointer-',''); // ... note its id
73
+ jQuery('#' + wp_button_pointer_array[2].element).pointer('close'); // ... and close it
74
+ jQuery('#' + wp_button_pointer_array[1].element).pointer('close'); // ... and close it
75
+ var pointerid = parseInt(openid) + 1;
76
+ } else {
77
+ var pointerid = 1; // ... otherwise we want to open the first pointer
78
+ }
79
+
80
+ if(wp_button_pointer_array[pointerid] != undefined) { // check if next pointer exists
81
+ jQuery('.' + wp_button_pointer_array[3].element).pointer(wp_button_pointer_array[3].options).pointer('open');
82
+ var nextid = pointerid + 1;
83
+ }
84
+ }
85
+ });
86
+
87
+
88
+ });
js/wplc_u.js CHANGED
@@ -69,10 +69,7 @@ jQuery(document).ready(function() {
69
  success: function(response) {
70
 
71
  if(response){
72
- console.log(response);
73
  response = JSON.parse(response);
74
- // console.log(response);
75
- // set vars and cookies
76
  data['wplc_name'] = response['wplc_name'];
77
  data['wplc_email'] = response['wplc_email'];
78
  data['action_2'] = "";
@@ -82,15 +79,9 @@ jQuery(document).ready(function() {
82
  jQuery.cookie('wplc_email', response['wplc_email'], { expires: 1, path: '/' });
83
 
84
  wplc_cid = jQuery.trim(response['cid']);
85
- // console.log(wplc_cid);
86
  wplc_chat_status = response['status'];
87
- // console.log(wplc_chat_status);
88
- // console.log(jQuery.cookie('wplc_chat_status'));
89
- // console.log('1 setting wplc_chat_stauts to '+wplc_chat_status);
90
  jQuery.cookie('wplc_chat_status', null, { path: '/' });
91
- // console.log(jQuery.cookie('wplc_chat_status'));
92
  jQuery.cookie('wplc_chat_status', wplc_chat_status, { expires: 1, path: '/' });
93
- // console.log(jQuery.cookie('wplc_chat_status'));
94
  // handle response
95
  if(data['status'] == response['status']){
96
  if(data['status'] == 5 && wplc_init_chat_box_check == true){ // open chat box on load
@@ -113,6 +104,7 @@ jQuery(document).ready(function() {
113
  jQuery("#wp-live-chat-react").show().empty().append("<center>"+response['data']+"</center>");
114
  }
115
  else if(response['status'] == 8){ // chat has been ended by admin
 
116
  var height = jQuery('#wplc_chatbox')[0].scrollHeight;
117
  jQuery('#wplc_chatbox').scrollTop(height);
118
  jQuery("#wp-live-chat-minimize").hide();
@@ -148,20 +140,20 @@ jQuery(document).ready(function() {
148
  },
149
  error: function(jqXHR, exception) {
150
  if (jqXHR.status == 404) {
151
- console.log('Requested page not found. [404]');
152
- wplc_run = false;
153
  } else if (jqXHR.status == 500) {
154
- console.log('Internal Server Error [500].');
155
- wplc_run = false;
156
  } else if (exception === 'parsererror') {
157
- console.log('Requested JSON parse failed.');
158
- wplc_run = false;
159
  } else if (exception === 'abort') {
160
- console.log('Ajax request aborted.');
161
- wplc_run = false;
162
  } else {
163
- console.log('Uncaught Error.\n' + jqXHR.responseText);
164
- wplc_run = false;
165
  }
166
  },
167
  complete: function(response){
@@ -306,7 +298,10 @@ jQuery(document).ready(function() {
306
  jQuery("#wp-live-chat-4").hide();
307
  jQuery("#wp-live-chat-react").hide();
308
  jQuery("#wp-live-chat-minimize").hide();
309
- jQuery.cookie('wplc_hide', wplc_hide_chat , { expires: 1, path: '/' });
 
 
 
310
  var data = {
311
  action: 'wplc_user_close_chat',
312
  security: wplc_nonce,
69
  success: function(response) {
70
 
71
  if(response){
 
72
  response = JSON.parse(response);
 
 
73
  data['wplc_name'] = response['wplc_name'];
74
  data['wplc_email'] = response['wplc_email'];
75
  data['action_2'] = "";
79
  jQuery.cookie('wplc_email', response['wplc_email'], { expires: 1, path: '/' });
80
 
81
  wplc_cid = jQuery.trim(response['cid']);
 
82
  wplc_chat_status = response['status'];
 
 
 
83
  jQuery.cookie('wplc_chat_status', null, { path: '/' });
 
84
  jQuery.cookie('wplc_chat_status', wplc_chat_status, { expires: 1, path: '/' });
 
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
104
  jQuery("#wp-live-chat-react").show().empty().append("<center>"+response['data']+"</center>");
105
  }
106
  else if(response['status'] == 8){ // chat has been ended by admin
107
+ wplc_run = false;
108
  var height = jQuery('#wplc_chatbox')[0].scrollHeight;
109
  jQuery('#wplc_chatbox').scrollTop(height);
110
  jQuery("#wp-live-chat-minimize").hide();
140
  },
141
  error: function(jqXHR, exception) {
142
  if (jqXHR.status == 404) {
143
+ if (window.console) { console.log('Requested page not found. [404]'); }
144
+ wplc_run = false;
145
  } else if (jqXHR.status == 500) {
146
+ if (window.console) { console.log('Internal Server Error [500].'); }
147
+ wplc_run = false;
148
  } else if (exception === 'parsererror') {
149
+ if (window.console) { console.log('Requested JSON parse failed.'); }
150
+ wplc_run = false;
151
  } else if (exception === 'abort') {
152
+ if (window.console) { console.log('Ajax request aborted.'); }
153
+ wplc_run = false;
154
  } else {
155
+ if (window.console) { console.log('Uncaught Error.\n' + jqXHR.responseText); }
156
+ wplc_run = false;
157
  }
158
  },
159
  complete: function(response){
298
  jQuery("#wp-live-chat-4").hide();
299
  jQuery("#wp-live-chat-react").hide();
300
  jQuery("#wp-live-chat-minimize").hide();
301
+ var wplc_expire_date = new Date();
302
+ var minutes = 2;
303
+ wplc_expire_date.setTime(wplc_expire_date.getTime() + (minutes * 60 * 1000));
304
+ jQuery.cookie('wplc_hide', "yes" , { expires: wplc_expire_date , path: '/' });
305
  var data = {
306
  action: 'wplc_user_close_chat',
307
  security: wplc_nonce,
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: 2015-03-16 07:56+0200\n"
5
- "PO-Revision-Date: 2015-03-16 07:57+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -12,1607 +12,1922 @@ msgstr ""
12
  "X-Generator: Poedit 1.6.10\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:264
21
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:228
 
 
 
 
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:252
27
  msgid "There is No Answer. Please Try Again Later"
28
  msgstr ""
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/wp-live-chat-support.php:892
32
- msgid "Visitors on site"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  msgstr ""
34
 
35
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgid "Initiate Chat"
37
  msgstr ""
38
 
39
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:42
 
40
  msgid "You must be a chat agent to initiate chats"
41
  msgstr ""
42
 
43
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:53
44
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
45
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
46
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
47
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:958
48
- msgid "IP Address not recorded"
49
  msgstr ""
50
 
51
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:55
52
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:207
53
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1120
54
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:207
55
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:960
56
- msgid "Whois for"
57
  msgstr ""
58
 
59
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:87
60
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:257
61
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1157
62
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:241
63
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
 
 
 
 
64
  msgid "Site Info"
65
  msgstr ""
66
 
67
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:89
68
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:259
69
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1159
70
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:243
71
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:984
72
  msgid "Chat initiated on:"
73
  msgstr ""
74
 
75
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:93
76
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:263
77
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1163
78
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:247
79
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:988
80
  msgid "Advanced Info"
81
  msgstr ""
82
 
83
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
84
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:265
85
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1165
86
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:249
87
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:990
88
  msgid "Browser:"
89
  msgstr ""
90
 
91
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:96
92
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:266
93
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1166
94
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:250
95
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:991
96
  msgid "IP Address:"
97
  msgstr ""
98
 
99
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
100
  msgid "No visitors on-line at the moment"
101
  msgstr ""
102
 
103
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:182
104
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:188
105
  msgid "No chat sessions available at the moment"
106
  msgstr ""
107
 
108
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:184
109
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:190
110
  msgid "Active Chats"
111
  msgstr ""
112
 
113
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
114
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
115
- msgid "Accept Chat"
116
- msgstr ""
117
-
118
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
119
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
120
- msgid "Incoming Chat"
121
- msgstr ""
122
-
123
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
124
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
125
- msgid "You have an incoming chat."
126
- msgstr ""
127
-
128
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:219
129
  msgid "You must be a chat agent to answer chats"
130
  msgstr ""
131
 
132
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:225
133
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:218
134
  msgid "Open Chat Window"
135
  msgstr ""
136
 
137
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
138
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
139
- msgid "Chat Active"
140
- msgstr ""
141
-
142
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
143
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
144
- msgid "This chat is active"
145
- msgstr ""
146
-
147
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:229
148
  msgid "Chat has been answered by another agent"
149
  msgstr ""
150
 
151
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
152
  msgid "Chat answered by another agent"
153
  msgstr ""
154
 
155
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:288
156
  msgid "WP Live Chat Support - Offline Message from "
157
  msgstr ""
158
 
159
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
160
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:733
161
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:599
162
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:767
163
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:801
164
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:886
165
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:178
166
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:499
167
  msgid "Name"
168
  msgstr ""
169
 
170
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
171
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:734
172
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:600
173
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:768
174
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:802
175
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:887
176
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:500
177
  msgid "Email"
178
  msgstr ""
179
 
180
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
181
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:735
182
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:803
 
183
  msgid "Message"
184
  msgstr ""
185
 
186
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
187
  msgid "Via WP Live Chat Support"
188
  msgstr ""
189
 
190
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:337
191
  msgid "Alert: Someone wants to chat with you on "
192
  msgstr ""
193
 
194
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
195
  msgid "Someone wants to chat with you on your website"
196
  msgstr ""
197
 
198
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
199
  msgid "Log in"
200
  msgstr ""
201
 
202
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:512
203
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:528
204
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:543
205
  msgid "Chat Agent"
206
  msgstr ""
207
 
208
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:517
209
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:533
210
  msgid "Make this user a chat agent"
211
  msgstr ""
212
 
213
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:547
214
  msgid "Your user role does not allow you to make yourself a chat agent."
215
  msgstr ""
216
 
217
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:548
218
  msgid "Please contact the administrator of this website to change this."
219
  msgstr ""
220
 
221
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:634
222
  msgid "Chat Agent Online"
223
  msgstr ""
224
 
225
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
226
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:641
227
  msgid "Chat Agents Online"
228
  msgstr ""
229
 
230
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:732
231
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:598
232
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:885
233
  msgid "Date"
234
  msgstr ""
235
 
236
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:749
237
  msgid "You have not received any offline messages."
238
  msgstr ""
239
 
240
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:20
241
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "WP Live Chat Support Settings"
243
  msgstr ""
244
 
245
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:31
246
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "General Settings"
248
  msgstr ""
249
 
250
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:32
251
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
252
  msgid "Chat Box"
253
  msgstr ""
254
 
255
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
256
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:262
257
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1843
258
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
259
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:284
260
  msgid "Offline Messages"
261
  msgstr ""
262
 
263
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
264
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:361
265
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
266
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:339
267
  msgid "Styling"
268
  msgstr ""
269
 
270
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
271
  msgid "Chat Agents"
272
  msgstr ""
273
 
274
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
275
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:552
276
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
277
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:433
278
- msgid "Animations"
279
  msgstr ""
280
 
281
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:37
282
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
283
- msgid "Blocked Visitors"
 
284
  msgstr ""
285
 
286
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
287
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
 
 
 
 
 
288
  msgid "Main Settings"
289
  msgstr ""
290
 
291
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
292
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  msgid "Chat enabled"
294
  msgstr ""
295
 
296
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
297
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
298
  msgid "Yes"
299
  msgstr ""
300
 
301
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:47
302
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:35
303
  msgid "No"
304
  msgstr ""
305
 
306
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:52
307
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
308
  msgid "Choose when I want to be online"
309
  msgstr ""
310
 
311
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:55
312
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:41
313
  msgid ""
314
- "Checking this will allow you to change your status to \"Online\" or \"Offline"
315
- "\" on the \"Live Chat\" page."
316
  msgstr ""
317
 
318
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:60
319
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:56
320
  msgid "Hide Chat"
321
  msgstr ""
322
 
323
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
324
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
325
  msgid "Hides chat for 24hrs when user clicks X"
326
  msgstr ""
327
 
328
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
329
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:73
330
  msgid "Require Name And Email"
331
  msgstr ""
332
 
333
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:70
334
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:74
335
  msgid ""
336
  "Users will have to enter their Name and Email Address when starting a chat"
337
  msgstr ""
338
 
339
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:78
340
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:82
341
  msgid "Input Field Replacement Text"
342
  msgstr ""
343
 
344
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:79
345
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:83
346
  msgid "This is the text that will show in place of the Name And Email fields"
347
  msgstr ""
348
 
349
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
350
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:91
351
  msgid "Use Logged In User Details"
352
  msgstr ""
353
 
354
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
355
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
356
  msgid ""
357
  "A user's Name and Email Address will be used by default if they are logged "
358
  "in."
359
  msgstr ""
360
 
361
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
362
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
363
  msgid "Enable On Mobile Devices"
364
  msgstr ""
365
 
366
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:97
367
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
368
  msgid ""
369
  "Disabling this will mean that the Chat Box will not be displayed on mobile "
370
  "devices. (Smartphones and Tablets)"
371
  msgstr ""
372
 
373
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:105
374
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
375
  msgid "Record a visitor's IP Address"
376
  msgstr ""
377
 
378
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:106
379
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:110
380
  msgid "Disable this to enable anonymity for your visitors"
381
  msgstr ""
382
 
383
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:114
384
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:118
385
  msgid "Include chat window on the following pages:"
386
  msgstr ""
387
 
388
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:115
389
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:119
390
  msgid ""
391
  "Show the chat window on the following pages. Leave blank to show on all. "
392
  "(Use comma-separated Page ID's)"
393
  msgstr ""
394
 
395
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:119
396
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
397
- msgid ""
398
- "Do not include and exclude pages at the same time. Please only use one or "
399
- "the other"
400
- msgstr ""
401
-
402
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:124
403
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:134
404
  msgid "Exclude chat window on the following pages:"
405
  msgstr ""
406
 
407
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:125
408
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
409
  msgid ""
410
  "Do not show the chat window on the following pages. Leave blank to show on "
411
  "all. (Use comma-separated Page ID's)"
412
  msgstr ""
413
 
414
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:133
415
  msgid "Allow any user to make themselves a chat agent"
416
  msgstr ""
417
 
418
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:136
419
  msgid ""
420
  "Checking this will allow any of your users to make themselves a chat agent "
421
  "when editing their profile."
422
  msgstr ""
423
 
424
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:143
425
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
426
  msgid "Chat Window Settings"
427
  msgstr ""
428
 
429
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:146
430
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:156
431
  msgid "Chat box alignment"
432
  msgstr ""
433
 
434
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:149
435
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:159
436
  msgid "Bottom left"
437
  msgstr ""
438
 
439
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:150
440
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
441
  msgid "Bottom right"
442
  msgstr ""
443
 
444
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:151
445
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:161
446
  msgid "Left"
447
  msgstr ""
448
 
449
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:152
450
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
451
  msgid "Right"
452
  msgstr ""
453
 
454
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:158
455
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:168
456
  msgid "Auto Pop-up"
457
  msgstr ""
458
 
459
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
460
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:172
461
  msgid ""
462
  "Expand the chat box automatically (prompts the user to enter their name and "
463
  "email address)."
464
  msgstr ""
465
 
466
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:168
467
  msgid "Name "
468
  msgstr ""
469
 
470
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
471
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:194
472
  msgid "Picture"
473
  msgstr ""
474
 
475
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:190
476
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:197
477
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:213
478
  msgid "Upload Image"
479
  msgstr ""
480
 
481
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:192
482
  msgid "Remove Image"
483
  msgstr ""
484
 
485
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
486
  msgid "Recomended Size 40px x 40px"
487
  msgstr ""
488
 
489
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:199
490
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:210
491
  msgid "Logo"
492
  msgstr ""
493
 
494
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:207
495
  msgid "Upload Logo"
496
  msgstr ""
497
 
498
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:209
499
  msgid "Remove Logo"
500
  msgstr ""
501
 
502
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:210
503
  msgid "Recomended Size 250px x 40px"
504
  msgstr ""
505
 
506
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:216
507
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
508
  msgid "Chat delay (seconds)"
509
  msgstr ""
510
 
511
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:219
512
- msgid "how long it takes for your chat window to pop up"
513
  msgstr ""
514
 
515
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
516
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:242
517
  msgid "Chat notifications"
518
  msgstr ""
519
 
520
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:229
521
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:246
522
- msgid "Alert me via email as soon as someone wants to chat"
523
- msgstr ""
524
-
525
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:230
526
- msgid "(while online only)"
527
  msgstr ""
528
 
529
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:235
530
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:258
531
  msgid "Display name and avatar in chat"
532
  msgstr ""
533
 
534
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
535
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
536
  msgid "Display the agent and user name above each message in the chat window."
537
  msgstr ""
538
 
539
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:246
540
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:269
541
  msgid "Only show the chat window to users that are logged in"
542
  msgstr ""
543
 
544
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:254
545
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:277
546
  msgid ""
547
  "By checking this, only users that are logged in will be able to chat with "
548
  "you."
549
  msgstr ""
550
 
551
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
552
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:288
553
  msgid "Do not allow users to send offline messages"
554
  msgstr ""
555
 
556
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:274
557
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
558
  msgid ""
559
  "The chat window will be hidden when it is offline. Users will not be able to "
560
  "send offline messages to you"
561
  msgstr ""
562
 
563
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:279
564
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:297
565
  msgid "Email Address"
566
  msgstr ""
567
 
568
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:283
569
- msgid "Email address where offline messages are delivered to"
570
- msgstr ""
571
-
572
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:284
573
  msgid ""
574
- "Use comma separated email addresses to send to more than one email address"
 
575
  msgstr ""
576
 
577
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:292
578
  msgid "Sending Method"
579
  msgstr ""
580
 
581
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:293
582
  msgid "WP Mail"
583
  msgstr ""
584
 
585
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:294
586
  msgid "PHP Mailer"
587
  msgstr ""
588
 
589
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:306
590
  msgid "Host"
591
  msgstr ""
592
 
593
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:314
594
  msgid "Port"
595
  msgstr ""
596
 
597
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:322
598
  msgid "Username"
599
  msgstr ""
600
 
601
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:330
602
  msgid "Password"
603
  msgstr ""
604
 
605
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:339
606
  msgid "Offline Chat Box Title"
607
  msgstr ""
608
 
609
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:347
610
  msgid "Offline Text Fields"
611
  msgstr ""
612
 
613
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:380
614
  msgid "Choose a theme"
615
  msgstr ""
616
 
617
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:385
618
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:386
619
  msgid "Theme 1"
620
  msgstr ""
621
 
622
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:389
623
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:390
624
  msgid "Theme 2"
625
  msgstr ""
626
 
627
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:393
628
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:394
629
  msgid "Theme 3"
630
  msgstr ""
631
 
632
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:397
633
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:398
634
  msgid "Theme 4"
635
  msgstr ""
636
 
637
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:401
638
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:402
639
  msgid "Theme 5"
640
  msgstr ""
641
 
642
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
643
  msgid "Theme 6"
644
  msgstr ""
645
 
646
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:406
647
  msgid "Custom. Enter Colour Values Below"
648
  msgstr ""
649
 
650
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:422
651
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:359
652
  msgid "Chat box fill color"
653
  msgstr ""
654
 
655
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:428
656
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:365
657
  msgid "Chat box font color"
658
  msgstr ""
659
 
660
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:442
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  msgid "First Section Text"
662
  msgstr ""
663
 
664
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:451
665
  msgid "Intro Text"
666
  msgstr ""
667
 
668
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:457
669
  msgid "Second Section Text"
670
  msgstr ""
671
 
672
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:464
673
  msgid "Reactivate Chat Section Text"
674
  msgstr ""
675
 
676
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:472
677
  msgid "User chat welcome"
678
  msgstr ""
679
 
680
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:481
681
  msgid "Other text"
682
  msgstr ""
683
 
684
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:483
685
  msgid "This text is shown above the user chat input field"
686
  msgstr ""
687
 
688
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
689
- msgid "Current Users that are Chat Agents"
690
- msgstr ""
691
-
692
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:523
693
- msgid ""
694
- "To add or remove a user as a chat agent, go into the users profile and "
695
- "select the checkbox Chat Agent and click save."
696
- msgstr ""
697
-
698
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:524
699
- msgid "If there are no chat agents online, the chat will show as offline"
700
- msgstr ""
701
-
702
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:557
703
  msgid ""
704
  "You are using an outdated version of WP Live Chat Support Basic. Please "
705
  "update your plugin to allow for animations to function"
706
  msgstr ""
707
 
708
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:562
709
  msgid "Choose an animation"
710
  msgstr ""
711
 
712
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
713
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:443
714
  msgid "Slide Up"
715
  msgstr ""
716
 
717
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:572
718
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
719
  msgid "Slide From The Side"
720
  msgstr ""
721
 
722
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:576
723
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
724
  msgid "Fade In"
725
  msgstr ""
726
 
727
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:580
728
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:455
729
  msgid "No Animation"
730
  msgstr ""
731
 
732
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:592
733
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
734
  msgid "Blocked Visitors - Based on IP Address"
735
  msgstr ""
736
 
737
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:593
738
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:466
739
  msgid "Enter each IP Address you would like to block on a new line"
740
  msgstr ""
741
 
742
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:602
743
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:467
744
  msgid ""
745
  "Blocking a user's IP Address here will hide the chat window from them, "
746
  "preventing them from chatting with you. Each IP Address must be on a new line"
747
  msgstr ""
748
 
749
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:605
750
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  msgid "Save Settings"
752
  msgstr ""
753
 
754
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:457
755
  msgid "Dear User"
756
  msgstr ""
757
 
758
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:458
759
  msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
760
  msgstr ""
761
 
762
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:458
763
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:819
764
  msgid "update to at least version"
765
  msgstr ""
766
 
767
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:458
768
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:819
769
  msgid "to ensure all functionality is in working order"
770
  msgstr ""
771
 
772
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:459
773
  msgid ""
774
  "You're live chat box on your website has been temporarily disabled until the "
775
  "basic plugin has been updated. This is to ensure a smooth and hassle-free "
776
  "user experience for both yourself and your visitors."
777
  msgstr ""
778
 
779
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:460
780
  msgid ""
781
  "You can update your plugin <a href='./update-core.php'>here</a> or <a "
782
  "href='./plugins.php'>here</a>."
783
  msgstr ""
784
 
785
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:461
786
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:822
787
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:840
788
  msgid "If you are having difficulty updating the plugin, please contact"
789
  msgstr ""
790
 
791
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:474
792
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:818
793
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:831
794
- msgid "Dear Pro User"
795
- msgstr ""
796
-
797
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:475
798
  msgid ""
799
  "WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
800
  "download the latest copy from"
801
  msgstr ""
802
 
803
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:487
804
  msgid "Admin"
805
  msgstr ""
806
 
807
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:491
808
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:374
809
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:456
 
810
  msgid "Questions?"
811
  msgstr ""
812
 
813
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:492
814
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:375
815
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:456
 
816
  msgid "Chat with us"
817
  msgstr ""
818
 
819
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:493
 
820
  msgid "Start live chat"
821
  msgstr ""
822
 
823
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:494
824
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:381
825
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:518
 
826
  msgid "Start Chat"
827
  msgstr ""
828
 
829
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:495
 
830
  msgid "Connecting. Please be patient..."
831
  msgstr ""
832
 
833
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:496
834
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:390
835
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:524
 
836
  msgid "Reactivating your previous chat..."
837
  msgstr ""
838
 
839
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:497
840
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:315
 
841
  msgid "Chat offline. Leave a message"
842
  msgstr ""
843
 
844
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:498
 
845
  msgid "Hello. Please input your details so that I may help you."
846
  msgstr ""
847
 
848
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
 
 
849
  msgid ""
850
  "We are currently offline. Please leave a message and we'll get back to you "
851
  "shortly."
852
  msgstr ""
853
 
854
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
855
  msgid "Sending message..."
856
  msgstr ""
857
 
858
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
 
859
  msgid "Thank you for your message. We will be in contact soon."
860
  msgstr ""
861
 
862
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
863
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
864
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:999
 
865
  msgid "Press ENTER to send your message"
866
  msgstr ""
867
 
868
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:503
 
869
  msgid "Welcome. How may I help you?"
870
  msgstr ""
871
 
872
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
 
 
 
 
873
  msgid "You are currently accepting chats"
874
  msgstr ""
875
 
876
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:544
877
  msgid "You are not accepting chats"
878
  msgstr ""
879
 
880
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:592
881
  msgid "Delete History"
882
  msgstr ""
883
 
884
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:601
885
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:888
886
  msgid "URL"
887
  msgstr ""
888
 
889
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:602
 
 
890
  msgid "Status"
891
  msgstr ""
892
 
893
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:603
 
 
894
  msgid "Action"
895
  msgstr ""
896
 
897
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:609
898
  msgid "No chats available at the moment"
899
  msgstr ""
900
 
901
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:617
902
  msgid "View Chat History"
903
  msgstr ""
904
 
905
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:718
906
- msgid "Minize Chat Window"
 
 
 
 
 
 
 
 
 
 
907
  msgstr ""
908
 
909
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:719
910
  msgid "Close Chat Window"
911
  msgstr ""
912
 
913
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:804
914
  msgid "Send message"
915
  msgstr ""
916
 
917
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:830
918
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:533
919
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1013
920
  msgid "Send"
921
  msgstr ""
922
 
923
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:871
924
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1452
925
- msgid "Please click 'Start Chat' to initiate a chat with an agent"
926
- msgstr ""
927
-
928
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:997
929
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1476
930
  msgid "Your settings have been saved."
931
  msgstr ""
932
 
933
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1013
934
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:872
935
  msgid "Chat sessions"
936
  msgstr ""
937
 
938
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1015
939
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:874
940
  msgid ""
941
  "Please note: This window must be open in order to receive new chat "
942
  "notifications."
943
  msgstr ""
944
 
945
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1019
946
  msgid ""
947
  "You are not a chat agent. Please make yourself a chat agent before trying to "
948
  "chat to visitors"
949
  msgstr ""
950
 
951
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
952
  msgid "Unknown"
953
  msgstr ""
954
 
955
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1129
956
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:966
957
  msgid "End chat"
958
  msgstr ""
959
 
960
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1134
961
  msgid "Attempting to open the chat window... Please be patient."
962
  msgstr ""
963
 
964
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1231
965
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1593
966
  msgid "This chat has already been answered. Please close the chat window"
967
  msgstr ""
968
 
969
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1299
970
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1125
971
  msgid "User has opened the chat window"
972
  msgstr ""
973
 
974
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1304
975
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1130
976
  msgid "User has minimized the chat window"
977
  msgstr ""
978
 
979
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1309
980
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1135
981
  msgid "User has maximized the chat window"
982
  msgstr ""
983
 
984
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1314
985
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1140
986
  msgid "User has closed and ended the chat"
987
  msgstr ""
988
 
989
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1692
990
  msgid ""
991
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
992
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
993
  msgstr ""
994
 
995
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1697
996
  msgid "An unknown error occurred"
997
  msgstr ""
998
 
999
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1837
1000
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:256
1001
  msgid "Live Chat"
1002
  msgstr ""
1003
 
1004
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1838
1005
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:257
1006
  msgid "Settings"
1007
  msgstr ""
1008
 
1009
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1839
1010
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1857
1011
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1868
1012
  msgid "Quick Responses"
1013
  msgstr ""
1014
 
1015
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1841
1016
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:258
1017
  msgid "History"
1018
  msgstr ""
1019
 
1020
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1842
1021
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:259
1022
  msgid "Missed Chats"
1023
  msgstr ""
1024
 
1025
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1844
1026
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
1027
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:260
1028
  msgid "Feedback"
1029
  msgstr ""
1030
 
1031
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1848
1032
  msgid "Error Log"
1033
  msgstr ""
1034
 
1035
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1851
1036
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:261
1037
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1600
 
 
 
 
1038
  msgid "Support"
1039
  msgstr ""
1040
 
1041
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1858
1042
  msgid "Quick Response"
1043
  msgstr ""
1044
 
1045
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1859
1046
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1862
1047
  msgid "New Quick Response"
1048
  msgstr ""
1049
 
1050
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1860
1051
  msgid "Add New Quick Response"
1052
  msgstr ""
1053
 
1054
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1861
1055
  msgid "Edit Quick Response"
1056
  msgstr ""
1057
 
1058
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1863
1059
  msgid "All Quick Responses"
1060
  msgstr ""
1061
 
1062
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1864
1063
  msgid "View Quick Responses"
1064
  msgstr ""
1065
 
1066
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1865
1067
  msgid "Search Quick Responses"
1068
  msgstr ""
1069
 
1070
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1866
1071
  msgid "No Quick Responses found"
1072
  msgstr ""
1073
 
1074
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1867
1075
  msgid "No Quick Responses found in the Trash"
1076
  msgstr ""
1077
 
1078
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1872
1079
  msgid "Quick Responses for WP Live Chat Support Pro"
1080
  msgstr ""
1081
 
1082
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1927
1083
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1931
1084
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
1085
  msgid "Assign Quick Response"
1086
  msgstr ""
1087
 
1088
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1934
1089
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
1090
- msgid "Select"
1091
- msgstr ""
1092
-
1093
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1940
1094
  msgid "What is this?"
1095
  msgstr ""
1096
 
1097
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:566
1098
  msgid "complete"
1099
  msgstr ""
1100
 
1101
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:569
1102
  msgid "pending"
1103
  msgstr ""
1104
 
1105
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:572
1106
  msgid "active"
1107
  msgstr ""
1108
 
1109
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:575
1110
  msgid "deleted"
1111
  msgstr ""
1112
 
1113
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:578
1114
  msgid "browsing"
1115
  msgstr ""
1116
 
1117
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:581
1118
  msgid "requesting chat"
1119
  msgstr ""
1120
 
1121
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:584
1122
  msgid "Chat Ended - User still browsing"
1123
  msgstr ""
1124
 
1125
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:587
1126
  msgid "User is browsing but doesn't want to chat"
1127
  msgstr ""
1128
 
1129
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:671
1130
  msgid "Get Pro Add-on to accept more chats"
1131
  msgstr ""
1132
 
1133
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:915
1134
  msgid "You have not missed any chat requests."
1135
  msgstr ""
1136
 
1137
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
1138
  msgid "WP Live Chat Support Feedback"
1139
  msgstr ""
1140
 
1141
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
1142
  msgid "We'd love to hear your comments and/or suggestions"
1143
  msgstr ""
1144
 
1145
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
1146
  msgid "Your Name"
1147
  msgstr ""
1148
 
1149
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
1150
  msgid "Your Email"
1151
  msgstr ""
1152
 
1153
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
1154
  msgid "Your Website"
1155
  msgstr ""
1156
 
1157
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
1158
  msgid "Send Feedback"
1159
  msgstr ""
1160
 
1161
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:23
1162
  msgid "Agents"
1163
  msgstr ""
1164
 
1165
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
1166
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:63
1167
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
1168
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:141
1169
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:184
1170
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
1171
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
1172
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
1173
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:249
1174
  msgid "available in the"
1175
  msgstr ""
1176
 
1177
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:48
1178
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:64
1179
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:126
1180
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:142
1181
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:185
1182
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:201
1183
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:217
1184
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:233
1185
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
1186
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:304
1187
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:318
1188
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:394
1189
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:464
1190
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1391
1191
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1411
1192
  msgid "Pro Add-on"
1193
  msgstr ""
1194
 
1195
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:49
1196
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:65
1197
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:127
1198
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:143
1199
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:186
1200
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:202
1201
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:218
1202
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:234
1203
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
1204
  msgid "only"
1205
  msgstr ""
1206
 
1207
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
1208
- msgid " once off. Updates included forever."
1209
  msgstr ""
1210
 
1211
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:303
 
 
 
 
 
 
 
 
1212
  msgid "Get offline messages with the "
1213
  msgstr ""
1214
 
1215
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:312
1216
  msgid "Offline text"
1217
  msgstr ""
1218
 
1219
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:317
1220
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:393
1221
  msgid "Edit these text fields using the "
1222
  msgstr ""
1223
 
1224
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
1225
  msgid "Choose a colour scheme. Only available in the"
1226
  msgstr ""
1227
 
1228
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
1229
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
1230
  msgid "Pro add-on"
1231
  msgstr ""
1232
 
1233
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:347
1234
  msgid "Colour Scheme 1"
1235
  msgstr ""
1236
 
1237
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:348
1238
  msgid "Colour Scheme 2"
1239
  msgstr ""
1240
 
1241
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
1242
  msgid "Colour Scheme 3"
1243
  msgstr ""
1244
 
1245
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
1246
  msgid "Colour Scheme 4"
1247
  msgstr ""
1248
 
1249
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:351
1250
  msgid "Colour Scheme 5"
1251
  msgstr ""
1252
 
1253
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:352
1254
  msgid "Colour Scheme 6"
1255
  msgstr ""
1256
 
1257
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:372
1258
  msgid "First section text"
1259
  msgstr ""
1260
 
1261
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:379
1262
  msgid "Second section text"
1263
  msgstr ""
1264
 
1265
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:382
1266
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:521
1267
  msgid "Connecting you to a sales person. Please be patient."
1268
  msgstr ""
1269
 
1270
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:388
1271
  msgid "Reactivate chat section text"
1272
  msgstr ""
1273
 
1274
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:405
1275
- msgid "Multiple Agents"
1276
- msgstr ""
1277
-
1278
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:406
1279
- msgid "Get"
1280
  msgstr ""
1281
 
1282
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:406
1283
- msgid "Multiple agent support"
1284
  msgstr ""
1285
 
1286
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
1287
- msgid "Get a variety of animations in the "
1288
  msgstr ""
1289
 
1290
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:437
1291
- msgid "Choose an animation (Pro Only)"
1292
  msgstr ""
1293
 
1294
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:464
1295
- msgid ""
1296
- "Block visitors from chatting to you based on their IP address using the "
1297
  msgstr ""
1298
 
1299
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
1300
  msgid "Welcome to "
1301
  msgstr ""
1302
 
1303
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
1304
  msgid "Version 4"
1305
  msgstr ""
1306
 
1307
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
1308
  msgid "Provide Instant Live Chat Support!"
1309
  msgstr ""
1310
 
1311
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
1312
  msgid "How did you find us?"
1313
  msgstr ""
1314
 
1315
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
1316
  msgid "WordPress.org plugin repository "
1317
  msgstr ""
1318
 
1319
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
1320
  msgid "Search Term"
1321
  msgstr ""
1322
 
1323
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
1324
  msgid "Google or other search Engine"
1325
  msgstr ""
1326
 
1327
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
1328
  msgid "Friend recommendation"
1329
  msgstr ""
1330
 
1331
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
1332
  msgid "Other"
1333
  msgstr ""
1334
 
1335
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
1336
  msgid "Please Explain"
1337
  msgstr ""
1338
 
1339
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
1340
  msgid "Submit"
1341
  msgstr ""
1342
 
1343
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
1344
  msgid "Skip"
1345
  msgstr ""
1346
 
1347
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:225
1348
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1271
1349
  msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
1350
  msgstr ""
1351
 
1352
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:463
1353
  msgid "Start Live Chat"
1354
  msgstr ""
1355
 
1356
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:819
 
 
 
 
 
 
 
 
 
 
1357
  msgid ""
1358
  "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1359
  "strong>. Please"
1360
  msgstr ""
1361
 
1362
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:820
1363
  msgid ""
1364
  "You're live chat box on your website has been temporarily disabled until the "
1365
  "Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
1366
  "experience for both yourself and your visitors."
1367
  msgstr ""
1368
 
1369
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
1370
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:839
1371
  msgid ""
1372
  "You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
1373
  "plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
1374
  "version/' target='_BLANK'>here</a>."
1375
  msgstr ""
1376
 
1377
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:832
1378
  msgid ""
1379
  "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1380
  "strong>."
1381
  msgstr ""
1382
 
1383
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:834
1384
  msgid "Please update to the latest version of WP Live Chat Support Pro"
1385
  msgstr ""
1386
 
1387
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:835
1388
  msgid "Version 4.4.5"
1389
  msgstr ""
1390
 
1391
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:836
1392
  msgid "to take advantage of chat window transitions and colour schemes."
1393
  msgstr ""
1394
 
1395
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:863
1396
- msgid "Experiencing problems with the plugin?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1397
  msgstr ""
1398
 
1399
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:865
1400
- msgid "Review the documentation."
1401
  msgstr ""
1402
 
1403
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:866
1404
- msgid "Or ask a question on our"
1405
  msgstr ""
1406
 
1407
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:866
1408
- msgid "Support forum."
1409
  msgstr ""
1410
 
1411
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:894
 
 
1412
  msgid "With the Pro add-on of WP Live Chat Support, you can"
1413
  msgstr ""
1414
 
1415
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:895
1416
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:896
1417
  msgid "see who's online and initiate chats"
1418
  msgstr ""
1419
 
1420
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:897
1421
- msgid "with your online visitors with the click of a button."
 
1422
  msgstr ""
1423
 
1424
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:898
1425
- msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
 
1426
  msgstr ""
1427
 
1428
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:900
1429
- msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
 
 
 
1430
  msgstr ""
1431
 
1432
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:952
1433
  msgid "Previous"
1434
  msgstr ""
1435
 
1436
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:954
1437
  msgid "Active"
1438
  msgstr ""
1439
 
1440
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:963
1441
  msgid "Chat with"
1442
  msgstr ""
1443
 
1444
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
1445
  msgid "Add Quick Responses to your Live Chat"
1446
  msgstr ""
1447
 
1448
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
1449
  msgid "Pro version only"
1450
  msgstr ""
1451
 
1452
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1011
1453
  msgid "type here..."
1454
  msgstr ""
1455
 
1456
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1387
1457
  msgid "WP Live Chat History"
1458
  msgstr ""
1459
 
1460
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1391
1461
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1411
1462
  msgid "This option is only available in the "
1463
  msgstr ""
1464
 
1465
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1391
1466
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1411
1467
- msgid "Get it now for only $19.95 once off!"
1468
  msgstr ""
1469
 
1470
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1396
1471
  msgid "WP Live Chat Missed Chats"
1472
  msgstr ""
1473
 
1474
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1403
1475
  msgid "WP Live Chat Offline Messages"
1476
  msgstr ""
1477
 
1478
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1408
1479
  msgid ""
1480
  "Please update to the latest version of WP Live Chat Support Pro to start "
1481
  "recording any offline messages."
1482
  msgstr ""
1483
 
1484
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1491
 
 
 
 
1485
  msgid "Thank You for your feedback!"
1486
  msgstr ""
1487
 
1488
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1495
1489
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1508
1490
  msgid "Thank you for your feedback. We will be in touch soon"
1491
  msgstr ""
1492
 
1493
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1511
1494
  msgid "There was a problem sending your feedback. Please log your feedback on "
1495
  msgstr ""
1496
 
1497
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1544
1498
  msgid ""
1499
  "WPLC: set_time_limit() is not enabled on this server. You may experience "
1500
  "issues while using WP Live Chat Support as a result of this. Please get in "
1501
  "contact your host to get this function enabled."
1502
  msgstr ""
1503
 
1504
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1550
1505
  msgid ""
1506
  "WPLC: Safe mode is enabled on this server. You may experience issues while "
1507
  "using WP Live Chat Support as a result of this. Please contact your host to "
1508
  "get safe mode disabled."
1509
  msgstr ""
1510
 
1511
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1562
1512
  msgid "WP Live Chat Support"
1513
  msgstr ""
1514
 
1515
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1565
1516
  msgid "Documentation"
1517
  msgstr ""
1518
 
1519
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1567
1520
  msgid ""
1521
  "Getting started? Read through some of these articles to help you along your "
1522
  "way."
1523
  msgstr ""
1524
 
1525
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1568
1526
  msgid "Documentation:"
1527
  msgstr ""
1528
 
1529
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1570
1530
- msgid "Installing the WP Live Chat Support Pro add-on"
1531
- msgstr ""
1532
-
1533
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1571
1534
- msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
1535
- msgstr ""
1536
-
1537
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1572
1538
- msgid "Upgrading your licence (Pro)"
1539
- msgstr ""
1540
-
1541
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1573
1542
  msgid "Minimum System Requirements"
1543
  msgstr ""
1544
 
1545
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1575
1546
- msgid "FAQ's:"
1547
- msgstr ""
1548
-
1549
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1577
1550
- msgid "How do I check for JavaScript errors on my site?"
1551
  msgstr ""
1552
 
1553
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1578
1554
  msgid "What are Quick Responses?"
1555
  msgstr ""
1556
 
1557
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1579
1558
  msgid "Can I use this plugin on my multi-site?"
1559
  msgstr ""
1560
 
1561
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1580
1562
  msgid "How do I disable APC Object Cache?"
1563
  msgstr ""
1564
 
1565
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1581
1566
  msgid "Do you have a mobile app?"
1567
  msgstr ""
1568
 
1569
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1582
1570
- msgid "Do I have to be logged into the dashboard to chat with visitors?"
1571
  msgstr ""
1572
 
1573
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1586
1574
  msgid "Troubleshooting"
1575
  msgstr ""
1576
 
1577
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1588
1578
  msgid ""
1579
- "WP Live Chat Support Pro has a diverse and wide range of features which may, "
1580
  "from time to time, run into conflicts with the thousands of themes and other "
1581
  "plugins on the market."
1582
  msgstr ""
1583
 
1584
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1589
1585
  msgid "Common issues:"
1586
  msgstr ""
1587
 
1588
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1591
1589
  msgid "The chat box doesnt show up"
1590
  msgstr ""
1591
 
1592
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1592
1593
  msgid "The chat window disappears when I logout or go offline"
1594
  msgstr ""
1595
 
1596
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1594
1597
  msgid "Messages only show when I refresh the chat window"
1598
  msgstr ""
1599
 
1600
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1595
1601
  msgid "I'm not getting any notifications of a new chat"
1602
  msgstr ""
1603
 
1604
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1596
1605
  msgid "The chat window never goes offline"
1606
  msgstr ""
1607
 
1608
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1602
1609
  msgid "Still need help? Use one of these links below."
1610
  msgstr ""
1611
 
1612
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1604
1613
  msgid "Support forum"
1614
  msgstr ""
1615
 
1616
- #: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1605
1617
  msgid "Contact us"
1618
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wplivechat\n"
4
+ "POT-Creation-Date: 2015-07-29 08:58+0200\n"
5
+ "PO-Revision-Date: 2015-07-29 08:58+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en\n"
12
  "X-Generator: Poedit 1.6.10\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-pro/ajax-pro.php:232
21
+ msgid "Guest"
22
+ msgstr ""
23
+
24
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:293
25
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:205
26
  msgid "Admin has closed and ended the chat"
27
  msgstr ""
28
 
29
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:328
30
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:229
31
  msgid "There is No Answer. Please Try Again Later"
32
  msgstr ""
33
 
34
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:50
35
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:169
36
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:321
37
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1384
38
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:288
39
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:446
40
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1395
41
+ msgid "IP Address not recorded"
42
+ msgstr ""
43
+
44
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:52
45
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:171
46
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:323
47
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1386
48
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:290
49
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:448
50
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1397
51
+ msgid "Whois for"
52
+ msgstr ""
53
+
54
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:57
55
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:329
56
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:295
57
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
58
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1019
59
+ msgid "Accept Chat"
60
+ msgstr ""
61
+
62
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
63
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
64
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
65
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
66
+ msgid "Incoming Chat"
67
+ msgstr ""
68
+
69
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
70
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
71
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
72
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
73
+ msgid "You have an incoming chat."
74
  msgstr ""
75
 
76
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
77
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
78
+ msgid "Open Chat"
79
+ msgstr ""
80
+
81
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
82
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
83
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
84
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
85
+ msgid "Chat Active"
86
+ msgstr ""
87
+
88
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
89
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
90
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
91
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
92
+ msgid "This chat is active"
93
+ msgstr ""
94
+
95
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
96
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:156
97
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:467
98
  msgid "Initiate Chat"
99
  msgstr ""
100
 
101
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:72
102
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:158
103
  msgid "You must be a chat agent to initiate chats"
104
  msgstr ""
105
 
106
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
107
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:488
108
+ msgid "New"
 
 
 
109
  msgstr ""
110
 
111
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:97
112
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:490
113
+ msgid "Returning"
 
 
 
114
  msgstr ""
115
 
116
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
117
+ msgid "Visitors on site"
118
+ msgstr ""
119
+
120
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:203
121
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:373
122
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1423
123
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:326
124
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1419
125
  msgid "Site Info"
126
  msgstr ""
127
 
128
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
129
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:375
130
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1425
131
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:328
132
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1421
133
  msgid "Chat initiated on:"
134
  msgstr ""
135
 
136
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:209
137
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:379
138
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1429
139
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:332
140
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1425
141
  msgid "Advanced Info"
142
  msgstr ""
143
 
144
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:211
145
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:381
146
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1431
147
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:334
148
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1427
149
  msgid "Browser:"
150
  msgstr ""
151
 
152
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:212
153
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
154
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1432
155
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:335
156
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1428
157
  msgid "IP Address:"
158
  msgstr ""
159
 
160
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:255
161
  msgid "No visitors on-line at the moment"
162
  msgstr ""
163
 
164
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:298
165
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:271
166
  msgid "No chat sessions available at the moment"
167
  msgstr ""
168
 
169
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:300
170
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:273
171
  msgid "Active Chats"
172
  msgstr ""
173
 
174
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  msgid "You must be a chat agent to answer chats"
176
  msgstr ""
177
 
178
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:341
179
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:301
180
  msgid "Open Chat Window"
181
  msgstr ""
182
 
183
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
 
 
 
 
 
 
 
 
 
 
184
  msgid "Chat has been answered by another agent"
185
  msgstr ""
186
 
187
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:346
188
  msgid "Chat answered by another agent"
189
  msgstr ""
190
 
191
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:404
192
  msgid "WP Live Chat Support - Offline Message from "
193
  msgstr ""
194
 
195
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
196
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:851
197
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:693
198
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:904
199
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:942
200
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1237
201
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:171
202
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:572
203
  msgid "Name"
204
  msgstr ""
205
 
206
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
207
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:852
208
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:694
209
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:905
210
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:943
211
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1238
212
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:573
213
  msgid "Email"
214
  msgstr ""
215
 
216
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
217
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:853
218
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1303
219
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:944
220
  msgid "Message"
221
  msgstr ""
222
 
223
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
224
  msgid "Via WP Live Chat Support"
225
  msgstr ""
226
 
227
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:457
228
  msgid "Alert: Someone wants to chat with you on "
229
  msgstr ""
230
 
231
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
232
  msgid "Someone wants to chat with you on your website"
233
  msgstr ""
234
 
235
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
236
  msgid "Log in"
237
  msgstr ""
238
 
239
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:631
240
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:647
241
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:662
242
  msgid "Chat Agent"
243
  msgstr ""
244
 
245
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
246
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:652
247
  msgid "Make this user a chat agent"
248
  msgstr ""
249
 
250
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:666
251
  msgid "Your user role does not allow you to make yourself a chat agent."
252
  msgstr ""
253
 
254
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:667
255
  msgid "Please contact the administrator of this website to change this."
256
  msgstr ""
257
 
258
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:752
259
  msgid "Chat Agent Online"
260
  msgstr ""
261
 
262
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:754
263
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:759
264
  msgid "Chat Agents Online"
265
  msgstr ""
266
 
267
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:850
268
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:692
269
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1236
270
  msgid "Date"
271
  msgstr ""
272
 
273
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:867
274
  msgid "You have not received any offline messages."
275
  msgstr ""
276
 
277
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1167
278
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:772
279
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:510
280
+ msgid "Administrator"
281
+ msgstr ""
282
+
283
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1168
284
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:778
285
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:516
286
+ msgid "Editor"
287
+ msgstr ""
288
+
289
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1169
290
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:784
291
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:522
292
+ msgid "Author"
293
+ msgstr ""
294
+
295
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1170
296
+ msgid "Contributor"
297
+ msgstr ""
298
+
299
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1171
300
+ msgid "Subscriber"
301
+ msgstr ""
302
+
303
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1301
304
+ msgid "Chat ID"
305
+ msgstr ""
306
+
307
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1302
308
+ msgid "From"
309
+ msgstr ""
310
+
311
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1304
312
+ msgid "Timestamp"
313
+ msgstr ""
314
+
315
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1305
316
+ msgid "Origin"
317
+ msgstr ""
318
+
319
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1310
320
+ msgid "user"
321
+ msgstr ""
322
+
323
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1312
324
+ msgid "agent"
325
+ msgstr ""
326
+
327
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:42
328
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:10
329
  msgid "WP Live Chat Support Settings"
330
  msgstr ""
331
 
332
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:65
333
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:563
334
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1195
335
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1210
336
+ msgid "Dear Pro User"
337
+ msgstr ""
338
+
339
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:66
340
+ msgid ""
341
+ "Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
342
+ "to do this will result in you no longer receiving updates for this plugin."
343
+ msgstr ""
344
+
345
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:67
346
+ msgid "You can obtain a copy of your API key "
347
+ msgstr ""
348
+
349
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:67
350
+ msgid "here"
351
+ msgstr ""
352
+
353
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:67
354
+ msgid ""
355
+ "An account has been created for you while purchasing the plugin. If you have "
356
+ "lost your password, please reset it "
357
+ msgstr ""
358
+
359
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:68
360
+ msgid ""
361
+ "If you feel you are getting this message in error, please try refreshing the "
362
+ "page."
363
+ msgstr ""
364
+
365
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
366
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
367
  msgid "General Settings"
368
  msgstr ""
369
 
370
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:78
371
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
372
  msgid "Chat Box"
373
  msgstr ""
374
 
375
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:79
376
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:367
377
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2341
378
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
379
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:275
380
  msgid "Offline Messages"
381
  msgstr ""
382
 
383
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:80
384
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:469
385
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
386
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:329
387
  msgid "Styling"
388
  msgstr ""
389
 
390
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
391
  msgid "Chat Agents"
392
  msgstr ""
393
 
394
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:82
395
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:29
396
+ msgid "Blocked Visitors"
 
 
397
  msgstr ""
398
 
399
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
400
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:814
401
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:820
402
+ msgid "Chat Experience Ratings"
403
  msgstr ""
404
 
405
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
406
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
407
+ msgid "Encryption"
408
+ msgstr ""
409
+
410
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
411
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
412
  msgid "Main Settings"
413
  msgstr ""
414
 
415
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
416
+ msgid "Find out more."
417
+ msgstr ""
418
+
419
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:92
420
+ msgid "Cloud Server"
421
+ msgstr ""
422
+
423
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:97
424
+ msgid "Use our server to host your chat server."
425
+ msgstr ""
426
+
427
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:101
428
+ msgid "API Key"
429
+ msgstr ""
430
+
431
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:106
432
+ msgid "This API key is "
433
+ msgstr ""
434
+
435
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
436
+ msgid "valid"
437
+ msgstr ""
438
+
439
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
440
+ msgid "invalid"
441
+ msgstr ""
442
+
443
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:116
444
+ msgid ""
445
+ "A valid API key means that you will be able to get the latest version of the "
446
+ "plugin as and when it is released, as well as get access to support should "
447
+ "you require it."
448
+ msgstr ""
449
+
450
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:124
451
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:36
452
  msgid "Chat enabled"
453
  msgstr ""
454
 
455
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
456
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
457
  msgid "Yes"
458
  msgstr ""
459
 
460
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:132
461
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
462
  msgid "No"
463
  msgstr ""
464
 
465
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
466
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
467
  msgid "Choose when I want to be online"
468
  msgstr ""
469
 
470
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
471
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
472
  msgid ""
473
+ "Checking this will allow you to change your status to Online or Offline on "
474
+ "the Live Chat page."
475
  msgstr ""
476
 
477
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
478
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
479
  msgid "Hide Chat"
480
  msgstr ""
481
 
482
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
483
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
484
  msgid "Hides chat for 24hrs when user clicks X"
485
  msgstr ""
486
 
487
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:156
488
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
489
  msgid "Require Name And Email"
490
  msgstr ""
491
 
492
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:156
493
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
494
  msgid ""
495
  "Users will have to enter their Name and Email Address when starting a chat"
496
  msgstr ""
497
 
498
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:166
499
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
500
  msgid "Input Field Replacement Text"
501
  msgstr ""
502
 
503
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:166
504
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
505
  msgid "This is the text that will show in place of the Name And Email fields"
506
  msgstr ""
507
 
508
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:176
509
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
510
  msgid "Use Logged In User Details"
511
  msgstr ""
512
 
513
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:176
514
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
515
  msgid ""
516
  "A user's Name and Email Address will be used by default if they are logged "
517
  "in."
518
  msgstr ""
519
 
520
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:187
521
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
522
  msgid "Enable On Mobile Devices"
523
  msgstr ""
524
 
525
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:187
526
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
527
  msgid ""
528
  "Disabling this will mean that the Chat Box will not be displayed on mobile "
529
  "devices. (Smartphones and Tablets)"
530
  msgstr ""
531
 
532
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:197
533
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
534
  msgid "Record a visitor's IP Address"
535
  msgstr ""
536
 
537
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:197
538
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
539
  msgid "Disable this to enable anonymity for your visitors"
540
  msgstr ""
541
 
542
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:207
 
543
  msgid "Include chat window on the following pages:"
544
  msgstr ""
545
 
546
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:207
547
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
548
  msgid ""
549
  "Show the chat window on the following pages. Leave blank to show on all. "
550
  "(Use comma-separated Page ID's)"
551
  msgstr ""
552
 
553
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
 
 
 
 
 
 
 
 
554
  msgid "Exclude chat window on the following pages:"
555
  msgstr ""
556
 
557
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
558
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
559
  msgid ""
560
  "Do not show the chat window on the following pages. Leave blank to show on "
561
  "all. (Use comma-separated Page ID's)"
562
  msgstr ""
563
 
564
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:227
565
  msgid "Allow any user to make themselves a chat agent"
566
  msgstr ""
567
 
568
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:227
569
  msgid ""
570
  "Checking this will allow any of your users to make themselves a chat agent "
571
  "when editing their profile."
572
  msgstr ""
573
 
574
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:239
575
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
576
  msgid "Chat Window Settings"
577
  msgstr ""
578
 
579
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
580
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:150
581
  msgid "Chat box alignment"
582
  msgstr ""
583
 
584
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:247
585
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
586
  msgid "Bottom left"
587
  msgstr ""
588
 
589
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:250
590
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
591
  msgid "Bottom right"
592
  msgstr ""
593
 
594
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:253
595
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:155
596
  msgid "Left"
597
  msgstr ""
598
 
599
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:256
600
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:156
601
  msgid "Right"
602
  msgstr ""
603
 
604
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:262
605
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
606
  msgid "Auto Pop-up"
607
  msgstr ""
608
 
609
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:262
610
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
611
  msgid ""
612
  "Expand the chat box automatically (prompts the user to enter their name and "
613
  "email address)."
614
  msgstr ""
615
 
616
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:273
617
  msgid "Name "
618
  msgstr ""
619
 
620
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:287
621
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
622
  msgid "Picture"
623
  msgstr ""
624
 
625
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:295
626
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
627
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
628
  msgid "Upload Image"
629
  msgstr ""
630
 
631
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:297
632
  msgid "Remove Image"
633
  msgstr ""
634
 
635
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:298
636
  msgid "Recomended Size 40px x 40px"
637
  msgstr ""
638
 
639
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:304
640
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
641
  msgid "Logo"
642
  msgstr ""
643
 
644
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:312
645
  msgid "Upload Logo"
646
  msgstr ""
647
 
648
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:314
649
  msgid "Remove Logo"
650
  msgstr ""
651
 
652
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:315
653
  msgid "Recomended Size 250px x 40px"
654
  msgstr ""
655
 
656
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:321
657
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
658
  msgid "Chat delay (seconds)"
659
  msgstr ""
660
 
661
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:321
662
+ msgid "How long it takes for your chat window to pop up"
663
  msgstr ""
664
 
665
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:330
666
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:235
667
  msgid "Chat notifications"
668
  msgstr ""
669
 
670
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:330
671
+ msgid "Alert me via email as soon as someone wants to chat (while online only)"
 
 
 
 
 
672
  msgstr ""
673
 
674
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:340
675
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
676
  msgid "Display name and avatar in chat"
677
  msgstr ""
678
 
679
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:340
680
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
681
  msgid "Display the agent and user name above each message in the chat window."
682
  msgstr ""
683
 
684
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:352
685
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
686
  msgid "Only show the chat window to users that are logged in"
687
  msgstr ""
688
 
689
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:352
690
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
691
  msgid ""
692
  "By checking this, only users that are logged in will be able to chat with "
693
  "you."
694
  msgstr ""
695
 
696
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:371
697
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:308
698
  msgid "Do not allow users to send offline messages"
699
  msgstr ""
700
 
701
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:371
702
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:308
703
  msgid ""
704
  "The chat window will be hidden when it is offline. Users will not be able to "
705
  "send offline messages to you"
706
  msgstr ""
707
 
708
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
709
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:279
710
  msgid "Email Address"
711
  msgstr ""
712
 
713
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
 
 
 
 
714
  msgid ""
715
+ "Email address where offline messages are delivered to. Use comma separated "
716
+ "email addresses to send to more than one email address"
717
  msgstr ""
718
 
719
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:396
720
  msgid "Sending Method"
721
  msgstr ""
722
 
723
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:397
724
  msgid "WP Mail"
725
  msgstr ""
726
 
727
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:398
728
  msgid "PHP Mailer"
729
  msgstr ""
730
 
731
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:414
732
  msgid "Host"
733
  msgstr ""
734
 
735
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:422
736
  msgid "Port"
737
  msgstr ""
738
 
739
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:430
740
  msgid "Username"
741
  msgstr ""
742
 
743
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:438
744
  msgid "Password"
745
  msgstr ""
746
 
747
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:447
748
  msgid "Offline Chat Box Title"
749
  msgstr ""
750
 
751
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:455
752
  msgid "Offline Text Fields"
753
  msgstr ""
754
 
755
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:488
756
  msgid "Choose a theme"
757
  msgstr ""
758
 
759
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:493
760
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:496
761
  msgid "Theme 1"
762
  msgstr ""
763
 
764
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:499
765
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:502
766
  msgid "Theme 2"
767
  msgstr ""
768
 
769
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:505
770
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:508
771
  msgid "Theme 3"
772
  msgstr ""
773
 
774
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:511
775
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:514
776
  msgid "Theme 4"
777
  msgstr ""
778
 
779
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:517
780
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:520
781
  msgid "Theme 5"
782
  msgstr ""
783
 
784
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:523
785
  msgid "Theme 6"
786
  msgstr ""
787
 
788
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:526
789
  msgid "Custom. Enter Colour Values Below"
790
  msgstr ""
791
 
792
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:552
793
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
794
  msgid "Chat box fill color"
795
  msgstr ""
796
 
797
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:558
798
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
799
  msgid "Chat box font color"
800
  msgstr ""
801
 
802
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:565
803
+ msgid "I'm using a localization plugin"
804
+ msgstr ""
805
+
806
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
807
+ msgid "documentation"
808
+ msgstr ""
809
+
810
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:573
811
+ msgid ""
812
+ "You will only be able to edit the strings shown in the chat window of the "
813
+ "code now. <br/> This has been done to accommodate as many localization "
814
+ "plugins as possible. <br/> For more information on how to change these "
815
+ "strings, please consult the "
816
+ msgstr ""
817
+
818
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:578
819
  msgid "First Section Text"
820
  msgstr ""
821
 
822
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:585
823
  msgid "Intro Text"
824
  msgstr ""
825
 
826
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:591
827
  msgid "Second Section Text"
828
  msgstr ""
829
 
830
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:598
831
  msgid "Reactivate Chat Section Text"
832
  msgstr ""
833
 
834
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:606
835
  msgid "User chat welcome"
836
  msgstr ""
837
 
838
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:612
839
  msgid "Other text"
840
  msgstr ""
841
 
842
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:614
843
  msgid "This text is shown above the user chat input field"
844
  msgstr ""
845
 
846
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
847
  msgid ""
848
  "You are using an outdated version of WP Live Chat Support Basic. Please "
849
  "update your plugin to allow for animations to function"
850
  msgstr ""
851
 
852
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:650
853
  msgid "Choose an animation"
854
  msgstr ""
855
 
856
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:658
857
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:426
858
  msgid "Slide Up"
859
  msgstr ""
860
 
861
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:664
862
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:430
863
  msgid "Slide From The Side"
864
  msgstr ""
865
 
866
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:670
867
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
868
  msgid "Fade In"
869
  msgstr ""
870
 
871
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:676
872
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:438
873
  msgid "No Animation"
874
  msgstr ""
875
 
876
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:734
877
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:482
878
+ msgid "Current Users that are Chat Agents"
879
+ msgstr ""
880
+
881
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:745
882
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:490
883
+ msgid "Online"
884
+ msgstr ""
885
+
886
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:755
887
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:638
888
+ msgid "Remove"
889
+ msgstr ""
890
+
891
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:764
892
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:501
893
+ msgid "Add New Agent"
894
+ msgstr ""
895
+
896
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:766
897
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2434
898
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:503
899
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1437
900
+ msgid "Select"
901
+ msgstr ""
902
+
903
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:788
904
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:526
905
+ msgid "Add Agent"
906
+ msgstr ""
907
+
908
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:794
909
+ msgid ""
910
+ "Should you wish to add a user that has a role less than 'Author', please go "
911
+ "to the <a href='./users.php'>Users</a> page, select the relevant user, click "
912
+ "Edit and scroll to the bottom of the page and enable the 'Chat Agent' "
913
+ "checkbox."
914
+ msgstr ""
915
+
916
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:795
917
+ msgid "If there are no chat agents online, the chat will show as offline"
918
+ msgstr ""
919
+
920
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:799
921
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:538
922
  msgid "Blocked Visitors - Based on IP Address"
923
  msgstr ""
924
 
925
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:800
926
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:539
927
  msgid "Enter each IP Address you would like to block on a new line"
928
  msgstr ""
929
 
930
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:811
931
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:550
932
  msgid ""
933
  "Blocking a user's IP Address here will hide the chat window from them, "
934
  "preventing them from chatting with you. Each IP Address must be on a new line"
935
  msgstr ""
936
 
937
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:820
938
+ msgid ""
939
+ "are only available in the WP Live Chat Support Chat Experience Ratings add-on"
940
+ msgstr ""
941
+
942
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:824
943
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:553
944
+ msgid "Chat Encryption"
945
+ msgstr ""
946
+
947
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
948
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:556
949
+ msgid "Enable Encryption"
950
+ msgstr ""
951
+
952
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
953
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:556
954
+ msgid ""
955
+ "All messages will be encrypted when being sent to and from the user and "
956
+ "agent."
957
+ msgstr ""
958
+
959
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:835
960
+ msgid ""
961
+ "Once enabled, all messages sent will be encrypted. This cannot be undone."
962
+ msgstr ""
963
+
964
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:841
965
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:570
966
  msgid "Save Settings"
967
  msgstr ""
968
 
969
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:547
970
  msgid "Dear User"
971
  msgstr ""
972
 
973
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:548
974
  msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
975
  msgstr ""
976
 
977
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:548
978
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1196
979
  msgid "update to at least version"
980
  msgstr ""
981
 
982
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:548
983
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1196
984
  msgid "to ensure all functionality is in working order"
985
  msgstr ""
986
 
987
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:549
988
  msgid ""
989
  "You're live chat box on your website has been temporarily disabled until the "
990
  "basic plugin has been updated. This is to ensure a smooth and hassle-free "
991
  "user experience for both yourself and your visitors."
992
  msgstr ""
993
 
994
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:550
995
  msgid ""
996
  "You can update your plugin <a href='./update-core.php'>here</a> or <a "
997
  "href='./plugins.php'>here</a>."
998
  msgstr ""
999
 
1000
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:551
1001
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1199
1002
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1219
1003
  msgid "If you are having difficulty updating the plugin, please contact"
1004
  msgstr ""
1005
 
1006
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:564
 
 
 
 
 
 
1007
  msgid ""
1008
  "WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
1009
  "download the latest copy from"
1010
  msgstr ""
1011
 
1012
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:576
1013
  msgid "Admin"
1014
  msgstr ""
1015
 
1016
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:580
1017
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:813
1018
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:364
1019
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
1020
  msgid "Questions?"
1021
  msgstr ""
1022
 
1023
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:581
1024
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:814
1025
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:365
1026
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
1027
  msgid "Chat with us"
1028
  msgstr ""
1029
 
1030
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:582
1031
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:815
1032
  msgid "Start live chat"
1033
  msgstr ""
1034
 
1035
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:583
1036
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:817
1037
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:371
1038
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:591
1039
  msgid "Start Chat"
1040
  msgstr ""
1041
 
1042
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:584
1043
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:818
1044
  msgid "Connecting. Please be patient..."
1045
  msgstr ""
1046
 
1047
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:585
1048
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:820
1049
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
1050
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:597
1051
  msgid "Reactivating your previous chat..."
1052
  msgstr ""
1053
 
1054
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:586
1055
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:822
1056
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:297
1057
  msgid "Chat offline. Leave a message"
1058
  msgstr ""
1059
 
1060
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:587
1061
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:824
1062
  msgid "Hello. Please input your details so that I may help you."
1063
  msgstr ""
1064
 
1065
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:588
1066
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:826
1067
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:827
1068
  msgid ""
1069
  "We are currently offline. Please leave a message and we'll get back to you "
1070
  "shortly."
1071
  msgstr ""
1072
 
1073
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
1074
  msgid "Sending message..."
1075
  msgstr ""
1076
 
1077
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:590
1078
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:828
1079
  msgid "Thank you for your message. We will be in contact soon."
1080
  msgstr ""
1081
 
1082
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:591
1083
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:830
1084
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:602
1085
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1436
1086
  msgid "Press ENTER to send your message"
1087
  msgstr ""
1088
 
1089
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:592
1090
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:832
1091
  msgid "Welcome. How may I help you?"
1092
  msgstr ""
1093
 
1094
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:632
1095
+ msgid "Rating Unavailable"
1096
+ msgstr ""
1097
+
1098
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:636
1099
  msgid "You are currently accepting chats"
1100
  msgstr ""
1101
 
1102
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:637
1103
  msgid "You are not accepting chats"
1104
  msgstr ""
1105
 
1106
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:686
1107
  msgid "Delete History"
1108
  msgstr ""
1109
 
1110
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:695
1111
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1239
1112
  msgid "URL"
1113
  msgstr ""
1114
 
1115
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:696
1116
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1282
1117
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1316
1118
  msgid "Status"
1119
  msgstr ""
1120
 
1121
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:697
1122
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1283
1123
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1317
1124
  msgid "Action"
1125
  msgstr ""
1126
 
1127
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:703
1128
  msgid "No chats available at the moment"
1129
  msgstr ""
1130
 
1131
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:713
1132
  msgid "View Chat History"
1133
  msgstr ""
1134
 
1135
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:713
1136
+ msgid "Download Chat History"
1137
+ msgstr ""
1138
+
1139
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:834
1140
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1023
1141
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1913
1142
+ msgid "Please click 'Start Chat' to initiate a chat with an agent"
1143
+ msgstr ""
1144
+
1145
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:855
1146
+ msgid "Minimize Chat Window"
1147
  msgstr ""
1148
 
1149
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
1150
  msgid "Close Chat Window"
1151
  msgstr ""
1152
 
1153
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:956
1154
  msgid "Send message"
1155
  msgstr ""
1156
 
1157
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:982
1158
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:606
1159
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1450
1160
  msgid "Send"
1161
  msgstr ""
1162
 
1163
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1193
1164
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1947
 
 
 
 
 
1165
  msgid "Your settings have been saved."
1166
  msgstr ""
1167
 
1168
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1229
 
1169
  msgid "Chat sessions"
1170
  msgstr ""
1171
 
1172
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1231
1173
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1287
1174
  msgid ""
1175
  "Please note: This window must be open in order to receive new chat "
1176
  "notifications."
1177
  msgstr ""
1178
 
1179
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1235
1180
  msgid ""
1181
  "You are not a chat agent. Please make yourself a chat agent before trying to "
1182
  "chat to visitors"
1183
  msgstr ""
1184
 
1185
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1263
1186
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1297
1187
+ msgid "Visitors online"
1188
+ msgstr ""
1189
+
1190
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1268
1191
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1302
1192
+ msgid "Agent(s) online"
1193
+ msgstr ""
1194
+
1195
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1278
1196
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1312
1197
+ msgid "Visitor"
1198
+ msgstr ""
1199
+
1200
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1279
1201
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1313
1202
+ msgid "Time"
1203
+ msgstr ""
1204
+
1205
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1280
1206
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1314
1207
+ msgid "Type"
1208
+ msgstr ""
1209
+
1210
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1281
1211
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1315
1212
+ msgid "Data"
1213
+ msgstr ""
1214
+
1215
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1379
1216
  msgid "Unknown"
1217
  msgstr ""
1218
 
1219
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1395
1220
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1403
1221
  msgid "End chat"
1222
  msgstr ""
1223
 
1224
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1400
1225
  msgid "Attempting to open the chat window... Please be patient."
1226
  msgstr ""
1227
 
1228
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1501
1229
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2060
1230
  msgid "This chat has already been answered. Please close the chat window"
1231
  msgstr ""
1232
 
1233
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
1234
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1563
1235
  msgid "User has opened the chat window"
1236
  msgstr ""
1237
 
1238
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1572
1239
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1568
1240
  msgid "User has minimized the chat window"
1241
  msgstr ""
1242
 
1243
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1577
1244
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1573
1245
  msgid "User has maximized the chat window"
1246
  msgstr ""
1247
 
1248
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1582
1249
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1578
1250
  msgid "User has closed and ended the chat"
1251
  msgstr ""
1252
 
1253
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2154
1254
  msgid ""
1255
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
1256
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
1257
  msgstr ""
1258
 
1259
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2159
1260
  msgid "An unknown error occurred"
1261
  msgstr ""
1262
 
1263
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2335
1264
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:338
1265
  msgid "Live Chat"
1266
  msgstr ""
1267
 
1268
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2336
1269
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:339
1270
  msgid "Settings"
1271
  msgstr ""
1272
 
1273
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2337
1274
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2358
1275
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2369
1276
  msgid "Quick Responses"
1277
  msgstr ""
1278
 
1279
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2339
1280
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:340
1281
  msgid "History"
1282
  msgstr ""
1283
 
1284
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2340
1285
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:341
1286
  msgid "Missed Chats"
1287
  msgstr ""
1288
 
1289
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2342
1290
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
1291
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:342
1292
  msgid "Feedback"
1293
  msgstr ""
1294
 
1295
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2346
1296
  msgid "Error Log"
1297
  msgstr ""
1298
 
1299
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2349
1300
+ msgid "Statistics"
1301
+ msgstr ""
1302
+
1303
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2352
1304
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:343
1305
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2067
1306
  msgid "Support"
1307
  msgstr ""
1308
 
1309
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2359
1310
  msgid "Quick Response"
1311
  msgstr ""
1312
 
1313
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2360
1314
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2363
1315
  msgid "New Quick Response"
1316
  msgstr ""
1317
 
1318
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2361
1319
  msgid "Add New Quick Response"
1320
  msgstr ""
1321
 
1322
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2362
1323
  msgid "Edit Quick Response"
1324
  msgstr ""
1325
 
1326
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2364
1327
  msgid "All Quick Responses"
1328
  msgstr ""
1329
 
1330
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2365
1331
  msgid "View Quick Responses"
1332
  msgstr ""
1333
 
1334
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2366
1335
  msgid "Search Quick Responses"
1336
  msgstr ""
1337
 
1338
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2367
1339
  msgid "No Quick Responses found"
1340
  msgstr ""
1341
 
1342
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2368
1343
  msgid "No Quick Responses found in the Trash"
1344
  msgstr ""
1345
 
1346
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2373
1347
  msgid "Quick Responses for WP Live Chat Support Pro"
1348
  msgstr ""
1349
 
1350
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2427
1351
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2431
1352
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1437
1353
  msgid "Assign Quick Response"
1354
  msgstr ""
1355
 
1356
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2440
 
 
 
 
 
1357
  msgid "What is this?"
1358
  msgstr ""
1359
 
1360
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:863
1361
  msgid "complete"
1362
  msgstr ""
1363
 
1364
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:866
1365
  msgid "pending"
1366
  msgstr ""
1367
 
1368
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:869
1369
  msgid "active"
1370
  msgstr ""
1371
 
1372
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:872
1373
  msgid "deleted"
1374
  msgstr ""
1375
 
1376
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:875
1377
  msgid "browsing"
1378
  msgstr ""
1379
 
1380
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:878
1381
  msgid "requesting chat"
1382
  msgstr ""
1383
 
1384
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:881
1385
  msgid "Chat Ended - User still browsing"
1386
  msgstr ""
1387
 
1388
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:884
1389
  msgid "User is browsing but doesn't want to chat"
1390
  msgstr ""
1391
 
1392
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1019
1393
  msgid "Get Pro Add-on to accept more chats"
1394
  msgstr ""
1395
 
1396
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1266
1397
  msgid "You have not missed any chat requests."
1398
  msgstr ""
1399
 
1400
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
1401
  msgid "WP Live Chat Support Feedback"
1402
  msgstr ""
1403
 
1404
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
1405
  msgid "We'd love to hear your comments and/or suggestions"
1406
  msgstr ""
1407
 
1408
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
1409
  msgid "Your Name"
1410
  msgstr ""
1411
 
1412
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
1413
  msgid "Your Email"
1414
  msgstr ""
1415
 
1416
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
1417
  msgid "Your Website"
1418
  msgstr ""
1419
 
1420
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
1421
  msgid "Send Feedback"
1422
  msgstr ""
1423
 
1424
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
1425
  msgid "Agents"
1426
  msgstr ""
1427
 
1428
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:51
1429
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
1430
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:122
1431
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
1432
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
1433
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
1434
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
1435
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
1436
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:242
1437
  msgid "available in the"
1438
  msgstr ""
1439
 
1440
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:52
1441
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
1442
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:123
1443
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:138
1444
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:178
1445
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:194
1446
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:210
1447
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
1448
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:243
1449
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:286
1450
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:300
1451
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:384
1452
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:561
1453
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1852
1454
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1872
1455
  msgid "Pro Add-on"
1456
  msgstr ""
1457
 
1458
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
1459
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
1460
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:124
1461
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:139
1462
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:179
1463
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:195
1464
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:211
1465
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:227
1466
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:244
1467
  msgid "only"
1468
  msgstr ""
1469
 
1470
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
1471
+ msgid "Include chat window on the following pages"
1472
  msgstr ""
1473
 
1474
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
1475
+ msgid "Exclude chat window on the following pages"
1476
+ msgstr ""
1477
+
1478
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
1479
+ msgid "Alert me via email as soon as someone wants to chat"
1480
+ msgstr ""
1481
+
1482
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:285
1483
  msgid "Get offline messages with the "
1484
  msgstr ""
1485
 
1486
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:294
1487
  msgid "Offline text"
1488
  msgstr ""
1489
 
1490
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:299
1491
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:383
1492
  msgid "Edit these text fields using the "
1493
  msgstr ""
1494
 
1495
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
1496
  msgid "Choose a colour scheme. Only available in the"
1497
  msgstr ""
1498
 
1499
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
 
1500
  msgid "Pro add-on"
1501
  msgstr ""
1502
 
1503
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:337
1504
  msgid "Colour Scheme 1"
1505
  msgstr ""
1506
 
1507
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
1508
  msgid "Colour Scheme 2"
1509
  msgstr ""
1510
 
1511
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:339
1512
  msgid "Colour Scheme 3"
1513
  msgstr ""
1514
 
1515
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:340
1516
  msgid "Colour Scheme 4"
1517
  msgstr ""
1518
 
1519
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:341
1520
  msgid "Colour Scheme 5"
1521
  msgstr ""
1522
 
1523
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
1524
  msgid "Colour Scheme 6"
1525
  msgstr ""
1526
 
1527
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
1528
  msgid "First section text"
1529
  msgstr ""
1530
 
1531
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:369
1532
  msgid "Second section text"
1533
  msgstr ""
1534
 
1535
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:372
1536
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:594
1537
  msgid "Connecting you to a sales person. Please be patient."
1538
  msgstr ""
1539
 
1540
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
1541
  msgid "Reactivate chat section text"
1542
  msgstr ""
1543
 
1544
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:418
1545
+ msgid "Choose an animation. Only available in the"
 
 
 
 
1546
  msgstr ""
1547
 
1548
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:419
1549
+ msgid "Pro"
1550
  msgstr ""
1551
 
1552
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:527
1553
+ msgid "Add as many agents as you need with the "
1554
  msgstr ""
1555
 
1556
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:527
1557
+ msgid "Pro version for only $19.95 once off."
1558
  msgstr ""
1559
 
1560
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:560
1561
+ msgid "Encrypt your chat messages in the "
 
1562
  msgstr ""
1563
 
1564
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
1565
  msgid "Welcome to "
1566
  msgstr ""
1567
 
1568
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
1569
  msgid "Version 4"
1570
  msgstr ""
1571
 
1572
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
1573
  msgid "Provide Instant Live Chat Support!"
1574
  msgstr ""
1575
 
1576
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
1577
  msgid "How did you find us?"
1578
  msgstr ""
1579
 
1580
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
1581
  msgid "WordPress.org plugin repository "
1582
  msgstr ""
1583
 
1584
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
1585
  msgid "Search Term"
1586
  msgstr ""
1587
 
1588
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
1589
  msgid "Google or other search Engine"
1590
  msgstr ""
1591
 
1592
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
1593
  msgid "Friend recommendation"
1594
  msgstr ""
1595
 
1596
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
1597
  msgid "Other"
1598
  msgstr ""
1599
 
1600
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
1601
  msgid "Please Explain"
1602
  msgstr ""
1603
 
1604
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
1605
  msgid "Submit"
1606
  msgstr ""
1607
 
1608
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
1609
  msgid "Skip"
1610
  msgstr ""
1611
 
1612
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:304
1613
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1718
1614
  msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
1615
  msgstr ""
1616
 
1617
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:536
1618
  msgid "Start Live Chat"
1619
  msgstr ""
1620
 
1621
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:749
1622
+ msgid "New chat received"
1623
+ msgstr ""
1624
+
1625
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:751
1626
+ msgid ""
1627
+ "A new chat has been received. Please go the 'Live Chat' page to accept the "
1628
+ "chat"
1629
+ msgstr ""
1630
+
1631
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1196
1632
  msgid ""
1633
  "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1634
  "strong>. Please"
1635
  msgstr ""
1636
 
1637
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1197
1638
  msgid ""
1639
  "You're live chat box on your website has been temporarily disabled until the "
1640
  "Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
1641
  "experience for both yourself and your visitors."
1642
  msgstr ""
1643
 
1644
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1198
1645
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1218
1646
  msgid ""
1647
  "You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
1648
  "plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
1649
  "version/' target='_BLANK'>here</a>."
1650
  msgstr ""
1651
 
1652
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1211
1653
  msgid ""
1654
  "You are using an outdated version of <strong>WP Live Chat Support Pro</"
1655
  "strong>."
1656
  msgstr ""
1657
 
1658
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1213
1659
  msgid "Please update to the latest version of WP Live Chat Support Pro"
1660
  msgstr ""
1661
 
1662
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1214
1663
  msgid "Version 4.4.5"
1664
  msgstr ""
1665
 
1666
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1215
1667
  msgid "to take advantage of chat window transitions and colour schemes."
1668
  msgstr ""
1669
 
1670
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1246
1671
+ msgid "Congratulations"
1672
+ msgstr ""
1673
+
1674
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1247
1675
+ msgid "You are now accepting live chat requests on your site."
1676
+ msgstr ""
1677
+
1678
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1248
1679
+ msgid "The live chat box has automatically been enabled on your website."
1680
+ msgstr ""
1681
+
1682
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1249
1683
+ msgid "Chat notifications will start appearing once visitors send a request."
1684
+ msgstr ""
1685
+
1686
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1250
1687
+ msgid ""
1688
+ "You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
1689
+ "chat box settings here."
1690
+ msgstr ""
1691
+
1692
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1251
1693
+ msgid "Experiencing issues?"
1694
  msgstr ""
1695
 
1696
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1251
1697
+ msgid "Visit our troubleshooting section."
1698
  msgstr ""
1699
 
1700
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1253
1701
+ msgid "Hide"
1702
  msgstr ""
1703
 
1704
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1284
1705
+ msgid "Chat Dashboard"
1706
  msgstr ""
1707
 
1708
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1324
1709
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
1710
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2088
1711
  msgid "With the Pro add-on of WP Live Chat Support, you can"
1712
  msgstr ""
1713
 
1714
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1325
1715
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
1716
  msgid "see who's online and initiate chats"
1717
  msgstr ""
1718
 
1719
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1326
1720
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
1721
+ msgid "initiate chats"
1722
  msgstr ""
1723
 
1724
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1327
1725
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
1726
+ msgid "with your online visitors with the click of a button."
1727
  msgstr ""
1728
 
1729
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1328
1730
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1330
1731
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
1732
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2088
1733
+ msgid "Buy the Pro add-on now for only $19.95 once off."
1734
  msgstr ""
1735
 
1736
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1389
1737
  msgid "Previous"
1738
  msgstr ""
1739
 
1740
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1391
1741
  msgid "Active"
1742
  msgstr ""
1743
 
1744
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1400
1745
  msgid "Chat with"
1746
  msgstr ""
1747
 
1748
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1437
1749
  msgid "Add Quick Responses to your Live Chat"
1750
  msgstr ""
1751
 
1752
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1437
1753
  msgid "Pro version only"
1754
  msgstr ""
1755
 
1756
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1448
1757
  msgid "type here..."
1758
  msgstr ""
1759
 
1760
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1845
1761
  msgid "WP Live Chat History"
1762
  msgstr ""
1763
 
1764
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1852
1765
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1872
1766
  msgid "This option is only available in the "
1767
  msgstr ""
1768
 
1769
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1852
1770
+ msgid "Get it now for only $19.95"
 
1771
  msgstr ""
1772
 
1773
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1857
1774
  msgid "WP Live Chat Missed Chats"
1775
  msgstr ""
1776
 
1777
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1864
1778
  msgid "WP Live Chat Offline Messages"
1779
  msgstr ""
1780
 
1781
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1869
1782
  msgid ""
1783
  "Please update to the latest version of WP Live Chat Support Pro to start "
1784
  "recording any offline messages."
1785
  msgstr ""
1786
 
1787
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1872
1788
+ msgid "Get it now for only $19.95."
1789
+ msgstr ""
1790
+
1791
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1962
1792
  msgid "Thank You for your feedback!"
1793
  msgstr ""
1794
 
1795
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1966
1796
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1979
1797
  msgid "Thank you for your feedback. We will be in touch soon"
1798
  msgstr ""
1799
 
1800
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1982
1801
  msgid "There was a problem sending your feedback. Please log your feedback on "
1802
  msgstr ""
1803
 
1804
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2016
1805
  msgid ""
1806
  "WPLC: set_time_limit() is not enabled on this server. You may experience "
1807
  "issues while using WP Live Chat Support as a result of this. Please get in "
1808
  "contact your host to get this function enabled."
1809
  msgstr ""
1810
 
1811
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2022
1812
  msgid ""
1813
  "WPLC: Safe mode is enabled on this server. You may experience issues while "
1814
  "using WP Live Chat Support as a result of this. Please contact your host to "
1815
  "get safe mode disabled."
1816
  msgstr ""
1817
 
1818
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2035
1819
  msgid "WP Live Chat Support"
1820
  msgstr ""
1821
 
1822
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2038
1823
  msgid "Documentation"
1824
  msgstr ""
1825
 
1826
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2040
1827
  msgid ""
1828
  "Getting started? Read through some of these articles to help you along your "
1829
  "way."
1830
  msgstr ""
1831
 
1832
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2041
1833
  msgid "Documentation:"
1834
  msgstr ""
1835
 
1836
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2043
 
 
 
 
 
 
 
 
 
 
 
 
1837
  msgid "Minimum System Requirements"
1838
  msgstr ""
1839
 
1840
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2044
1841
+ msgid "Do I have to be logged into the dashboard to chat with visitors?"
 
 
 
 
1842
  msgstr ""
1843
 
1844
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2045
1845
  msgid "What are Quick Responses?"
1846
  msgstr ""
1847
 
1848
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2046
1849
  msgid "Can I use this plugin on my multi-site?"
1850
  msgstr ""
1851
 
1852
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2047
1853
  msgid "How do I disable APC Object Cache?"
1854
  msgstr ""
1855
 
1856
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2048
1857
  msgid "Do you have a mobile app?"
1858
  msgstr ""
1859
 
1860
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2049
1861
+ msgid "How do I check for JavaScript errors on my site?"
1862
  msgstr ""
1863
 
1864
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2053
1865
  msgid "Troubleshooting"
1866
  msgstr ""
1867
 
1868
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2055
1869
  msgid ""
1870
+ "WP Live Chat Support has a diverse and wide range of features which may, "
1871
  "from time to time, run into conflicts with the thousands of themes and other "
1872
  "plugins on the market."
1873
  msgstr ""
1874
 
1875
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2056
1876
  msgid "Common issues:"
1877
  msgstr ""
1878
 
1879
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2058
1880
  msgid "The chat box doesnt show up"
1881
  msgstr ""
1882
 
1883
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2059
1884
  msgid "The chat window disappears when I logout or go offline"
1885
  msgstr ""
1886
 
1887
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2061
1888
  msgid "Messages only show when I refresh the chat window"
1889
  msgstr ""
1890
 
1891
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2062
1892
  msgid "I'm not getting any notifications of a new chat"
1893
  msgstr ""
1894
 
1895
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2063
1896
  msgid "The chat window never goes offline"
1897
  msgstr ""
1898
 
1899
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2069
1900
  msgid "Still need help? Use one of these links below."
1901
  msgstr ""
1902
 
1903
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2071
1904
  msgid "Support forum"
1905
  msgstr ""
1906
 
1907
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2072
1908
  msgid "Contact us"
1909
  msgstr ""
1910
+
1911
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
1912
+ msgid "Initiate Chats"
1913
+ msgstr ""
1914
+
1915
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2088
1916
+ msgid "Multiple Chats"
1917
+ msgstr ""
1918
+
1919
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2088
1920
+ msgid "accept and handle multiple chats."
1921
+ msgstr ""
1922
+
1923
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2089
1924
+ msgid "Add unlimited agents"
1925
+ msgstr ""
1926
+
1927
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2089
1928
+ msgid " with the Pro add-on of WP Live Chat Support"
1929
+ msgstr ""
1930
+
1931
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2089
1932
+ msgid "for only $19.95 once off."
1933
+ msgstr ""
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: WP-LiveChat
3
  Donate link: http://www.wp-livechat.com
4
  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
5
  Requires at least: 3.8
6
- Tested up to: 4.2.2
7
  Stable tag: trunk
8
  License: GPLv2
9
 
@@ -20,13 +20,19 @@ The most cost effective Live Chat plugin. Chat with your visitors for free! WP L
20
  * Easy to use interface for both the admin and the visitor
21
  * Users can drag the live chat box around their page
22
  * Change the colors of the live chat box
 
23
  * No advertising or links
24
  * No "Powered by" links on the live chat window
25
  * No monthly live chat subscriptions needed
26
- * Desktop Notifications when receiving new Live Chats
27
  * View any live chats you may have missed
28
- * A comprehensive list of live chat options
 
29
  * Ban visitors from chatting to you based on IP Address
 
 
 
 
30
 
31
 
32
  = Pro Version Features =
@@ -36,6 +42,8 @@ The most cost effective Live Chat plugin. Chat with your visitors for free! WP L
36
  * Chat to more than one visitor at a time
37
  * Quick Responses (insert a predefined response to your live chat box)
38
  * Encrypt your live chat conversations
 
 
39
  * Access historical live chat records
40
  * Set up your user profile
41
  * Add your company logo to the live chat window
@@ -48,14 +56,18 @@ The most cost effective Live Chat plugin. Chat with your visitors for free! WP L
48
  * Apply animations to the chat window
49
  * Anonymity for your visitors
50
  * Choose when to accept chats
 
 
 
 
51
 
52
- Get the [WP Live Chat Support Pro Add-on](http://wp-livechat.com/purchase-pro/?utm_source=readme&utm_medium=wordpress&utm_campaign=buy) for only $19.95!
 
53
 
54
  = Coming soon =
55
  * (Free & Pro) Improvements - Better link and image handling within the live chat text area
56
  * (Pro) New feature - Triggers - Build custom live chat triggers. For example, if a user has been idle for more than 2 minutes, initiate a live chat and send a response.
57
- * (Free & Pro) New feature - XMP notifications - Get notified about new live chats in Gtalk, ICQ, Yahoo! messenger, etc.
58
- * (Pro+) New feature - Full XMP support (chat through Skype, Gtalk, ICQ, Yahoo! messenger, etc)
59
 
60
  = 30 second live chat installation =
61
 
@@ -177,12 +189,20 @@ If the live chat box still does not appear on your website, please go through th
177
  = 4.4.1 =
178
  It is highly recommended that you upgrade to WP Live Chat Support version 4.4.0 for security reasons.
179
 
180
-
181
  = 4.1.4 =
182
  It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
183
 
184
  == Changelog ==
185
 
 
 
 
 
 
 
 
 
 
186
  = 4.4.4 - 2015-07-20 - Low Priority =
187
  * Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
188
 
3
  Donate link: http://www.wp-livechat.com
4
  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
5
  Requires at least: 3.8
6
+ Tested up to: 4.2.3
7
  Stable tag: trunk
8
  License: GPLv2
9
 
20
  * Easy to use interface for both the admin and the visitor
21
  * Users can drag the live chat box around their page
22
  * Change the colors of the live chat box
23
+ * Fully responsive admin chat dashboard
24
  * No advertising or links
25
  * No "Powered by" links on the live chat window
26
  * No monthly live chat subscriptions needed
27
+ * Desktop Notifications when receiving new live chats
28
  * View any live chats you may have missed
29
+ * Set the starting position of your chat box
30
+ * Comprehensive list of live chat options
31
  * Ban visitors from chatting to you based on IP Address
32
+ * Allow the live chat box to automatically pop up
33
+ * Limit the live chat box to only show to registered users
34
+ * Select whether Name and Email is required when users initiate a chat
35
+ * Enable/Disable the chat box on mobile devices
36
 
37
 
38
  = Pro Version Features =
42
  * Chat to more than one visitor at a time
43
  * Quick Responses (insert a predefined response to your live chat box)
44
  * Encrypt your live chat conversations
45
+ * Fully responsive admin chat dashboard
46
+ * Desktop Notifications when receiving new live chats
47
  * Access historical live chat records
48
  * Set up your user profile
49
  * Add your company logo to the live chat window
56
  * Apply animations to the chat window
57
  * Anonymity for your visitors
58
  * Choose when to accept chats
59
+ * Allow the live chat box to automatically pop up
60
+ * Limit the live chat box to only show to registered users
61
+ * Select whether Name and Email is required when users initiate a chat
62
+ * Enable/Disable the chat box on mobile devices
63
 
64
+
65
+ Get the [WP Live Chat Support Pro Add-on](http://wp-livechat.com/purchase-pro/?utm_source=readme&utm_medium=wordpress&utm_campaign=buy) for only $19.95 once off!
66
 
67
  = Coming soon =
68
  * (Free & Pro) Improvements - Better link and image handling within the live chat text area
69
  * (Pro) New feature - Triggers - Build custom live chat triggers. For example, if a user has been idle for more than 2 minutes, initiate a live chat and send a response.
70
+ * (Pro) Chat App - We're currently building an Android App that will allow you to accept chat requests from anywhere.
 
71
 
72
  = 30 second live chat installation =
73
 
189
  = 4.4.1 =
190
  It is highly recommended that you upgrade to WP Live Chat Support version 4.4.0 for security reasons.
191
 
 
192
  = 4.1.4 =
193
  It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
194
 
195
  == Changelog ==
196
 
197
+ = 5.0.0 - Doppio Update - 2015-07-29 - Medium Priority =
198
+ * New, modern chat dashboard
199
+ * Better user handling (chat long polling)
200
+ * Added a welcome page to the live chat dashboard
201
+ * The live hat dashboard is now fully responsive
202
+ * You are now able to see who is a new visitor and who is a returning visitor
203
+ * Bug fixes in the javascript that handles the live chat controls
204
+ * Fixed the bug that stopped the chats from timing out after a certain amount of time
205
+
206
  = 4.4.4 - 2015-07-20 - Low Priority =
207
  * Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
208
 
wp-live-chat-support.php CHANGED
@@ -3,13 +3,23 @@
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.4.4
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
- /* 4.4.4 - 2015-07-20 - Low Priority
 
 
 
 
 
 
 
 
 
 
13
  * Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
14
  *
15
  * 4.4.3 - 2015-07-16 - Low Priority
@@ -224,7 +234,7 @@ global $wplc_tblname_chats;
224
  global $wplc_tblname_msgs;
225
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
226
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
227
- $wplc_version = "4.4.04";
228
 
229
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
230
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
@@ -238,7 +248,7 @@ if(!function_exists('wplc_pro_activate')){
238
  require_once (plugin_dir_path(__FILE__) . "functions.php");
239
 
240
  add_action('wp_ajax_wplc_admin_set_transient', 'wplc_action_callback');
241
-
242
  add_action('init', 'wplc_version_control');
243
 
244
  add_action('wp_footer', 'wplc_display_box');
@@ -313,6 +323,9 @@ function wplc_action_callback() {
313
  if ($_POST['action'] == "wplc_admin_set_transient") {
314
  set_transient("wplc_is_admin_logged_in", "1", 70);
315
  }
 
 
 
316
  }
317
  die(); // this is required to return a proper result
318
  }
@@ -759,13 +772,61 @@ function wplc_admin_javascript() {
759
  wplc_update_admin_chat_table: false
760
  };
761
  var wplc_pending_refresh = null;
762
-
 
763
  var wplc_run = true;
764
-
 
 
765
  var wplc_notification_icon_url = '<?php echo plugins_url('/images/wplc_notification_icon.png', __FILE__); ?>';
766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
 
768
 
 
 
 
 
769
  function wplc_call_to_server(data) {
770
 
771
 
@@ -782,7 +843,22 @@ function wplc_admin_javascript() {
782
  //console.log(response);
783
  data["wplc_update_admin_chat_table"] = response['wplc_update_admin_chat_table'];
784
  //console.log(response['visitors']);
785
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
786
  if (response['action'] === "wplc_update_admin_chat") {
787
  jQuery("#wplc_admin_chat_area").html(response['wplc_update_admin_chat_table']);
788
  if (response['pending'] === true) {
@@ -834,19 +910,19 @@ function wplc_admin_javascript() {
834
  },
835
  error: function (jqXHR, exception) {
836
  if (jqXHR.status == 404) {
837
- console.log('Requested page not found. [404]');
838
  wplc_run = false;
839
  } else if (jqXHR.status == 500) {
840
- console.log('Internal Server Error [500].');
841
  wplc_run = false;
842
  } else if (exception === 'parsererror') {
843
- console.log('Requested JSON parse failed.');
844
  wplc_run = false;
845
  } else if (exception === 'abort') {
846
- console.log('Ajax request aborted.');
847
  wplc_run = false;
848
  } else {
849
- console.log('Uncaught Error.\n' + jqXHR.responseText);
850
  wplc_run = false;
851
  }
852
  },
@@ -860,9 +936,201 @@ function wplc_admin_javascript() {
860
  },
861
  timeout: 120000
862
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
863
  }
864
- ;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
865
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
866
 
867
 
868
  jQuery(document).ready(function () {
@@ -875,6 +1143,37 @@ function wplc_admin_javascript() {
875
  }
876
  window.open(jQuery(this).attr("href"), jQuery(this).attr("window-title"), "width=800,height=600,scrollbars=yes", false);
877
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
878
  });
879
 
880
  wplc_call_to_server(data);
@@ -935,56 +1234,111 @@ function wplc_admin_menu_layout() {
935
  }
936
  }
937
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
938
 
939
  function wplc_admin_menu_layout_display() {
940
  if(current_user_can('wplc_ma_agent') || current_user_can('manage_options')){
941
-
942
  if (!isset($_GET['action'])) {
943
  ?>
944
- <div style='float:right; display:block; width:450px; padding:10px; text-align:center; background-color: #EEE; border: 1px solid #E6DB55; margin:10px;'>
945
- <strong><?php _e("Experiencing problems with the plugin?", "wplivechat") ?></strong>
946
- <br />
947
- <a href='http://wp-livechat.com/documentation/' title='WP Live Chat Support Documentation' target='_BLANK'><?php _e("Review the documentation.", "wplivechat") ?></a>
948
- <?php _e("Or ask a question on our", "wplivechat") ?> <a href='http://wp-livechat.com/forums/forum/support/' title='WP Live Chat Support Forum' target='_BLANK'><?php _e('Support forum.', 'wplivechat'); ?></a>
 
 
 
 
 
 
 
 
 
 
 
 
949
  </div>
950
- <br/>
951
- <br/>
952
- <br/>
953
  <div class='wplc_page_title'>
954
- <h1><?php _e("Chat sessions", "wplivechat"); ?></h1>
 
955
 
956
  <p><?php _e("Please note: This window must be open in order to receive new chat notifications.", "wplivechat"); ?></p>
957
  </div>
958
 
959
  <div id="wplc_sound"></div>
960
 
961
- <div class="wplc_admin_dashboard_container">
962
- <div id="wplc_admin_chat_area">
963
- <?php
964
- if (function_exists("wplc_register_pro_version")) {
965
- echo wplc_list_chats_pro();
966
- } else {
967
- echo wplc_list_chats();
968
- }
969
- ?>
 
 
 
 
 
 
970
  </div>
971
- <div id="wplc_admin_visitor_area">
972
- <div class="wplc_visitor_container">
973
- <h1><?php _e("Visitors on site", "wplivechat") ?></h1>
 
 
 
 
 
 
 
 
 
 
 
 
974
  <p>
975
- <?php _e("With the Pro add-on of WP Live Chat Support, you can", "wplivechat"); ?>
976
- <a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate1" title="<?php _e("see who's online and initiate chats", "wplivechat"); ?>" target=\"_BLANK\">
977
- <?php _e("see who's online and initiate chats", "wplivechat"); ?>
978
- </a> <?php _e("with your online visitors with the click of a button.", "wplivechat"); ?>
979
- <a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate2" title="<?php _e("Buy the Pro add-on now for only $19.95. Free Updates FOREVER.", "wplivechat"); ?>" target=\"_BLANK\">
980
- <strong>
981
- <?php _e("Buy the Pro add-on now for only $19.95.", "wplivechat"); ?>
982
- </strong>
983
- </a>
984
- </p>
985
  </div>
 
986
  </div>
 
987
  </div>
 
 
 
988
 
989
  <?php
990
  } else {
@@ -1145,7 +1499,6 @@ function wplc_return_admin_chat_javascript($cid) {
1145
  if (response) {
1146
 
1147
  response = JSON.parse(response);
1148
- // console.log(response);
1149
  if (response['action'] === "wplc_update_chat_status") {
1150
  data['chat_status'] = response['chat_status'];
1151
  wplc_display_chat_status_update(response['chat_status'], cid);
@@ -1397,6 +1750,7 @@ function wplc_handle_db() {
1397
  session varchar(100) NOT NULL,
1398
  url varchar(700) NOT NULL,
1399
  last_active_timestamp datetime NOT NULL,
 
1400
  PRIMARY KEY (id)
1401
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1402
  ";
@@ -1451,6 +1805,11 @@ function wplc_add_admin_stylesheet() {
1451
  wp_enqueue_style('wplc-chat-style');
1452
  wp_register_style('wplc-font-awesome', plugins_url('/css/font-awesome.min.css', __FILE__));
1453
  wp_enqueue_style('wplc-font-awesome');
 
 
 
 
 
1454
  }
1455
  if (isset($_GET['page']) && $_GET['page'] == "wplivechat-menu-support-page") {
1456
  wp_register_style('fontawesome', plugins_url('css/font-awesome.min.css', __FILE__));
@@ -1681,25 +2040,19 @@ function wplc_support_menu() {
1681
  <p><?php _e("Getting started? Read through some of these articles to help you along your way.","wplivechat"); ?></p>
1682
  <p><strong><?php _e("Documentation:","wplivechat"); ?></strong></p>
1683
  <ul>
1684
- <li><a href='http://wp-livechat.com/documentation/installing-the-wp-live-chat-support-pro-add-on/' target='_BLANK' title='<?php _e("Installing the WP Live Chat Support Pro add-on","wplivechat"); ?>'><?php _e("Installing the WP Live Chat Support Pro add-on","wplivechat"); ?></a></li>
1685
- <li><a href='http://wp-livechat.com/documentation/running-the-wp-live-chat-support-plugin-for-the-first-time/' target='_BLANK' title='<?php _e("Running the WP Live Chat Support plugin for the first time (Pro)","wplivechat"); ?>'><?php _e("Running the WP Live Chat Support plugin for the first time (Pro)","wplivechat"); ?></a></li>
1686
- <li><a href='http://wp-livechat.com/upgrading-your-licence/' target='_BLANK' title='<?php _e("Upgrading your licence (Pro)","wplivechat"); ?>'><?php _e("Upgrading your licence (Pro)","wplivechat"); ?></a></li>
1687
  <li><a href='http://wp-livechat.com/documentation/minimum-system-requirements/' target='_BLANK' title='<?php _e("Minimum System Requirements","wplivechat"); ?>'><?php _e("Minimum System Requirements","wplivechat"); ?></a></li>
1688
- </ul>
1689
- <p><strong><?php _e("FAQ's:","wplivechat"); ?></strong></p>
1690
- <ul>
1691
- <li><a href='http://wp-livechat.com/documentation/how-do-i-check-for-javascript-errors-on-my-site/' target='_BLANK' title='<?php _e("How do I check for JavaScript errors on my site?","wplivechat"); ?>'><?php _e("How do I check for JavaScript errors on my site?","wplivechat"); ?></a></li>
1692
  <li><a href='http://wp-livechat.com/documentation/what-are-quick-responses/' target='_BLANK' title='<?php _e("What are Quick Responses?","wplivechat"); ?>'><?php _e("What are Quick Responses?","wplivechat"); ?></a></li>
1693
  <li><a href='http://wp-livechat.com/documentation/troubleshooting/is-this-plugin-multi-site-friendly/' target='_BLANK' title='<?php _e("Can I use this plugin on my multi-site?","wplivechat"); ?>'><?php _e("Can I use this plugin on my multi-site?","wplivechat"); ?></a></li>
1694
  <li><a href='http://wp-livechat.com/documentation/how-do-i-disable-apc-object-cache/' target='_BLANK' title='<?php _e("How do I disable APC Object Cache?","wplivechat"); ?>'><?php _e("How do I disable APC Object Cache?","wplivechat"); ?></a></li>
1695
  <li><a href='http://wp-livechat.com/documentation/do-you-have-a-mobile-app/' target='_BLANK' title='<?php _e("Do you have a mobile app?","wplivechat"); ?>'><?php _e("Do you have a mobile app?","wplivechat"); ?></a></li>
1696
- <li><a href='http://wp-livechat.com/documentation/do-i-have-to-be-logged-into-the-dashboard-to-chat-with-visitors/' target='_BLANK' title='<?php _e("Do I have to be logged into the dashboard to chat with visitors?","wplivechat"); ?>'><?php _e("Do I have to be logged into the dashboard to chat with visitors?","wplivechat"); ?></a></li>
1697
  </ul>
1698
  </div>
1699
  <div class='wplc_row_col' style='background-color:#FFF;'>
1700
  <h2><i class="fa fa-exclamation-circle fa-2x"></i> <?php _e("Troubleshooting","wplivechat"); ?></h2>
1701
  <hr />
1702
- <p><?php _e("WP Live Chat Support Pro has a diverse and wide range of features which may, from time to time, run into conflicts with the thousands of themes and other plugins on the market.", "wplivechat"); ?></p>
1703
  <p><strong><?php _e("Common issues:","wplivechat"); ?></strong></p>
1704
  <ul>
1705
  <li><a href='http://wp-livechat.com/documentation/troubleshooting/the-chat-box-doesnt-show-up/' target='_BLANK' title='<?php _e("The chat box doesnt show up","wplivechat"); ?>'><?php _e("The chat box doesnt show up","wplivechat"); ?></a></li>
@@ -1721,4 +2074,26 @@ function wplc_support_menu() {
1721
  </div>
1722
  </div>
1723
  <?php
1724
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 5.0.0
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
+ /* 5.0.0
13
+ * New, modern chat dashboard
14
+ * Better user handling (chat long polling)
15
+ * Added a welcome page to the live chat dashboard
16
+ * The live hat dashboard is now fully responsive
17
+ * You are now able to see who is a new visitor and who is a returning visitor
18
+ * Bug fixes in the javascript that handles the live chat controls
19
+ * Fixed the bug that stopped the chats from timing out after a certain amount of time
20
+ *
21
+ *
22
+ * 4.4.4 - 2015-07-20 - Low Priority
23
  * Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
24
  *
25
  * 4.4.3 - 2015-07-16 - Low Priority
234
  global $wplc_tblname_msgs;
235
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
236
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
237
+ $wplc_version = "5.0.0";
238
 
239
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
240
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
248
  require_once (plugin_dir_path(__FILE__) . "functions.php");
249
 
250
  add_action('wp_ajax_wplc_admin_set_transient', 'wplc_action_callback');
251
+ add_action('wp_ajax_wplc_hide_ftt','wplc_action_callback');
252
  add_action('init', 'wplc_version_control');
253
 
254
  add_action('wp_footer', 'wplc_display_box');
323
  if ($_POST['action'] == "wplc_admin_set_transient") {
324
  set_transient("wplc_is_admin_logged_in", "1", 70);
325
  }
326
+ if ($_POST['action'] == 'wplc_hide_ftt') {
327
+ update_option("WPLC_FIRST_TIME_TUTORIAL",true);
328
+ }
329
  }
330
  die(); // this is required to return a proper result
331
  }
772
  wplc_update_admin_chat_table: false
773
  };
774
  var wplc_pending_refresh = null;
775
+ var current_chat_ids = new Object();
776
+ var chat_count = 0;
777
  var wplc_run = true;
778
+ var ringer_cnt = 0;
779
+ var orig_title = document.getElementsByTagName("title")[0].innerHTML;
780
+
781
  var wplc_notification_icon_url = '<?php echo plugins_url('/images/wplc_notification_icon.png', __FILE__); ?>';
782
 
783
+ Object.size = function(obj) {
784
+ var size = 0, key;
785
+ for (key in obj) {
786
+ if (obj.hasOwnProperty(key)) size++;
787
+ }
788
+ return size;
789
+ };
790
+ function wplc_notify_agent() {
791
+
792
+ var wplc_sounder = document.createElement("embed");
793
+ wplc_sounder.src = '<?php echo plugins_url('/ring.wav', __FILE__); ?>';
794
+ wplc_sounder.hidden = 'true';
795
+ wplc_sounder.autostart = 'true';
796
+ wplc_sounder.loop = 'false';
797
+ wplc_sounder.type = 'audio/x-wav';
798
+ var seconds = new Date().getTime() / 1000;
799
+ wplc_sounder.id = 'wplc_s_'+seconds;
800
+
801
+
802
+ document.body.appendChild(wplc_sounder);
803
+
804
+ if (ringer_cnt <= 0) {
805
+ wplc_desktop_notification();
806
+ }
807
+ ringer_cnt++;
808
+
809
+ if (ringer_cnt > 1) {
810
+ clearInterval(wplc_pending_refresh);
811
+ wplc_title_alerts4 = setTimeout(function () {
812
+ document.title = orig_title;
813
+ }, 4000);
814
+ return;
815
+ }
816
+
817
+ document.title = "** CHAT REQUEST **";
818
+ wplc_title_alerts2 = setTimeout(function () {
819
+ document.title = "** CHAT REQUEST **";
820
+ }, 2000);
821
+ wplc_title_alerts4 = setTimeout(function () {
822
+ document.title = orig_title;
823
+ }, 4000);
824
 
825
 
826
+
827
+
828
+
829
+ }
830
  function wplc_call_to_server(data) {
831
 
832
 
843
  //console.log(response);
844
  data["wplc_update_admin_chat_table"] = response['wplc_update_admin_chat_table'];
845
  //console.log(response['visitors']);
846
+
847
+ if (response['action'] === "wplc_update_chat_list") {
848
+ wplc_handle_chat_output(response['wplc_update_admin_chat_table']);
849
+ if (response['pending'] === true) {
850
+
851
+ wplc_notify_agent();
852
+ wplc_pending_refresh = setInterval(function () {
853
+
854
+ wplc_notify_agent();
855
+ }, 5000);
856
+ } else {
857
+ //console.log("end");
858
+ clearInterval(wplc_pending_refresh);
859
+ ringer_cnt = 0;
860
+ }
861
+ }
862
  if (response['action'] === "wplc_update_admin_chat") {
863
  jQuery("#wplc_admin_chat_area").html(response['wplc_update_admin_chat_table']);
864
  if (response['pending'] === true) {
910
  },
911
  error: function (jqXHR, exception) {
912
  if (jqXHR.status == 404) {
913
+ if( window.console ) { console.log('Requested page not found. [404]'); }
914
  wplc_run = false;
915
  } else if (jqXHR.status == 500) {
916
+ if( window.console ) { console.log('Internal Server Error [500].'); }
917
  wplc_run = false;
918
  } else if (exception === 'parsererror') {
919
+ if( window.console ) { console.log('Requested JSON parse failed.'); }
920
  wplc_run = false;
921
  } else if (exception === 'abort') {
922
+ if( window.console ) { console.log('Ajax request aborted.'); }
923
  wplc_run = false;
924
  } else {
925
+ if( window.console ) { console.log('Uncaught Error.\n' + jqXHR.responseText); }
926
  wplc_run = false;
927
  }
928
  },
936
  },
937
  timeout: 120000
938
  });
939
+ };
940
+
941
+
942
+ function wplc_handle_chat_output(response) {
943
+ var obj = jQuery.parseJSON(response);
944
+ if (obj === false || obj === null) {
945
+ jQuery("#wplc_chat_ul").html("");
946
+ current_chat_ids = {};
947
+ wplc_handle_count_change(0);
948
+
949
+ } else {
950
+ var size = Object.size(current_chat_ids);
951
+ wplc_handle_count_change(size);
952
+ if (size < 1) {
953
+ /* no prior visitor information, update without any checks */
954
+ current_chat_ids = obj["ids"];
955
+ wplc_update_chat_list(false,obj);
956
+ } else {
957
+ /* we have had visitor information prior to this call, update systematically */
958
+ if (obj === null) {
959
+ jQuery("#wplc_chat_ul").html("");
960
+ } else {
961
+ current_chat_ids = obj["ids"];
962
+ wplc_update_chat_list(true,obj);
963
+ }
964
+ }
965
+
966
+
967
  }
968
+ var size = Object.size(current_chat_ids);
969
+ wplc_handle_count_change(size);
970
+
971
+
972
+
973
+ }
974
+ function wplc_handle_count_change(qty) {
975
+ if (qty > chat_count) {
976
+ jQuery(".wplc_chat_vis_count_box").animate({backgroundColor: '#B3D24B'}, 300);
977
+ jQuery(".wplc_vis_online").html(qty);
978
+ jQuery(".wplc_chat_vis_count_box").animate({backgroundColor: 'white'}, 200);
979
+ } else if (qty === chat_count) {
980
+ jQuery(".wplc_vis_online").html(qty);
981
+ } else {
982
+ jQuery(".wplc_chat_vis_count_box").animate({backgroundColor: '#E1734A'}, 300);
983
+ jQuery(".wplc_vis_online").html(qty);
984
+ jQuery(".wplc_chat_vis_count_box").animate({backgroundColor: 'white'}, 200);
985
+ }
986
+ chat_count = qty;
987
+
988
+ }
989
+
990
+
991
+ function wplc_get_status_name(status) {
992
+ if (status === 1) {
993
+ return "<span class='wplc_status_box wplc_status_"+status+"'>complete</span>";
994
+ }
995
+ if (status === 2) {
996
+ return "<span class='wplc_status_box wplc_status_"+status+"'>pending</span>";
997
+ }
998
+ if (status === 3) {
999
+ return "<span class='wplc_status_box wplc_status_"+status+"'>active</span>";
1000
+ }
1001
+ if (status === 4) {
1002
+ return "<span class='wplc_status_box wplc_status_"+status+"'>deleted</span>";
1003
+ }
1004
+ if (status === 5) {
1005
+ return "<span class='wplc_status_box wplc_status_"+status+"'>browsing</span>";
1006
+ }
1007
+ if (status === 6) {
1008
+ return "<span class='wplc_status_box wplc_status_"+status+"'>requesting chat</span>";
1009
+ }
1010
+ if (status === 8){
1011
+ return "<span class='wplc_status_box wplc_status_"+status+"'>chat ended</span></span>";
1012
+ }
1013
+ if (status === 9){
1014
+ return "<span class='wplc_status_box wplc_status_"+status+"'>chat closed</span>";
1015
+ }
1016
+ }
1017
+ function wplc_get_type_box(type) {
1018
+ if (type === "New") {
1019
+ return "<span class='wplc_status_box wplc_type_new'>New</span>";
1020
+ }
1021
+ if (type === "Returning") {
1022
+ return "<span class='wplc_status_box wplc_type_returning'>Returning</span>";
1023
+ }
1024
+ }
1025
+
1026
+ function wplc_create_chat_ul_element_after_eating_vindaloo(obj,key) {
1027
+ var v_img = obj[key]['image'];
1028
+ var v_name = obj[key]['name'];
1029
+ var v_email = obj[key]['email'];
1030
+ var v_browser = obj[key]['data']['browser'];
1031
+ var v_browsing = obj[key]['data']['browsing_nice_url'];
1032
+ var v_browsing_url = obj[key]['data']['browsing'];
1033
+ var v_status = obj[key]['status'];
1034
+ var v_time = obj[key]['timestamp'];
1035
+ var v_type = obj[key]['type'];
1036
+ var v_action = obj[key]['action'];
1037
+ var v_status_string = wplc_get_status_name(parseInt(v_status));
1038
+
1039
+ var v_vis_html = "<span class='wplc_headerspan_v'>"+v_name+"</span>";
1040
+ var v_nr_html = "<span class='wplc_headerspan_nr'><span class='browser-tag'>"+v_browser+"</span> "+wplc_get_type_box(v_type)+"</span>";
1041
+ var v_time_html = "<span class='wplc_headerspan_t'><span class='wplc_status_box wplc_status_1'>"+v_time+"</span></span>";
1042
+ var v_nr_data = "<span class='wplc_headerspan_d'><span class='wplc-sub-item-header'>Page:</span> <a href='"+v_browsing_url+"' target='_BLANK'>"+v_browsing+"</a><br /><span class='wplc-sub-item-header'>Email:</span> <a href='mailto:"+v_email+"' target='_BLANK'>"+v_email+"</a></span>";
1043
+ var v_nr_status_html = "<span class='wplc_headerspan_s'>"+v_status_string+"</span>";
1044
+ var v_nr_action_html = "<span class='wplc_headerspan_a'>"+v_action+"</span>";
1045
+
1046
+ var wplc_v_html = "\
1047
+ <ul id='wplc_p_ul_"+key+"' class='wplc_p_cul' cid='"+key+"'>\n\
1048
+ <li>"+v_vis_html+"</li>\n\
1049
+ <li>"+v_time_html+"</li>\n\
1050
+ <li>"+v_nr_html+"</li>\n\
1051
+ <li>"+v_nr_data+"</li>\n\
1052
+ <li>"+v_nr_status_html+"</li>\n\
1053
+ <li>"+v_nr_action_html+"</li>\n\
1054
+ <ul>";
1055
+ return wplc_v_html;
1056
 
1057
+
1058
+ }
1059
+
1060
+ function wplc_update_chat_list(update,obj) {
1061
+
1062
+ /* first compare existing elements with the elements on the page */
1063
+ if (update === false) {
1064
+ jQuery( ".wplc_chat_ul" ).html("");
1065
+
1066
+ for (var key in obj) {
1067
+ if (obj.hasOwnProperty(key) && key !== "ids") {
1068
+ wplc_v_html = wplc_create_chat_ul_element_after_eating_vindaloo(obj,key);
1069
+ jQuery( "#wplc_chat_ul" ).append(wplc_v_html).hide().fadeIn(2000);
1070
+
1071
+ }
1072
+ }
1073
+ current_chat_ids = obj["ids"];
1074
+
1075
+ } else {
1076
+
1077
+ for (var key in current_chat_ids) {
1078
+ current_id = key;
1079
+ if (document.getElementById("wplc_p_ul_"+current_id) !== null) {
1080
+ /* element is already there */
1081
+ /* update element */
1082
+ if (typeof obj[current_id] !== "undefined") { /* if this check isnt here, it will throw an error. This check is here incase the item has been deleted. If it has, it will be handled futher down */
1083
+ jQuery("#wplc_p_ul_"+current_id).remove();
1084
+ wplc_v_html = wplc_create_chat_ul_element_after_eating_vindaloo(obj,current_id);
1085
+ jQuery( "#wplc_chat_ul" ).append(wplc_v_html);
1086
+ //jQuery( ".wplc_chats_container" ).append(obj[current_id]['content']);
1087
+ }
1088
+
1089
+
1090
+ } else {
1091
+ jQuery("#nifty_c_none").hide();
1092
+ /* new element to be created */
1093
+ if (typeof obj[current_id] !== "undefined") { /* if this check isnt here, it will throw an error. This check is here incase the item has been deleted. If it has, it will be handled futher down */
1094
+
1095
+ wplc_v_html = wplc_create_chat_ul_element_after_eating_vindaloo(obj,current_id);
1096
+ jQuery( "#wplc_chat_ul" ).append(wplc_v_html);
1097
+
1098
+ jQuery("#wplc_p_ul_"+current_id).hide().fadeIn(2000);
1099
+
1100
+ }
1101
+ }
1102
+
1103
+
1104
+ }
1105
+
1106
+ }
1107
+
1108
+ /* compare new elements to old elements and delete where neccessary */
1109
+
1110
+
1111
+ jQuery(".wplc_p_cul").each(function(n, i) {
1112
+ var cid = jQuery(this).attr("cid");
1113
+ if (typeof cid !== "undefined") {
1114
+ if (typeof current_chat_ids[cid] !== "undefined") { /* element still there dont delete */ }
1115
+ else {
1116
+ jQuery("#wplc_p_ul_"+cid).fadeOut(2000).delay(2000).remove();
1117
+
1118
+ }
1119
+ var size = Object.size(current_chat_ids);
1120
+ wplc_handle_count_change(size);
1121
+ }
1122
+ // do something with it
1123
+ });
1124
+ if(jQuery('.wplc_p_cul').length < 1) {
1125
+ wplc_handle_count_change(0);
1126
+ current_chat_ids = {};
1127
+ }
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+ }
1134
 
1135
 
1136
  jQuery(document).ready(function () {
1143
  }
1144
  window.open(jQuery(this).attr("href"), jQuery(this).attr("window-title"), "width=800,height=600,scrollbars=yes", false);
1145
  }
1146
+ });
1147
+
1148
+ jQuery('body').on("click", "#wplc_close_ftt", function (event) {
1149
+ jQuery("#wplcftt").fadeOut(1000);
1150
+ var data = {
1151
+ action: 'wplc_hide_ftt',
1152
+ security: '<?php echo $ajax_nonce; ?>',
1153
+ };
1154
+ jQuery.ajax({
1155
+ url: wplc_ajaxurl,
1156
+ data: data,
1157
+ type: "POST",
1158
+ success: function (response) {
1159
+
1160
+ }
1161
+ });
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+
1173
+
1174
+
1175
+
1176
+
1177
  });
1178
 
1179
  wplc_call_to_server(data);
1234
  }
1235
  }
1236
  }
1237
+ function wplc_first_time_tutorial() {
1238
+ if (!get_option('WPLC_FIRST_TIME_TUTORIAL')) {
1239
+
1240
+ global $wplc_basic_plugin_url;
1241
+ ?>
1242
+
1243
+
1244
+ <div id="wplcftt" style='margin-top:30px; margin-bottom:20px; width: 65%; background-color: #FFF; box-shadow: 1px 1px 3px #ccc; display:block; padding:10px; text-align:center; margin-left:auto; margin-right:auto;'>
1245
+ <img src='<?php echo $wplc_basic_plugin_url; ?>/images/wplc_notification_icon.png' width="130" align="center" />
1246
+ <h1 style='font-weight: 300; font-size: 50px; line-height: 50px;'><strong style="color: #ec822c;"><?php _e("Congratulations","wplivechat"); ?></strong></h1>
1247
+ <h2><strong><?php _e("You are now accepting live chat requests on your site.","wplivechat"); ?></strong></h2>
1248
+ <p><?php _e("The live chat box has automatically been enabled on your website.","wplivechat"); ?></p>
1249
+ <p><?php _e("Chat notifications will start appearing once visitors send a request.","wplivechat"); ?></p>
1250
+ <p><?php _e("You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your chat box settings here.","wplivechat"); ?></a></p>
1251
+ <p><?php _e("Experiencing issues?","wplivechat"); ?> <a href="http://wp-livechat.com/documentation/troubleshooting/" target="_BLANK" title=""><?php _e("Visit our troubleshooting section.","wplivechat"); ?></a></p>
1252
+
1253
+ <p><button id="wplc_close_ftt" class="button button-secondary"><?php _e("Hide","wplivechat"); ?></button></p>
1254
+
1255
+ </div>
1256
+
1257
+ <?php }
1258
+ }
1259
 
1260
  function wplc_admin_menu_layout_display() {
1261
  if(current_user_can('wplc_ma_agent') || current_user_can('manage_options')){
1262
+ global $wplc_basic_plugin_url;
1263
  if (!isset($_GET['action'])) {
1264
  ?>
1265
+ <style>
1266
+ #wplc-support-tabs a.wplc-support-link {
1267
+ background: url('<?php echo $wplc_basic_plugin_url; ?>/images/support.png');
1268
+ right: 0px;
1269
+ top: 250px;
1270
+ height: 108px;
1271
+ width: 45px;
1272
+ margin: 0;
1273
+ padding: 0;
1274
+ position: fixed;
1275
+ z-index: 9999;
1276
+ display:block;
1277
+ }
1278
+ </style>
1279
+
1280
+ <div id="wplc-support-tabs">
1281
+ <a class="wplc-support-link wplc-rotate" href="?page=wplivechat-menu-support-page"></a>
1282
  </div>
 
 
 
1283
  <div class='wplc_page_title'>
1284
+ <h1><?php _e("Chat Dashboard", "wplivechat"); ?></h1>
1285
+ <?php wplc_first_time_tutorial(); ?>
1286
 
1287
  <p><?php _e("Please note: This window must be open in order to receive new chat notifications.", "wplivechat"); ?></p>
1288
  </div>
1289
 
1290
  <div id="wplc_sound"></div>
1291
 
1292
+ <div id="wplc_admin_chat_holder">
1293
+ <div id='wplc_admin_chat_info_new'>
1294
+ <div class='wplc_chat_vis_count_box'>
1295
+ <span class='wplc_vis_online'>0</span>
1296
+ <span style='text-transform:uppercase;'>
1297
+ <?php _e("Visitors online","wplivechat"); ?>
1298
+ </span>
1299
+ <hr />
1300
+ <p class='wplc-agent-info' id='wplc-agent-info'>
1301
+ <span class='wplc_agents_online'>1</span>
1302
+ <a href='javascript:void(0);'><?php _e("Agent(s) online","wplivechat"); ?></a>
1303
+ </p>
1304
+
1305
+ </div>
1306
+
1307
  </div>
1308
+
1309
+ <div id="wplc_admin_chat_area_new">
1310
+ <div style="display:block;padding:10px;">
1311
+ <ul class='wplc_chat_ul_header'>
1312
+ <li><span class='wplc_header_vh wplc_headerspan_v'><?php _e("Visitor","wplivechat"); ?></span></li>
1313
+ <li><span class='wplc_header_vh wplc_headerspan_t'><?php _e("Time","wplivechat"); ?></span></li>
1314
+ <li><span class='wplc_header_vh wplc_headerspan_nr'><?php _e("Type","wplivechat"); ?></span></li>
1315
+ <li><span class='wplc_header_vh wplc_headerspan_d'><?php _e("Data","wplivechat"); ?></span></li>
1316
+ <li><span class='wplc_header_vh wplc_headerspan_s'><?php _e("Status","wplivechat"); ?></span></li>
1317
+ <li><span class='wplc_header_vh wplc_headerspan_a'><?php _e("Action","wplivechat"); ?></span></li>
1318
+ </ul>
1319
+ <ul id='wplc_chat_ul'>
1320
+
1321
+
1322
+ </ul>
1323
  <p>
1324
+ <?php _e("With the Pro add-on of WP Live Chat Support, you can", "wplivechat"); ?>
1325
+ <a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate1" title="<?php _e("see who's online and initiate chats", "wplivechat"); ?>" target=\"_BLANK\">
1326
+ <?php _e("initiate chats", "wplivechat"); ?>
1327
+ </a> <?php _e("with your online visitors with the click of a button.", "wplivechat"); ?>
1328
+ <a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate2" title="<?php _e("Buy the Pro add-on now for only $19.95 once off.", "wplivechat"); ?>" target=\"_BLANK\">
1329
+ <strong>
1330
+ <?php _e("Buy the Pro add-on now for only $19.95 once off.", "wplivechat"); ?>
1331
+ </strong>
1332
+ </a>
1333
+ </p>
1334
  </div>
1335
+
1336
  </div>
1337
+
1338
  </div>
1339
+
1340
+
1341
+
1342
 
1343
  <?php
1344
  } else {
1499
  if (response) {
1500
 
1501
  response = JSON.parse(response);
 
1502
  if (response['action'] === "wplc_update_chat_status") {
1503
  data['chat_status'] = response['chat_status'];
1504
  wplc_display_chat_status_update(response['chat_status'], cid);
1750
  session varchar(100) NOT NULL,
1751
  url varchar(700) NOT NULL,
1752
  last_active_timestamp datetime NOT NULL,
1753
+ other LONGTEXT NOT NULL,
1754
  PRIMARY KEY (id)
1755
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1756
  ";
1805
  wp_enqueue_style('wplc-chat-style');
1806
  wp_register_style('wplc-font-awesome', plugins_url('/css/font-awesome.min.css', __FILE__));
1807
  wp_enqueue_style('wplc-font-awesome');
1808
+ wp_enqueue_script('jquery-ui-core');
1809
+ wp_enqueue_script('jquery-effects-core');
1810
+
1811
+
1812
+
1813
  }
1814
  if (isset($_GET['page']) && $_GET['page'] == "wplivechat-menu-support-page") {
1815
  wp_register_style('fontawesome', plugins_url('css/font-awesome.min.css', __FILE__));
2040
  <p><?php _e("Getting started? Read through some of these articles to help you along your way.","wplivechat"); ?></p>
2041
  <p><strong><?php _e("Documentation:","wplivechat"); ?></strong></p>
2042
  <ul>
 
 
 
2043
  <li><a href='http://wp-livechat.com/documentation/minimum-system-requirements/' target='_BLANK' title='<?php _e("Minimum System Requirements","wplivechat"); ?>'><?php _e("Minimum System Requirements","wplivechat"); ?></a></li>
2044
+ <li><a href='http://wp-livechat.com/documentation/do-i-have-to-be-logged-into-the-dashboard-to-chat-with-visitors/' target='_BLANK' title='<?php _e("Do I have to be logged into the dashboard to chat with visitors?","wplivechat"); ?>'><?php _e("Do I have to be logged into the dashboard to chat with visitors?","wplivechat"); ?></a></li>
 
 
 
2045
  <li><a href='http://wp-livechat.com/documentation/what-are-quick-responses/' target='_BLANK' title='<?php _e("What are Quick Responses?","wplivechat"); ?>'><?php _e("What are Quick Responses?","wplivechat"); ?></a></li>
2046
  <li><a href='http://wp-livechat.com/documentation/troubleshooting/is-this-plugin-multi-site-friendly/' target='_BLANK' title='<?php _e("Can I use this plugin on my multi-site?","wplivechat"); ?>'><?php _e("Can I use this plugin on my multi-site?","wplivechat"); ?></a></li>
2047
  <li><a href='http://wp-livechat.com/documentation/how-do-i-disable-apc-object-cache/' target='_BLANK' title='<?php _e("How do I disable APC Object Cache?","wplivechat"); ?>'><?php _e("How do I disable APC Object Cache?","wplivechat"); ?></a></li>
2048
  <li><a href='http://wp-livechat.com/documentation/do-you-have-a-mobile-app/' target='_BLANK' title='<?php _e("Do you have a mobile app?","wplivechat"); ?>'><?php _e("Do you have a mobile app?","wplivechat"); ?></a></li>
2049
+ <li><a href='http://wp-livechat.com/documentation/how-do-i-check-for-javascript-errors-on-my-site/' target='_BLANK' title='<?php _e("How do I check for JavaScript errors on my site?","wplivechat"); ?>'><?php _e("How do I check for JavaScript errors on my site?","wplivechat"); ?></a></li>
2050
  </ul>
2051
  </div>
2052
  <div class='wplc_row_col' style='background-color:#FFF;'>
2053
  <h2><i class="fa fa-exclamation-circle fa-2x"></i> <?php _e("Troubleshooting","wplivechat"); ?></h2>
2054
  <hr />
2055
+ <p><?php _e("WP Live Chat Support has a diverse and wide range of features which may, from time to time, run into conflicts with the thousands of themes and other plugins on the market.", "wplivechat"); ?></p>
2056
  <p><strong><?php _e("Common issues:","wplivechat"); ?></strong></p>
2057
  <ul>
2058
  <li><a href='http://wp-livechat.com/documentation/troubleshooting/the-chat-box-doesnt-show-up/' target='_BLANK' title='<?php _e("The chat box doesnt show up","wplivechat"); ?>'><?php _e("The chat box doesnt show up","wplivechat"); ?></a></li>
2074
  </div>
2075
  </div>
2076
  <?php
2077
+ }
2078
+ if (!function_exists("wplc_pro_version_control")) {
2079
+ add_action('admin_enqueue_scripts', 'wp_button_pointers_load_scripts');
2080
+ }
2081
+ function wp_button_pointers_load_scripts($hook) {
2082
+
2083
+ if( $hook != 'toplevel_page_wplivechat-menu') {return;} // stop if we are not on the right page
2084
+
2085
+
2086
+ $pointer_localize_strings = array(
2087
+ "initiate" => "<h3>".__("Initiate Chats","wplivechat")."</h3><p>".__("With the Pro add-on of WP Live Chat Support, you can", "wplivechat")." <a href='http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate1_pointer' title='".__("see who's online and initiate chats", "wplivechat")."' target=\"_BLANK\">".__("initiate chats", "wplivechat")."</a> ".__("with your online visitors with the click of a button.", "wplivechat")." <br /><br /><a href='http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate2_pointer' title='".__("Buy the Pro add-on now for only $19.95 once off.", "wplivechat")."' target=\"_BLANK\"><strong>".__("Buy the Pro add-on now for only $19.95 once off.", "wplivechat")."</strong></a></p>",
2088
+ "chats" => "<h3>".__("Multiple Chats","wplivechat")."</h3><p>".__("With the Pro add-on of WP Live Chat Support, you can", "wplivechat")." <a href='http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=morechats1_pointer' title='".__("accept and handle multiple chats.", "wplivechat")."' target=\"_BLANK\">".__("accept and handle multiple chats.", "wplivechat")."</a><br /><br /><a href='http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=morechats2_pointer' title='".__("Buy the Pro add-on now for only $19.95 once off.", "wplivechat")."' target=\"_BLANK\"><strong>".__("Buy the Pro add-on now for only $19.95 once off.", "wplivechat")."</strong></a></p>",
2089
+ "agent_info" => "<h3>".__("Add unlimited agents","wplivechat")."</h3><p><a href='http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=unlimited_agents1_pointer' title='".__("Add unlimited agents", "wplivechat")."' target=\"_BLANK\">".__("Add unlimited agents", "wplivechat")."</a> ".__(" with the Pro add-on of WP Live Chat Support","wplivechat")." "."<a href='http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=unlimited_agents2_pointer' target='_BLANK'>".__("for only $19.95 once off.","wplivechat")."</a></p>"
2090
+ );
2091
+
2092
+
2093
+ wp_enqueue_style( 'wp-pointer' );
2094
+ wp_enqueue_script( 'wp-pointer' );
2095
+ wp_register_script('wplc-user-admin-pointer', plugins_url('/js/wplc-admin-pointers.js', __FILE__), array('wp-pointer'));
2096
+ wp_enqueue_script('wplc-user-admin-pointer');
2097
+ wp_localize_script('wplc-user-admin-pointer', 'pointer_localize_strings', $pointer_localize_strings);
2098
+
2099
+ }