Beck_LiveChat - Version 1.4.3

Version Notes

none

Download this release

Release Info

Developer Magento Core Team
Extension Beck_LiveChat
Version 1.4.3
Comparing to
See all releases


Code changes from version 1.4.2 to 1.4.3

app/code/community/Beck/LiveChat/Block/Notification/Toolbar.php CHANGED
@@ -13,7 +13,6 @@ class Beck_LiveChat_Block_Notification_Toolbar extends Mage_Adminhtml_Block_Temp
13
 
14
  public function isShow()
15
  {
16
-
17
- return true;
18
  }
19
  }
13
 
14
  public function isShow()
15
  {
16
+ return $this->getConfigData('livechatconfiguration/general/active') == '0' ? false : true;
 
17
  }
18
  }
app/code/community/Beck/LiveChat/Block/Template.php CHANGED
@@ -9,6 +9,7 @@ class Beck_LiveChat_Block_Template extends Mage_Core_Block_Template
9
  public $imageStyle = '3';
10
  public $unavailablelabel = 'Sorry';
11
  public $titlelabel = 'LIVECHAT';
 
12
 
13
  protected function _construct()
14
  {
@@ -22,6 +23,7 @@ class Beck_LiveChat_Block_Template extends Mage_Core_Block_Template
22
  $this->imageStyle = $this->getConfigData('livechatconfiguration/display/imagestyle');
23
  $this->unavailablelabel = $this->getConfigData('livechatconfiguration/display/unavailablelabel');
24
  $this->titlelabel = $this->getConfigData('livechatconfiguration/display/titlelabel');
 
25
  $session_id = Mage::getSingleton('checkout/session')->getSessionId();
26
  //$session_id = Mage::getSingleton('checkout/session')->getEncryptedSessionId();
27
  $session = Mage::getModel('livechat/session');
@@ -130,7 +132,8 @@ class Beck_LiveChat_Block_Template extends Mage_Core_Block_Template
130
  $session = Mage::getModel('livechat/session');
131
  if ($session->Exist($session_id))
132
  {
133
- $messages = $session->getMessages();
 
134
  return ($messages);
135
  //Zend_Debug::dump($messages);
136
  }
9
  public $imageStyle = '3';
10
  public $unavailablelabel = 'Sorry';
11
  public $titlelabel = 'LIVECHAT';
12
+ public $nb_message_max = 10;
13
 
14
  protected function _construct()
15
  {
23
  $this->imageStyle = $this->getConfigData('livechatconfiguration/display/imagestyle');
24
  $this->unavailablelabel = $this->getConfigData('livechatconfiguration/display/unavailablelabel');
25
  $this->titlelabel = $this->getConfigData('livechatconfiguration/display/titlelabel');
26
+ $this->nb_message_max = $this->getConfigData('livechatconfiguration/general/nbmaxlines');
27
  $session_id = Mage::getSingleton('checkout/session')->getSessionId();
28
  //$session_id = Mage::getSingleton('checkout/session')->getEncryptedSessionId();
29
  $session = Mage::getModel('livechat/session');
132
  $session = Mage::getModel('livechat/session');
133
  if ($session->Exist($session_id))
134
  {
135
+
136
+ $messages = $session->getMessages()->limit($this->nb_message_max);
137
  return ($messages);
138
  //Zend_Debug::dump($messages);
139
  }
app/code/community/Beck/LiveChat/Block/Widget/Sessions.php CHANGED
@@ -18,7 +18,7 @@ class Beck_LiveChat_Block_Widget_Sessions extends Mage_Adminhtml_Block_Widget
18
  protected function _toHtml()
19
  {
20
  $html = parent::_toHtml();
21
- $session = Mage::getSingleton('adminhtml/session');
22
  if ($session->getData('OperatorName') != null)
23
  {
24
  foreach ($this->getSortedChildren() as $name)
@@ -38,7 +38,8 @@ class Beck_LiveChat_Block_Widget_Sessions extends Mage_Adminhtml_Block_Widget
38
  public function AddChatSession(Beck_LiveChat_Model_Session $session)
39
  {
40
  //$block = $this->getLayout()->createBlock('livechat/widget_chat', 'chat_'.$session->getId());
41
- $block = $this->getLayout()->createBlock('livechat/widget_chat', 'chat_'.rand(1, 9999));
 
42
  $block->SetSession($session);
43
  $this->append($block);
44
  }
18
  protected function _toHtml()
19
  {
20
  $html = parent::_toHtml();
21
+ $session = Mage::getSingleton('livechat/adminSession');
22
  if ($session->getData('OperatorName') != null)
23
  {
24
  foreach ($this->getSortedChildren() as $name)
38
  public function AddChatSession(Beck_LiveChat_Model_Session $session)
39
  {
40
  //$block = $this->getLayout()->createBlock('livechat/widget_chat', 'chat_'.$session->getId());
41
+ ///Zend_Debug::dump('AddChatSession '. $session->getId());
42
+ $block = $this->getLayout()->createBlock('livechat/widget_chat', 'chat_'.$session->getId());
43
  $block->SetSession($session);
44
  $this->append($block);
45
  }
app/code/community/Beck/LiveChat/Model/Mysql4/Archives/Message/Collection.php CHANGED
@@ -7,4 +7,26 @@ class Beck_LiveChat_Model_Mysql4_Archives_Message_Collection extends Mage_Core_M
7
  parent::_construct();
8
  $this->_init('livechat/archives_message');
9
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  }
7
  parent::_construct();
8
  $this->_init('livechat/archives_message');
9
  }
10
+
11
+ public function limit($limit)
12
+ {
13
+ $limit = (int) $limit;
14
+ if ($limit > 0)
15
+ {
16
+ if ($this->count() > $limit)
17
+ {
18
+ $i = 0;
19
+ $i_max = $this->count() - $limit;
20
+ foreach ($this->_items as $key => $val)
21
+ {
22
+ if ($i < $i_max)
23
+ {
24
+ $this->removeItemByKey($key);
25
+ }
26
+ $i++;
27
+ }
28
+ }
29
+ }
30
+ return ($this);
31
+ }
32
  }
app/code/community/Beck/LiveChat/Model/Mysql4/Message/Collection.php CHANGED
@@ -7,4 +7,26 @@ class Beck_LiveChat_Model_Mysql4_Message_Collection extends Mage_Core_Model_Mysq
7
  parent::_construct();
8
  $this->_init('livechat/message');
9
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  }
7
  parent::_construct();
8
  $this->_init('livechat/message');
9
  }
10
+
11
+ public function limit($limit)
12
+ {
13
+ $limit = (int) $limit;
14
+ if ($limit > 0)
15
+ {
16
+ if ($this->count() > $limit)
17
+ {
18
+ $i = 0;
19
+ $i_max = $this->count() - $limit;
20
+ foreach ($this->_items as $key => $val)
21
+ {
22
+ if ($i < $i_max)
23
+ {
24
+ $this->removeItemByKey($key);
25
+ }
26
+ $i++;
27
+ }
28
+ }
29
+ }
30
+ return ($this);
31
+ }
32
  }
app/code/community/Beck/LiveChat/controllers/ChatController.php CHANGED
@@ -7,7 +7,7 @@ class Beck_LiveChat_ChatController extends Mage_Core_Controller_Front_Action
7
  $store_id = $this->getRequest()->getParam('store_id', 0);
8
  $session_id = Mage::getSingleton('checkout/session')->getSessionId();
9
  //$session_id = Mage::getSingleton('checkout/session')->getEncryptedSessionId();
10
- $message = trim($this->getRequest()->getParam('message', ''));
11
  //$message = trim($message);
12
  if ($message != '')
13
  {
@@ -61,7 +61,8 @@ class Beck_LiveChat_ChatController extends Mage_Core_Controller_Front_Action
61
  $session = Mage::getModel('livechat/session');
62
  if ($session->Exist($session_id))
63
  {
64
- $messages = $session->getMessages();
 
65
  foreach ($messages as $message)
66
  {
67
  echo $message->RenderLine();
7
  $store_id = $this->getRequest()->getParam('store_id', 0);
8
  $session_id = Mage::getSingleton('checkout/session')->getSessionId();
9
  //$session_id = Mage::getSingleton('checkout/session')->getEncryptedSessionId();
10
+ $message = htmlentities(trim($this->getRequest()->getParam('message', '')));
11
  //$message = trim($message);
12
  if ($message != '')
13
  {
61
  $session = Mage::getModel('livechat/session');
62
  if ($session->Exist($session_id))
63
  {
64
+ $nb_message_max = Mage::getStoreConfig('livechatconfiguration/general/nbmaxlines', 0);
65
+ $messages = $session->getMessages()->limit($nb_message_max);
66
  foreach ($messages as $message)
67
  {
68
  echo $message->RenderLine();
app/code/community/Beck/LiveChat/controllers/Session/ListController.php CHANGED
@@ -20,7 +20,7 @@ class Beck_LiveChat_Session_ListController extends Mage_Adminhtml_Controller_Act
20
  {
21
  $list[] = $customer->getSession_id();
22
  }
23
- $session = Mage::getSingleton('adminhtml/session');
24
  $session->setData('customerOnline', $list);
25
  }
26
 
20
  {
21
  $list[] = $customer->getSession_id();
22
  }
23
+ $session = Mage::getSingleton('livechat/adminSession');
24
  $session->setData('customerOnline', $list);
25
  }
26
 
app/code/community/Beck/LiveChat/controllers/Session/LiveController.php CHANGED
@@ -80,7 +80,7 @@ class Beck_LiveChat_Session_LiveController extends Mage_Adminhtml_Controller_Act
80
  $session = Mage::getModel('livechat/session')->load($post['sessionId']);
81
  if ($session->getClose() == '0')
82
  {
83
- $adminsession = Mage::getSingleton('adminhtml/session');
84
  $name = $adminsession->getData('OperatorName');
85
  $message = $session->saveMessage($name, $message);
86
  echo $message->renderLine();
80
  $session = Mage::getModel('livechat/session')->load($post['sessionId']);
81
  if ($session->getClose() == '0')
82
  {
83
+ $adminsession = Mage::getSingleton('livechat/adminSession');
84
  $name = $adminsession->getData('OperatorName');
85
  $message = $session->saveMessage($name, $message);
86
  echo $message->renderLine();
app/code/community/Beck/LiveChat/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Beck_LiveChat>
5
- <version>1.4.2</version>
6
  </Beck_LiveChat>
7
  </modules>
8
  <admin>
@@ -227,6 +227,7 @@
227
  <refreshdecay>1</refreshdecay>
228
  <adminrefreshrate>300</adminrefreshrate>
229
  <sessioncreation>0</sessioncreation>
 
230
  </general>
231
  <display>
232
  <titlelabel>LIVECHAT</titlelabel>
2
  <config>
3
  <modules>
4
  <Beck_LiveChat>
5
+ <version>1.4.3</version>
6
  </Beck_LiveChat>
7
  </modules>
8
  <admin>
227
  <refreshdecay>1</refreshdecay>
228
  <adminrefreshrate>300</adminrefreshrate>
229
  <sessioncreation>0</sessioncreation>
230
+ <nbmaxlines>15</nbmaxlines>
231
  </general>
232
  <display>
233
  <titlelabel>LIVECHAT</titlelabel>
app/code/community/Beck/LiveChat/etc/system.xml CHANGED
@@ -69,6 +69,15 @@
69
  <show_in_website>0</show_in_website>
70
  <show_in_store>0</show_in_store>
71
  </sessioncreation>
 
 
 
 
 
 
 
 
 
72
  </fields>
73
  </general>
74
  <display translate="label" module="livechat">
@@ -260,7 +269,7 @@
260
  </allowcustomerreopen>
261
  </fields>
262
  </oncustomersendmessage>
263
- <onsessionexpire>
264
  <label>When the session expire</label>
265
  <frontend_type>text</frontend_type>
266
  <sort_order>40</sort_order>
69
  <show_in_website>0</show_in_website>
70
  <show_in_store>0</show_in_store>
71
  </sessioncreation>
72
+ <nbmaxlines translate="label comment" module="livechat">
73
+ <label>Maximum number of lines displayed</label>
74
+ <frontend_type>text</frontend_type>
75
+ <sort_order>6</sort_order>
76
+ <show_in_default>1</show_in_default>
77
+ <show_in_website>0</show_in_website>
78
+ <show_in_store>0</show_in_store>
79
+ <comment>Set 0 to display all lines</comment>
80
+ </nbmaxlines>
81
  </fields>
82
  </general>
83
  <display translate="label" module="livechat">
269
  </allowcustomerreopen>
270
  </fields>
271
  </oncustomersendmessage>
272
+ <onsessionexpire translate="label comment" module="livechat">
273
  <label>When the session expire</label>
274
  <frontend_type>text</frontend_type>
275
  <sort_order>40</sort_order>
app/design/adminhtml/default/default/template/livechat/widget/chatlive.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php if ($this->_session->getId() > 0): ?>
2
  <div class="base-livechat livechat-box mini-livechat left" id="chat_<?php echo $this->_session->getId(); ?>" style="display: block;">
3
- <span style="float: right" class="close" onclick="javascript:OperatorCloseSession_<?php echo $this->_session->getId(); ?>();"></span><div class="head"><h4>Session #<?php echo $this->_session->getId(); ?></h4></div>
4
  <div class="content">
5
  <p id="livechat_messages_<?php echo $this->_session->getId(); ?>"></p>
6
  </div>
1
  <?php if ($this->_session->getId() > 0): ?>
2
  <div class="base-livechat livechat-box mini-livechat left" id="chat_<?php echo $this->_session->getId(); ?>" style="display: block;">
3
+ <span style="float: right" class="close" onclick="javascript:OperatorCloseSession_<?php echo $this->_session->getId(); ?>();"></span><div class="head"><h4><?php echo $this->__('Session'); ?> #<?php echo $this->_session->getId(); ?></h4></div>
4
  <div class="content">
5
  <p id="livechat_messages_<?php echo $this->_session->getId(); ?>"></p>
6
  </div>
app/design/adminhtml/default/default/template/livechat/widget/sessionslive.phtml CHANGED
@@ -1,7 +1,7 @@
1
  <div class="content-header">
2
  <table cellspacing="0">
3
  <tr>
4
- <td style="width:50%;"><h3 class="icon-head head-livechat">Sessions Live</h3></td>
5
  <td class="a-right">
6
  <?php
7
  $session = Mage::getSingleton('livechat/adminSession');
1
  <div class="content-header">
2
  <table cellspacing="0">
3
  <tr>
4
+ <td style="width:50%;"><h3 class="icon-head head-livechat"><?php echo $this->__('Sessions Live'); ?></h3></td>
5
  <td class="a-right">
6
  <?php
7
  $session = Mage::getSingleton('livechat/adminSession');
app/etc/modules/ZBeck_LiveChat.xml CHANGED
@@ -5,7 +5,7 @@
5
  <active>true</active>
6
  <codePool>community</codePool>
7
  <depends />
8
- <version>1.4.2</version>
9
  </Beck_LiveChat>
10
  </modules>
11
  </config>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
  <depends />
8
+ <version>1.4.3</version>
9
  </Beck_LiveChat>
10
  </modules>
11
  </config>
app/locale/fr_FR/Beck_LiveChat.csv CHANGED
@@ -108,4 +108,11 @@
108
  "Archived session are definitevely closed. If not chat sessions are only closed.","Les sessions archiv&eacute;es sont d&eacute;finitivement ferm&eacute;es. Si non les sessions sont simplement ferm&eacute;e."
109
  "Total of %d record(s) were successfully disconnected","Un total de %d enregistrement(s) ont &eacute;t&eacute; d&eacute;connect&eacute;(s) avec succ&egrave;s"
110
  "Disconnect","D&eacute;connecter"
111
- "Update existing sessions","Mettre à jour les sessions existantes"
 
 
 
 
 
 
 
108
  "Archived session are definitevely closed. If not chat sessions are only closed.","Les sessions archiv&eacute;es sont d&eacute;finitivement ferm&eacute;es. Si non les sessions sont simplement ferm&eacute;e."
109
  "Total of %d record(s) were successfully disconnected","Un total de %d enregistrement(s) ont &eacute;t&eacute; d&eacute;connect&eacute;(s) avec succ&egrave;s"
110
  "Disconnect","D&eacute;connecter"
111
+ "Update existing sessions","Mettre à jour les sessions existantes"
112
+ "Maximum number of lines displayed","Nombre maximum de lignes affich&eacute;es"
113
+ "Set 0 to display all lines","Mettez 0 pour afficher toutes les lignes"
114
+ "When the session expire","Quand la session expire"
115
+ "Archived session are definitevely closed. If not chat sessions are only closed.","Les sessions archiv&eacute;es sont d&eacute;finitivement ferm&eacute;es. Sinon elles sont simplement ferm&eacute;es."
116
+ "Archivate the session","Archiver la session"
117
+ "Session","Session"
118
+ "Sessions Live","Sessions en cours"
app/locale/lt_LT/Beck_LiveChat.csv ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Configuration","Nustatymai"
2
+ "General options","Pagrindiniai nustatymai"
3
+ "Is enabled","Aktyvus"
4
+ "Display options","Atvaizdavimo nustatymai"
5
+ "Chat label","Pokalbių antraštė"
6
+ "LiveChat configuration","LiveChat nustatymai"
7
+ "LiveChat operators","LiveChat operatoriai"
8
+ "Operators","Operatorius"
9
+ "Operators list","Operatorių sąrašas"
10
+ "Create new operator","Sukurti naują operatorių"
11
+ "Operator's data","Operatoriaus duomenys"
12
+ "Password","Slaptažodis"
13
+ "Name","Vardas"
14
+ "Enabled","Įjungtas"
15
+ "Disabled","Išjungtas"
16
+ "Save","Saugoti"
17
+ "Create","Sukurti"
18
+ "Operator %s has been successfully created.","Operatorius %s sukurtas sėkmingai."
19
+ "Operator %s has been successfully modified.","Operatorius %s atnaujintas sėkmingai."
20
+ "Operator %s has been successfully deleted.","Operatorius %s pašalintas sėkmingai."
21
+ "Edit operator","Atnaujinti operatorių"
22
+ "disabled","Išjungtas"
23
+ "Send","Siųsti"
24
+ "Chat refresh frequency","Pokalbio atnaujinimo dažnumas (vartotojui)"
25
+ "Chat refresh decay","Pokalbio atnaujinimo uždelsimas"
26
+ "Image style","Paveiksliukas"
27
+ "Get chat list","Pokalbių sąrašas"
28
+ "Get chat messages messages","Pokalbių žinutės"
29
+ "Send message to customer","Siųsti žinutę vertotojui"
30
+ "Operator disconnection","Operatorius atsijungė"
31
+ "Operator connection","Operatorius prisijungė"
32
+ "Title label","Pokalbių bloko antraštė"
33
+ "Unavailable message","Pranešimas, kai pokalbis negalimas"
34
+ "Default customer name","Numatytasis vartotojo vardas"
35
+ "Get new messages","Gauti naujas žinutes"
36
+ "Get new sessions","Gauti naujas sesijas"
37
+ "System name","Sistemos pavadinimas"
38
+ "System wait message","Sisteminis pranešimas vartotojui - prašome palaukti"
39
+ "Customers chat list","Vartotojo pokalbių sąrašas"
40
+ "Customer name","Vartotojo vardas"
41
+ "Started at","Pradėta"
42
+ "Dispatched to","Kam priskirta"
43
+ "Store","Parduotuvė"
44
+ "State","Statusas"
45
+ "Not dispatched","Nepriskirta"
46
+ "Closed","Uždaryta"
47
+ "Close","Uždaryti"
48
+ "Open","Atidaryta"
49
+ "Are you sure ?","Ar esate tikras(a)?"
50
+ "Total of %d record(s) were successfully deleted","Viso %d įrašai buvo pašalinti."
51
+ "Please select chat(s)","Pasirinkite pokalbį"
52
+ "Operators list","Operatorių sąrašas"
53
+ "Status","Statusas"
54
+ "Online","Prisijungęs"
55
+ "Disconnected","Atsijungęs"
56
+ "Autor","Autorius"
57
+ "Message","Pranešimas"
58
+ "Placed at","Sukurta"
59
+ "Please select message(s)","Prašome pasirinkti pranešimą"
60
+ "Delete","Šalinti"
61
+ "-- Session terminated --","-- Sesija nutraukta --"
62
+ "Total of %d record(s) were successfully closed","Viso %d įrašai buvo uždaryti"
63
+ "There is no chat available for operator %s","Operatoriui %s nėra pokalbių"
64
+ "This session is closed, you cannot send message.","Ši sesija uždaryta, jūs negalite siųsti pranešimų"
65
+ "Access denied for %s","Priėjimas draudžiamas: %s"
66
+ "Operator access","Operatoraus prisijungimas"
67
+ "Operator %s is now disconnected and no longer appear online.","Operatorius %s yra atsijungęs ir daugiau nepasiekiamas"
68
+ "Operator %s has just been created configure the store allowed for him <a href=\'%s\'>here</a>.","Operatorius %s sukurtas ir jam priskirta parduotuvė <a href=\'%s\'>čia</a>."
69
+ "Admin refresh rate","Atnaujinimo dažnumas (administratoriui)"
70
+ "Behaviour","Elgsena"
71
+ "On Operator disconnect","Operatoriui atsijungus"
72
+ "On chat session close","Pokalbių sesijai užsidarius"
73
+ "On customer connexion","Vartotojui prisijungus savo vardu"
74
+ "Close dispatched chat session","Uždaryti priskirtas pokalbių sesijas"
75
+ "Undispatch non-closed chat session","Atlaisvinti neuždarytas pokalbių sesijas"
76
+ "Send a close message","Siųsti pranešimą apie uždarymą"
77
+ "Allow to reopen a closed chat session","Leisti atidaryti uždarytų pokalbių sesijas"
78
+ "Replace the chat session creator name","Pakeisti pokalbių sesijos autoriaus vardą"
79
+ "Replace all customer's messages autor name","Pakeisti vardą visose vartotojo žinutėse"
80
+ "When the customer sends a message","Kai vartotojas išsiunčia pranešimą"
81
+ "System message when session is automatically created","Sisteminis pranešimas, kai sesija sukuriama automatiškai"
82
+ "Chat session creation","Pokalbių sesijų kūrimas"
83
+ "When customer send his first message","Kai vartotojas išsiunčia pirmą pranešimą"
84
+ "Automatically create a new chatsession for everyone","Visiems automatiškai"
85
+ "Automatically create a new chat session for every customer logged in","Kiekvienam vartotojui prisijungus"
86
+ "Customer url","Vartotojo URL"
87
+ "When the session expire","Sesijos laikui pasibaigus"
88
+ "Archived session are definitevely closed. If not chat sessions are only closed.","Taip: suarchyvuotos sesijos uždaromos galutinai. Ne: pokalbių sesijos yra tiktais uždaromos"
89
+ "Archivate the session","Archyvuoti sesijas"
90
+ "If the chat session is not archived the customer can reactivate it by sending a new message.","Jei pokalbių sesijos nėra archyvuojamos, vartotojas siųsdamas naują pranešimą gali jas vėl aktyvuoti."
91
+ "The chat session is closed, so no operator can get it.","Jei pokalbių sesija uždaryta - operatorius negali jos gauti."
92
+ "The chat session is released, so another operator can get it.","Jei pokalbių sesija atsilaisvino - kitas operatorius gali pratęsti pokalbį."
93
+ "Display LiveChat box in front office.","Rodyti LiveChat bloką vartotojo aplinkoje."
94
+ "Message refresh interval for customer (in seconds).","Pranešimų atnaujinimo intervalas vartotojui (sek.)"
95
+ "Admin operator page refresh rate (in seconds).","Pranešimų atnaujinimo intervalas administratoriaus aplinkoje (sek.)"
96
+ "Message which is displaying when no operator are online.","Kai operatorius nėra prisijungęs - rodomas šis pranešimas."
97
+ "Name of the customer when not logged in.","Vartotojo vardas, kai jis nėra prisijungęs."
98
+ "Sender name of the automatic messages.","Automatinių pranešimų siuntėjo vardas."
99
+ "Message sent when a customer has just started a chat session.","Vartotojui pradėjus pokalbį siunčiamas pranešimas."
100
+ "Message sent when a chat has been automatically created.","Pranešimas, kai pokalbio sesija sukuriama automatiškai."
101
+ "Log out","Atsijungti"
102
+ "Log in","Prisijungti"
103
+ "Order placed","Užsakymas"
104
+ "View archived sessions","Žiūrėti suarchyvuotas sesijas"
105
+ "View live sessions","Žiūrėti aktyvias sesijas"
106
+ "Operator name","Operatoriaus vardas"
107
+ "Operator key","Operatoriaus raktas"
108
+ "Get allowed stores","Gauti leidžiamas parduotuves"
109
+ "Close a session","Uždaryti sesiją"
110
+ "Update existing sessions","Atnaujinti egzistuojančias sesijas"
111
+ "Maximum number of lines displayed","Maximum number of lines displayed"
112
+ "Set 0 to display all lines","Set 0 to display all lines"
113
+ "When the session expire","When the session expire"
114
+ "Archived session are definitevely closed. If not chat sessions are only closed.","Archived session are definitevely closed. If not chat sessions are only closed."
115
+ "Archivate the session","Archivate the session"
116
+ "Sessions Live","Aktyvios sesijos"
117
+ "Session","Sesija"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Beck_LiveChat</name>
4
- <version>1.4.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -13,9 +13,9 @@ Operator can use the windows software LiveChatOperator wich can stay in tray ico
13
  All is free.</description>
14
  <notes>none</notes>
15
  <authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
16
- <date>2009-02-27</date>
17
- <time>16:11:19</time>
18
- <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="livechat"><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="close.png" hash="453440e151c84241d7e96fbef87e3ce4"/><file name="close_hover.png" hash="504658759baedc0fae5461fc25d1258d"/></dir></dir><dir name="livechat"><file name="livechat.css" hash="dc9579be4ca477338f78cb63d63dc5f4"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="b4e4554301897980dfb271a5f33549b4"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="b862ff0fb7c32dacd5e0489f271d43ac"/></dir></dir></dir><dir name="modern"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="f0595e7964bdae458d1c7fb4a0e71060"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="5d6de5587cb6edace482aa9ceb9d5363"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="4cbf4e1c4552722bbec1828ed58dec76"/></dir><dir name="template"><dir name="livechat"><file name="operator.phtml" hash="7013c5fe4dbd2cba0fe06336dba4c7a7"/><file name="session.phtml" hash="bed057fb47975a3a7a09187b82c76483"/><dir name="notification"><file name="toolbar.phtml" hash="17cf821d5949f14a61fcd5e8b36e5038"/></dir><dir name="session"><file name="detail.phtml" hash="278dbb25de95e687d02b291a67261518"/></dir><dir name="widget"><file name="chatlive.phtml" hash="479a2c65d745884146b3dc60c9ddbafe"/><file name="sessionslive.phtml" hash="f7f7fc200cb5f68cb8bbfe074a5a0934"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="7a80c2f0893481af99d2acabf14de075"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir><dir name="modern"><dir name="layout"><file name="livechat.xml" hash="37e80dc38dd51095f830c1ca6349cbe5"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Beck"><dir name="LiveChat"><dir name="Block"><file name="Operator.php" hash="359b81c070d1e6599fec6186adbb76cb"/><file name="Session.php" hash="4ef2dd4fbfc349b31acc707882860d9c"/><file name="Template.php" hash="5725063612000003e2eb4bad59668f30"/><dir name="Notification"><file name="Toolbar.php" hash="cf23737586bdb644a8f49cd1806759bc"/></dir><dir name="Operator"><file name="Edit.php" hash="540a5246fcff5b1a8e821445e07ebd12"/><file name="List.php" hash="e4f392b7522aa002744abcb33fa5ce70"/><dir name="Edit"><file name="Form.php" hash="e97d951a63ed996560cb1526e23cb358"/></dir></dir><dir name="Session"><file name="Detail.php" hash="821d5c92c500cafa72ed50ba29eab352"/><file name="Grid.php" hash="b2116c31cbd297ed046296083bbf2fcf"/><dir name="Detail"><file name="Grid.php" hash="15786bd48ac663b9e9292d0d27fe8a30"/></dir></dir><dir name="Widget"><file name="Chat.php" hash="926f6fc13b7490d2f97035f1276078e7"/><file name="Sessions.php" hash="11a90eea0577b5f5481e29f5c2aad013"/><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Dispatched.php" hash="21e79c6d3662fd71737f1f6021509883"/><file name="Online.php" hash="e16ef426e2d329986774670c75188901"/><file name="State.php" hash="4efb918376b7b23ec182ad7d1c981ec9"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ChatController.php" hash="6d1a7f3ad7807c0a6ef9057bf5aa13e9"/><file name="OperatorController.php" hash="68e72482a399d247bd8972032c0ea797"/><file name="TestController.php" hash="74a83761b01601c438554d3e5634451e"/><dir name="Operator"><file name="ListController.php" hash="6e82400d65838594f0f139d3884fd75f"/></dir><dir name="Session"><file name="ListController.php" hash="9b2d030b3b3979ca10d8fb1e72f8bfad"/><file name="LiveController.php" hash="3d98c3d90cb66f6d57b7f9b443e1d2f2"/></dir></dir><dir name="etc"><file name="api.xml" hash="557b013a006d6cb0700b9bd80be41ace"/><file name="config.xml" hash="c1cb8ae08c113e614b21b479335f11e6"/><file name="system.xml" hash="8366a42b94c616800d7d670a20cf3cac"/></dir><dir name="Helper"><file name="Data.php" hash="9b8122364bcd6d142aaf2221229fb79e"/></dir><dir name="Model"><file name="AdminSession.php" hash="c6edda40339ae92777ff627d56fd69f7"/><file name="Api.php" hash="34cc994d4c754ea1139dcfcc48450caa"/><file name="Event.php" hash="1f9664d6b3455d4bf7e34aa2500163d1"/><file name="Message.php" hash="14b9b7ffef2638e2178ed449945f2189"/><file name="Operator.php" hash="0a79de761f0f1b8b2cfb5318529c6c16"/><file name="Session.php" hash="38e464f28d70d3993d6797cd2a4ed77f"/><dir name="Archives"><file name="Message.php" hash="77405730511ada4e8f973189cc04a70a"/><file name="Session.php" hash="e7e342df2a427a31c6d0392ae230f084"/></dir><dir name="Mysql4"><file name="Message.php" hash="15f54ff4ac2e42d499a465ba02f54545"/><file name="Operator.php" hash="183d4556a4adb362080db8b29b3d363b"/><file name="Session.php" hash="23470233413431cb15fd64d6f6a9e57a"/><dir name="Archives"><file name="Message.php" hash="08a24b0294485713fa948a6bdc321d95"/><file name="Session.php" hash="1e9179810d16098a15e318aec9fecb7d"/><dir name="Message"><file name="Collection.php" hash="40081589afffca0b6045508b3d41dbc1"/></dir><dir name="Session"><file name="Collection.php" hash="2f25d488fde87349bfa0e39faa7b6a11"/></dir></dir><dir name="Message"><file name="Collection.php" hash="bb9831d35976036acecaf600ba077aed"/></dir><dir name="Operator"><file name="Collection.php" hash="1f85ba68d6c707589b7650fc3fbf1929"/></dir><dir name="Session"><file name="Collection.php" hash="4409f4ba36832a8c0ff8e186b4945de8"/></dir></dir><dir name="Session"><file name="List.php" hash="c97c0507a2ead10e3df948a985f94aae"/></dir><dir name="Source"><file name="Images.php" hash="a78214110d992b5f1267360fac8ffb10"/><file name="Online.php" hash="16a3933b4c4801ce20c714635ea52a47"/><file name="SessionCreation.php" hash="bf20fc0949be23a892b5744e9a68ed4b"/></dir></dir><dir name="sql"><dir name="livechat_setup"><file name="mysql4-install-1.0.0.php" hash="5a967b18d8bc56b345cd3870d1c9ebb7"/><file name="mysql4-upgrade-1.0.0-1.2.4.php" hash="852891c2299a597fe671ca3e06101f82"/><file name="mysql4-upgrade-1.2.4-1.2.9.php" hash="573b71d02e8690e8c4903cf0447a928e"/><file name="mysql4-upgrade-1.2.9-1.3.0.php" hash="d487ca45bb75f68b8f813d4bd3c04ca7"/><file name="mysql4-upgrade-1.3.0-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.1-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.3-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.4-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Beck_LiveChat.csv" hash="401cc41673b4f4986dc0c6d9bebc6437"/></dir><dir name="nl_NL"><file name="Beck_LiveChat.csv" hash="8e7fdb53f6bd85f5a5b5a3a2bb0920e7"/></dir></target><target name="mage"><dir name="js"><dir name="livechat"><file name="js.js" hash="e2e673b8f54faa02279c669e5db595fa"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZBeck_LiveChat.xml" hash="c480e71cc71a88ff586c3ca525f5d0b6"/></dir></target></contents>
19
  <compatible/>
20
  <dependencies/>
21
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Beck_LiveChat</name>
4
+ <version>1.4.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
13
  All is free.</description>
14
  <notes>none</notes>
15
  <authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
16
+ <date>2009-03-06</date>
17
+ <time>09:44:50</time>
18
+ <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="livechat"><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="close.png" hash="453440e151c84241d7e96fbef87e3ce4"/><file name="close_hover.png" hash="504658759baedc0fae5461fc25d1258d"/></dir></dir><dir name="livechat"><file name="livechat.css" hash="dc9579be4ca477338f78cb63d63dc5f4"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="b4e4554301897980dfb271a5f33549b4"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="b862ff0fb7c32dacd5e0489f271d43ac"/></dir></dir></dir><dir name="modern"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="f0595e7964bdae458d1c7fb4a0e71060"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="5d6de5587cb6edace482aa9ceb9d5363"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="4cbf4e1c4552722bbec1828ed58dec76"/></dir><dir name="template"><dir name="livechat"><file name="operator.phtml" hash="7013c5fe4dbd2cba0fe06336dba4c7a7"/><file name="session.phtml" hash="bed057fb47975a3a7a09187b82c76483"/><dir name="notification"><file name="toolbar.phtml" hash="17cf821d5949f14a61fcd5e8b36e5038"/></dir><dir name="session"><file name="detail.phtml" hash="278dbb25de95e687d02b291a67261518"/></dir><dir name="widget"><file name="chatlive.phtml" hash="309a7cfb21f706f63f90d937112d9d26"/><file name="sessionslive.phtml" hash="692226dc8625b3765030d6b48711cea4"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="7a80c2f0893481af99d2acabf14de075"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir><dir name="modern"><dir name="layout"><file name="livechat.xml" hash="37e80dc38dd51095f830c1ca6349cbe5"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Beck"><dir name="LiveChat"><dir name="Block"><file name="Operator.php" hash="359b81c070d1e6599fec6186adbb76cb"/><file name="Session.php" hash="4ef2dd4fbfc349b31acc707882860d9c"/><file name="Template.php" hash="74808f3aaa7fa64562fdd5e02340548e"/><dir name="Notification"><file name="Toolbar.php" hash="521b10438c36d23838c334c22d760210"/></dir><dir name="Operator"><file name="Edit.php" hash="540a5246fcff5b1a8e821445e07ebd12"/><file name="List.php" hash="e4f392b7522aa002744abcb33fa5ce70"/><dir name="Edit"><file name="Form.php" hash="e97d951a63ed996560cb1526e23cb358"/></dir></dir><dir name="Session"><file name="Detail.php" hash="821d5c92c500cafa72ed50ba29eab352"/><file name="Grid.php" hash="b2116c31cbd297ed046296083bbf2fcf"/><dir name="Detail"><file name="Grid.php" hash="15786bd48ac663b9e9292d0d27fe8a30"/></dir></dir><dir name="Widget"><file name="Chat.php" hash="926f6fc13b7490d2f97035f1276078e7"/><file name="Sessions.php" hash="97e5f2686cc6f2762731b1fa536d91dc"/><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Dispatched.php" hash="21e79c6d3662fd71737f1f6021509883"/><file name="Online.php" hash="e16ef426e2d329986774670c75188901"/><file name="State.php" hash="4efb918376b7b23ec182ad7d1c981ec9"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ChatController.php" hash="27c37bd36a31fc9bf9be59e24cb7c042"/><file name="OperatorController.php" hash="68e72482a399d247bd8972032c0ea797"/><file name="TestController.php" hash="74a83761b01601c438554d3e5634451e"/><dir name="Operator"><file name="ListController.php" hash="6e82400d65838594f0f139d3884fd75f"/></dir><dir name="Session"><file name="ListController.php" hash="174608c0fb4446193f4ad2dfbbd127f9"/><file name="LiveController.php" hash="d3642bbfca2c6e54bd902187c46c4276"/></dir></dir><dir name="etc"><file name="api.xml" hash="557b013a006d6cb0700b9bd80be41ace"/><file name="config.xml" hash="71b64444e5902133722f7e0f26f93e98"/><file name="system.xml" hash="20626e7439b31ae2c4b6fffdd51cb45c"/></dir><dir name="Helper"><file name="Data.php" hash="9b8122364bcd6d142aaf2221229fb79e"/></dir><dir name="Model"><file name="AdminSession.php" hash="c6edda40339ae92777ff627d56fd69f7"/><file name="Api.php" hash="34cc994d4c754ea1139dcfcc48450caa"/><file name="Event.php" hash="1f9664d6b3455d4bf7e34aa2500163d1"/><file name="Message.php" hash="14b9b7ffef2638e2178ed449945f2189"/><file name="Operator.php" hash="0a79de761f0f1b8b2cfb5318529c6c16"/><file name="Session.php" hash="38e464f28d70d3993d6797cd2a4ed77f"/><dir name="Archives"><file name="Message.php" hash="77405730511ada4e8f973189cc04a70a"/><file name="Session.php" hash="e7e342df2a427a31c6d0392ae230f084"/></dir><dir name="Mysql4"><file name="Message.php" hash="15f54ff4ac2e42d499a465ba02f54545"/><file name="Operator.php" hash="183d4556a4adb362080db8b29b3d363b"/><file name="Session.php" hash="23470233413431cb15fd64d6f6a9e57a"/><dir name="Archives"><file name="Message.php" hash="08a24b0294485713fa948a6bdc321d95"/><file name="Session.php" hash="1e9179810d16098a15e318aec9fecb7d"/><dir name="Message"><file name="Collection.php" hash="312e6198632cc2cbd4fc7b5ace253383"/></dir><dir name="Session"><file name="Collection.php" hash="2f25d488fde87349bfa0e39faa7b6a11"/></dir></dir><dir name="Message"><file name="Collection.php" hash="fe88b353a34e33a8c1dd3ff7fb31dcd4"/></dir><dir name="Operator"><file name="Collection.php" hash="1f85ba68d6c707589b7650fc3fbf1929"/></dir><dir name="Session"><file name="Collection.php" hash="4409f4ba36832a8c0ff8e186b4945de8"/></dir></dir><dir name="Session"><file name="List.php" hash="c97c0507a2ead10e3df948a985f94aae"/></dir><dir name="Source"><file name="Images.php" hash="a78214110d992b5f1267360fac8ffb10"/><file name="Online.php" hash="16a3933b4c4801ce20c714635ea52a47"/><file name="SessionCreation.php" hash="bf20fc0949be23a892b5744e9a68ed4b"/></dir></dir><dir name="sql"><dir name="livechat_setup"><file name="mysql4-install-1.0.0.php" hash="5a967b18d8bc56b345cd3870d1c9ebb7"/><file name="mysql4-upgrade-1.0.0-1.2.4.php" hash="852891c2299a597fe671ca3e06101f82"/><file name="mysql4-upgrade-1.2.4-1.2.9.php" hash="573b71d02e8690e8c4903cf0447a928e"/><file name="mysql4-upgrade-1.2.9-1.3.0.php" hash="d487ca45bb75f68b8f813d4bd3c04ca7"/><file name="mysql4-upgrade-1.3.0-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.1-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.3-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.4-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Beck_LiveChat.csv" hash="04a906a9ecd1ae1f715dbb6c91257f68"/></dir><dir name="lt_LT"><file name="Beck_LiveChat.csv" hash="4e66f8f572512521b65a4a4346c82a81"/></dir><dir name="nl_NL"><file name="Beck_LiveChat.csv" hash="8e7fdb53f6bd85f5a5b5a3a2bb0920e7"/></dir></target><target name="mage"><dir name="js"><dir name="livechat"><file name="js.js" hash="e2e673b8f54faa02279c669e5db595fa"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZBeck_LiveChat.xml" hash="6807053f7930a2f31fca77cc3e29b6d9"/></dir></target></contents>
19
  <compatible/>
20
  <dependencies/>
21
  </package>