Version Description
2014-12-17 - Low Priority
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 4.2.4 |
Comparing to | |
See all releases |
Code changes from version 4.2.3 to 4.2.4
- images/wplc_notification_icon.png +0 -0
- includes/settings_page.php +10 -1
- js/wplc_u.js +12 -11
- languages/wplivechat-en_EN.mo +0 -0
- languages/wplivechat-en_EN.po +673 -519
- languages/wplivechat-nl_NL.mo +0 -0
- languages/wplivechat-nl_NL.po +964 -0
- readme.txt +24 -1
- wp-live-chat-support.php +117 -84
images/wplc_notification_icon.png
ADDED
Binary file
|
includes/settings_page.php
CHANGED
@@ -251,13 +251,22 @@
|
|
251 |
?>/>
|
252 |
<p class="description"><small><?php _e("By checking this, only users that are logged in will be able to chat with you.", "wplivechat") ?></small></p>
|
253 |
</td>
|
254 |
-
</tr>
|
255 |
</table>
|
256 |
|
257 |
</div>
|
258 |
<div id="tabs-3">
|
259 |
<h3><?php _e("Offline Messages",'wplivechat')?></h3>
|
260 |
<table class='form-table' width='700'>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
<tr>
|
262 |
<td width='200' valign='top'>
|
263 |
<?php _e("Email Address","wplivechat")?>:
|
251 |
?>/>
|
252 |
<p class="description"><small><?php _e("By checking this, only users that are logged in will be able to chat with you.", "wplivechat") ?></small></p>
|
253 |
</td>
|
254 |
+
</tr>
|
255 |
</table>
|
256 |
|
257 |
</div>
|
258 |
<div id="tabs-3">
|
259 |
<h3><?php _e("Offline Messages",'wplivechat')?></h3>
|
260 |
<table class='form-table' width='700'>
|
261 |
+
<tr>
|
262 |
+
<td>
|
263 |
+
<?php _e("Do not allow users to send offline messages", "wplivechat") ?>
|
264 |
+
</td>
|
265 |
+
<td>
|
266 |
+
<input type="checkbox" name="wplc_hide_when_offline" value="1" readonly="readonly"/>
|
267 |
+
<p class="description"><small><?php _e("The chat window will be hidden when it is offline. Users will not be able to send offline messages to you", "wplivechat") ?></small></p>
|
268 |
+
</td>
|
269 |
+
</tr>
|
270 |
<tr>
|
271 |
<td width='200' valign='top'>
|
272 |
<?php _e("Email Address","wplivechat")?>:
|
js/wplc_u.js
CHANGED
@@ -16,7 +16,6 @@
|
|
16 |
*/
|
17 |
|
18 |
jQuery(document).ready(function() {
|
19 |
-
|
20 |
var wplc_session_variable = new Date().getTime();
|
21 |
var wplc_cid;
|
22 |
var wplc_check_hide_cookie;
|
@@ -52,20 +51,19 @@ jQuery(document).ready(function() {
|
|
52 |
};
|
53 |
// ajax long polling function
|
54 |
wplc_call_to_server_chat(data);
|
55 |
-
|
56 |
if(wplc_cid !== null && wplc_init_chat_box_check == true){
|
57 |
wplc_init_chat_box(wplc_cid,wplc_chat_status);
|
58 |
}
|
59 |
|
60 |
var wplc_run = true;
|
61 |
-
function wplc_call_to_server_chat(data) {
|
62 |
jQuery.ajax({
|
63 |
url: wplc_ajaxurl,
|
64 |
data:data,
|
65 |
type:"POST",
|
66 |
success: function(response) {
|
67 |
if(response){
|
68 |
-
|
69 |
response = JSON.parse(response);
|
70 |
|
71 |
// set vars and cookies
|
@@ -155,17 +153,18 @@ jQuery(document).ready(function() {
|
|
155 |
} else {
|
156 |
console.log('Uncaught Error.\n' + jqXHR.responseText);
|
157 |
wplc_run = false;
|
158 |
-
}
|
159 |
},
|
160 |
complete: function(response){
|
161 |
-
|
162 |
if (wplc_run) {
|
163 |
setTimeout(function() { wplc_call_to_server_chat(data); }, 1500);
|
164 |
|
165 |
}
|
166 |
},
|
167 |
-
timeout: 120000
|
168 |
});
|
|
|
169 |
};
|
170 |
|
171 |
function wplc_init_chat_box(cid, status){
|
@@ -229,7 +228,7 @@ jQuery(document).ready(function() {
|
|
229 |
|
230 |
|
231 |
//placeholder text fix for IE
|
232 |
-
jQuery('[placeholder]').focus(function() {
|
233 |
var input = jQuery(this);
|
234 |
if (input.val() == input.attr('placeholder')) {
|
235 |
input.val('');
|
@@ -394,9 +393,11 @@ jQuery(document).ready(function() {
|
|
394 |
if (wplc_name.length <= 0) { alert("Please enter your name"); return false; }
|
395 |
if (wplc_email.length <= 0) { alert("Please enter your email address"); return false; }
|
396 |
|
397 |
-
|
398 |
-
|
399 |
-
|
|
|
|
|
400 |
}
|
401 |
jQuery("#wp-live-chat-2").hide();
|
402 |
jQuery("#wp-live-chat-3").show();
|
16 |
*/
|
17 |
|
18 |
jQuery(document).ready(function() {
|
|
|
19 |
var wplc_session_variable = new Date().getTime();
|
20 |
var wplc_cid;
|
21 |
var wplc_check_hide_cookie;
|
51 |
};
|
52 |
// ajax long polling function
|
53 |
wplc_call_to_server_chat(data);
|
|
|
54 |
if(wplc_cid !== null && wplc_init_chat_box_check == true){
|
55 |
wplc_init_chat_box(wplc_cid,wplc_chat_status);
|
56 |
}
|
57 |
|
58 |
var wplc_run = true;
|
59 |
+
function wplc_call_to_server_chat(data) {
|
60 |
jQuery.ajax({
|
61 |
url: wplc_ajaxurl,
|
62 |
data:data,
|
63 |
type:"POST",
|
64 |
success: function(response) {
|
65 |
if(response){
|
66 |
+
// console.log(response);
|
67 |
response = JSON.parse(response);
|
68 |
|
69 |
// set vars and cookies
|
153 |
} else {
|
154 |
console.log('Uncaught Error.\n' + jqXHR.responseText);
|
155 |
wplc_run = false;
|
156 |
+
}
|
157 |
},
|
158 |
complete: function(response){
|
159 |
+
// console.log(wplc_run);
|
160 |
if (wplc_run) {
|
161 |
setTimeout(function() { wplc_call_to_server_chat(data); }, 1500);
|
162 |
|
163 |
}
|
164 |
},
|
165 |
+
timeout: 120000
|
166 |
});
|
167 |
+
|
168 |
};
|
169 |
|
170 |
function wplc_init_chat_box(cid, status){
|
228 |
|
229 |
|
230 |
//placeholder text fix for IE
|
231 |
+
jQuery('#wp-live-chat [placeholder]').focus(function() {
|
232 |
var input = jQuery(this);
|
233 |
if (input.val() == input.attr('placeholder')) {
|
234 |
input.val('');
|
393 |
if (wplc_name.length <= 0) { alert("Please enter your name"); return false; }
|
394 |
if (wplc_email.length <= 0) { alert("Please enter your email address"); return false; }
|
395 |
|
396 |
+
if(jQuery("#wplc_email").attr('wplc_hide') !== "1"){
|
397 |
+
var testEmail = /^[A-Z0-9._%+-]+@([A-Z0-9-]+\.)+[A-Z]{2,4}$/i;
|
398 |
+
if (!testEmail.test(wplc_email)){
|
399 |
+
alert("Please Enter a Valid Email Address"); return false;
|
400 |
+
}
|
401 |
}
|
402 |
jQuery("#wp-live-chat-2").hide();
|
403 |
jQuery("#wp-live-chat-3").show();
|
languages/wplivechat-en_EN.mo
CHANGED
Binary file
|
languages/wplivechat-en_EN.po
CHANGED
@@ -1,930 +1,1084 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplivechat\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.6.
|
12 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
-
"
|
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\\
|
18 |
"live-chat-support-pro\n"
|
19 |
|
20 |
-
#: C:\wamp\www\
|
21 |
-
#: C:\wamp\www\
|
22 |
msgid "Admin has closed and ended the chat"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: C:\wamp\www\
|
26 |
-
#: C:\wamp\www\
|
27 |
msgid "There is No Answer. Please Try Again Later"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: C:\wamp\www\
|
31 |
-
#: C:\wamp\www\
|
32 |
-
#: C:\wamp\www\
|
33 |
msgid "User Data"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: C:\wamp\www\
|
37 |
-
#: C:\wamp\www\
|
38 |
-
#: C:\wamp\www\
|
39 |
-
#: C:\wamp\www\
|
40 |
-
#: C:\wamp\www\
|
41 |
-
#: C:\wamp\www\
|
42 |
-
#: C:\wamp\www\
|
43 |
-
#: C:\wamp\www\
|
44 |
-
#: C:\wamp\www\
|
45 |
msgid "Name"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: C:\wamp\www\
|
49 |
-
#: C:\wamp\www\
|
50 |
-
#: C:\wamp\www\
|
51 |
-
#: C:\wamp\www\
|
52 |
-
#: C:\wamp\www\
|
53 |
-
#: C:\wamp\www\
|
54 |
-
#: C:\wamp\www\
|
55 |
-
#: C:\wamp\www\
|
56 |
msgid "Email"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: C:\wamp\www\
|
60 |
-
#: C:\wamp\www\
|
61 |
-
#: C:\wamp\www\
|
62 |
-
#: C:\wamp\www\
|
63 |
msgid "URL"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: C:\wamp\www\
|
67 |
-
#: C:\wamp\www\
|
68 |
-
#: C:\wamp\www\
|
69 |
-
#: C:\wamp\www\
|
70 |
msgid "Status"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\wamp\www\
|
74 |
-
#: C:\wamp\www\
|
75 |
-
#: C:\wamp\www\
|
76 |
-
#: C:\wamp\www\
|
77 |
msgid "Action"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: C:\wamp\www\
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
msgid "No chat sessions available at the moment"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: C:\wamp\www\
|
86 |
-
#: C:\wamp\www\
|
87 |
msgid "Accept Chat"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: C:\wamp\www\
|
91 |
-
|
|
|
|
|
|
|
|
|
92 |
msgid "Open Chat Window"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: C:\wamp\www\
|
96 |
-
msgid "
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: C:\wamp\www\
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: C:\wamp\www\
|
104 |
-
msgid "
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: C:\wamp\www\
|
108 |
-
|
|
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: C:\wamp\www\
|
112 |
-
msgid "
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: C:\wamp\www\
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: C:\wamp\www\
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: C:\wamp\www\
|
124 |
-
msgid "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: C:\wamp\www\
|
128 |
-
|
|
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: C:\wamp\www\
|
132 |
-
|
133 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1402
|
134 |
-
msgid "Live Chat"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: C:\wamp\www\
|
138 |
-
|
139 |
-
msgid "Settings"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: C:\wamp\www\
|
143 |
-
|
144 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1406
|
145 |
-
msgid "History"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: C:\wamp\www\
|
149 |
-
|
150 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1407
|
151 |
-
msgid "Feedback"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: C:\wamp\www\
|
155 |
-
#: C:\wamp\www\
|
156 |
-
msgid "
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: C:\wamp\www\
|
160 |
-
#: C:\wamp\www\
|
161 |
-
msgid "Chat
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: C:\wamp\www\
|
165 |
-
#: C:\wamp\www\
|
166 |
-
msgid "
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: C:\wamp\www\
|
170 |
-
#: C:\wamp\www\
|
171 |
-
msgid "
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: C:\wamp\www\
|
175 |
-
#: C:\wamp\www\
|
176 |
-
|
|
|
|
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: C:\wamp\www\
|
180 |
-
#: C:\wamp\www\
|
181 |
-
|
|
|
|
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: C:\wamp\www\
|
185 |
-
|
186 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:620
|
187 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:850
|
188 |
-
msgid "Send"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: C:\wamp\www\
|
192 |
-
#: C:\wamp\www\
|
193 |
-
msgid "
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgid ""
|
198 |
-
"
|
199 |
-
"strong>. Please"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: C:\wamp\www\
|
203 |
-
#: C:\wamp\www\
|
204 |
-
msgid "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: C:\wamp\www\
|
208 |
-
#: C:\wamp\www\
|
209 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: C:\wamp\www\
|
|
|
213 |
msgid ""
|
214 |
-
"
|
215 |
-
"
|
216 |
-
"experience for both yourself and your visitors."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
msgid ""
|
221 |
-
"
|
222 |
-
"
|
223 |
-
"version/' target='_BLANK'>here</a>."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: C:\wamp\www\
|
227 |
-
#: C:\wamp\www\
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: C:\wamp\www\
|
232 |
-
|
|
|
|
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: C:\wamp\www\
|
236 |
-
|
|
|
|
|
|
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: C:\wamp\www\
|
240 |
-
|
|
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: C:\wamp\www\
|
244 |
-
#: C:\wamp\www\
|
245 |
-
msgid "
|
|
|
|
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: C:\wamp\www\
|
249 |
-
|
|
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: C:\wamp\www\
|
253 |
-
|
|
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: C:\wamp\www\
|
257 |
-
|
|
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: C:\wamp\www\
|
261 |
-
|
|
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: C:\wamp\www\
|
265 |
-
|
|
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: C:\wamp\www\
|
269 |
-
|
|
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: C:\wamp\www\
|
273 |
-
|
|
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: C:\wamp\www\
|
277 |
-
#: C:\wamp\www\
|
278 |
-
msgid "
|
|
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: C:\wamp\www\
|
282 |
-
|
283 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1493
|
284 |
-
msgid "Assign Quick Response"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: C:\wamp\www\
|
288 |
-
#: C:\wamp\www\
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: C:\wamp\www\
|
293 |
-
|
|
|
|
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: C:\wamp\www\
|
297 |
-
msgid "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: C:\wamp\www\
|
301 |
-
|
302 |
-
msgid "User has opened the chat window"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: C:\wamp\www\
|
306 |
-
#: C:\wamp\www\
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: C:\wamp\www\
|
311 |
-
|
312 |
-
msgid "User has maximized the chat window"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: C:\wamp\www\
|
316 |
-
|
317 |
-
msgid "User has closed and ended the chat"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: C:\wamp\www\
|
321 |
-
msgid "
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: C:\wamp\www\
|
325 |
-
#: C:\wamp\www\
|
326 |
-
|
327 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:104
|
328 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:120
|
329 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
|
330 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
331 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:174
|
332 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:188
|
333 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
|
334 |
-
msgid "Pro Add-on"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: C:\wamp\www\
|
338 |
-
|
339 |
-
msgid "Your settings have been saved."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: C:\wamp\www\
|
343 |
-
|
|
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: C:\wamp\www\
|
347 |
-
#: C:\wamp\www\
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: C:\wamp\www\
|
352 |
-
msgid "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: C:\wamp\www\
|
356 |
-
|
|
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: C:\wamp\www\
|
360 |
-
|
|
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: C:\wamp\www\
|
364 |
-
|
|
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: C:\wamp\www\
|
368 |
-
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: C:\wamp\www\
|
372 |
-
|
|
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: C:\wamp\www\
|
376 |
-
msgid "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: C:\wamp\www\
|
380 |
-
|
381 |
-
msgid "WP Live Chat Support Settings"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: C:\wamp\www\
|
385 |
-
|
386 |
-
msgid "General Settings"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: C:\wamp\www\
|
390 |
-
|
391 |
-
msgid "Chat Box"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: C:\wamp\www\
|
395 |
-
|
396 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
|
397 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:156
|
398 |
-
msgid "Offline Messages"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: C:\wamp\www\
|
402 |
-
|
403 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
|
404 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
|
405 |
-
msgid "Styling"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: C:\wamp\www\
|
409 |
-
msgid "
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: C:\wamp\www\
|
413 |
-
|
414 |
-
msgid "Main Settings"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: C:\wamp\www\
|
418 |
-
|
419 |
-
msgid "Chat enabled"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: C:\wamp\www\
|
423 |
-
|
424 |
-
msgid "Yes"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: C:\wamp\www\
|
428 |
-
#: C:\wamp\www\
|
429 |
-
msgid "
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: C:\wamp\www\
|
433 |
-
#: C:\wamp\www\
|
434 |
-
msgid "
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: C:\wamp\www\
|
438 |
-
|
439 |
-
msgid "Hides chat for 24hrs when user clicks X"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: C:\wamp\www\
|
443 |
-
|
444 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:103
|
445 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:119
|
446 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
|
447 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:152
|
448 |
-
msgid "available in the"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: C:\wamp\www\
|
452 |
-
|
453 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:105
|
454 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:121
|
455 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
|
456 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
|
457 |
-
msgid "only"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: C:\wamp\www\
|
461 |
-
|
462 |
-
msgid "Chat Window Settings"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: C:\wamp\www\
|
466 |
-
|
467 |
-
msgid "Chat box alignment"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: C:\wamp\www\
|
471 |
-
|
472 |
-
msgid "Bottom left"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: C:\wamp\www\
|
476 |
-
|
477 |
-
|
|
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: C:\wamp\www\
|
481 |
-
|
482 |
-
msgid "Left"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: C:\wamp\www\
|
486 |
-
#: C:\wamp\www\
|
487 |
-
msgid "
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: C:\wamp\www\
|
491 |
-
|
492 |
-
msgid "Auto Pop-up"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: C:\wamp\www\
|
496 |
-
|
497 |
-
msgid ""
|
498 |
-
"Expand the chat box automatically (prompts the user to enter their name and "
|
499 |
-
"email address)."
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: C:\wamp\www\
|
503 |
-
#: C:\wamp\www\
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: C:\wamp\www\
|
508 |
-
#: C:\wamp\www\
|
509 |
-
|
510 |
-
msgid "Upload Image"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: C:\wamp\www\
|
514 |
-
|
515 |
-
|
|
|
|
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: C:\wamp\www\
|
519 |
-
|
520 |
-
|
|
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: C:\wamp\www\
|
524 |
-
#: C:\wamp\www\
|
525 |
-
msgid "
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: C:\wamp\www\
|
529 |
-
#: C:\wamp\www\
|
530 |
-
msgid "
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: C:\wamp\www\
|
534 |
-
|
535 |
-
|
|
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: C:\wamp\www\
|
539 |
-
msgid "
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: C:\wamp\www\
|
543 |
-
msgid "
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: C:\wamp\www\
|
547 |
-
|
548 |
-
msgid "Edit these text fields using the "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: C:\wamp\www\
|
552 |
-
#: C:\wamp\www\
|
553 |
-
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: C:\wamp\www\
|
557 |
-
#: C:\wamp\www\
|
558 |
-
msgid "Chat
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: C:\wamp\www\
|
562 |
-
|
|
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: C:\wamp\www\
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: C:\wamp\www\
|
570 |
-
msgid "
|
|
|
|
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: C:\wamp\www\
|
574 |
-
|
|
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: C:\wamp\www\
|
578 |
-
msgid "
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: C:\wamp\www\
|
582 |
-
|
|
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: C:\wamp\www\
|
586 |
-
|
587 |
-
msgid "Save Settings"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: C:\wamp\www\
|
591 |
-
|
|
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: C:\wamp\www\
|
595 |
-
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: C:\wamp\www\
|
599 |
-
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: C:\wamp\www\
|
603 |
-
|
|
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: C:\wamp\www\
|
607 |
-
|
|
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: C:\wamp\www\
|
611 |
-
msgid "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: C:\wamp\www\
|
615 |
-
|
|
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: C:\wamp\www\
|
619 |
-
|
|
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: C:\wamp\www\
|
623 |
-
|
|
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: C:\wamp\www\
|
627 |
-
|
|
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: C:\wamp\www\
|
631 |
-
msgid "
|
|
|
|
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: C:\wamp\www\
|
635 |
-
msgid "
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: C:\wamp\www\
|
639 |
-
|
|
|
|
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: C:\wamp\www\
|
643 |
-
|
|
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: C:\wamp\www\
|
647 |
-
|
|
|
|
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: C:\wamp\www\
|
651 |
-
|
|
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: C:\wamp\www\
|
655 |
-
#: C:\wamp\www\
|
656 |
-
|
|
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: C:\wamp\www\
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: C:\wamp\www\
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: C:\wamp\www\
|
668 |
-
|
|
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: C:\wamp\www\
|
672 |
-
msgid "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: C:\wamp\www\
|
676 |
-
msgid "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: C:\wamp\www\
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: C:\wamp\www\
|
684 |
-
msgid "
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: C:\wamp\www\
|
688 |
-
|
689 |
-
msgid "Chat Agents Online"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: C:\wamp\www\
|
693 |
-
msgid "
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: C:\wamp\www\
|
697 |
-
msgid "
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\wamp\www\
|
701 |
-
msgid ""
|
702 |
-
"You're live chat box on your website has been temporarily disabled until the "
|
703 |
-
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
704 |
-
"user experience for both yourself and your visitors."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: C:\wamp\www\
|
708 |
-
|
709 |
-
|
710 |
-
"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: C:\wamp\www\
|
714 |
-
|
715 |
-
|
716 |
-
"download the latest copy from"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: C:\wamp\www\
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: C:\wamp\www\
|
724 |
-
msgid "
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: C:\wamp\www\
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: C:\wamp\www\
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: C:\wamp\www\
|
736 |
-
msgid ""
|
737 |
-
"Please note: This window must be open in order to receive new chat "
|
738 |
-
"notifications."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: C:\wamp\www\
|
742 |
-
msgid "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: C:\wamp\www\
|
746 |
-
msgid "
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: C:\wamp\www\
|
750 |
-
msgid "
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: C:\wamp\www\
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: C:\wamp\www\
|
758 |
-
msgid ""
|
759 |
-
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
760 |
-
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: C:\wamp\www\
|
764 |
-
msgid "
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: C:\wamp\www\
|
768 |
-
|
769 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1428
|
770 |
-
msgid "Quick Responses"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: C:\wamp\www\
|
774 |
-
msgid "
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: C:\wamp\www\
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: C:\wamp\www\
|
782 |
-
|
783 |
-
msgid "New Quick Response"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: C:\wamp\www\
|
787 |
-
msgid "
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: C:\wamp\www\
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: C:\wamp\www\
|
795 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: C:\wamp\www\
|
799 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: C:\wamp\www\
|
803 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: C:\wamp\www\
|
807 |
-
msgid "
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: C:\wamp\www\
|
811 |
-
msgid "
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: C:\wamp\www\
|
815 |
-
msgid "
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: C:\wamp\www\
|
819 |
-
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: C:\wamp\www\
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: C:\wamp\www\
|
827 |
-
|
|
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: C:\wamp\www\
|
831 |
-
|
|
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: C:\wamp\www\
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: C:\wamp\www\
|
839 |
-
|
|
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: C:\wamp\www\
|
843 |
-
|
|
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: C:\wamp\www\
|
847 |
-
msgid "
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: C:\wamp\www\
|
851 |
-
|
|
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: C:\wamp\www\
|
855 |
-
msgid "
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: C:\wamp\www\
|
859 |
-
msgid "
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: C:\wamp\www\
|
863 |
-
msgid "
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: C:\wamp\www\
|
867 |
-
msgid "
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: C:\wamp\www\
|
871 |
-
msgid "
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: C:\wamp\www\
|
875 |
-
msgid "
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: C:\wamp\www\
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: C:\wamp\www\
|
883 |
-
msgid "
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: C:\wamp\www\
|
887 |
-
msgid "
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: C:\wamp\www\
|
891 |
-
msgid "
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: C:\wamp\www\
|
895 |
-
msgid "
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: C:\wamp\www\
|
899 |
-
msgid "
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: C:\wamp\www\
|
903 |
-
|
|
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: C:\wamp\www\
|
907 |
-
msgid "
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: C:\wamp\www\
|
911 |
-
msgid "
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: C:\wamp\www\
|
915 |
-
msgid "
|
|
|
|
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: C:\wamp\www\
|
919 |
-
msgid "
|
|
|
|
|
|
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: C:\wamp\www\
|
923 |
msgid ""
|
924 |
-
"
|
925 |
-
"
|
|
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: C:\wamp\www\
|
929 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2014-12-15 09:47+0200\n"
|
5 |
+
"PO-Revision-Date: 2014-12-15 09:47+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
+
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\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\\wordpress\\wp-content\\plugins\\wp-"
|
|
|
16 |
"live-chat-support\n"
|
17 |
+
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
|
18 |
"live-chat-support-pro\n"
|
19 |
|
20 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:261
|
21 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:230
|
22 |
msgid "Admin has closed and ended the chat"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:296
|
26 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:254
|
27 |
msgid "There is No Answer. Please Try Again Later"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
|
31 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:101
|
32 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:171
|
33 |
msgid "User Data"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:24
|
37 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:102
|
38 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
39 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:497
|
40 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:652
|
41 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:684
|
42 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:172
|
43 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
44 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:398
|
45 |
msgid "Name"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:25
|
49 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:103
|
50 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
51 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:498
|
52 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:653
|
53 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:685
|
54 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:173
|
55 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:399
|
56 |
msgid "Email"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
|
60 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:104
|
61 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
62 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:174
|
63 |
msgid "URL"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:27
|
67 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:105
|
68 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
|
69 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:175
|
70 |
msgid "Status"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:28
|
74 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:106
|
75 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
|
76 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:176
|
77 |
msgid "Action"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:46
|
81 |
+
msgid "Initiate Chat"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:48
|
85 |
+
msgid "You must be a chat agent to initiate chats"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
|
89 |
+
msgid "No visitors on-line at the moment"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:112
|
93 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:182
|
94 |
msgid "No chat sessions available at the moment"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:132
|
98 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:200
|
99 |
msgid "Accept Chat"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:135
|
103 |
+
msgid "You must be a chat agent to answer chats"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:142
|
107 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
|
108 |
msgid "Open Chat Window"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:145
|
112 |
+
msgid "Chat has been answered by another agent"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:148
|
116 |
+
msgid "Chat has been Accepted By Chat Agent "
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:177
|
120 |
+
msgid "WP Live Chat Support - Offline Message from"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
124 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:686
|
125 |
+
msgid "Message"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
129 |
+
msgid "Via WP Live Chat Support"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
133 |
+
msgid "Alert: Someone wants to chat with you on "
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
|
137 |
+
msgid "Someone wants to chat with you on your website"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
|
141 |
+
msgid "Log in"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:383
|
145 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:398
|
146 |
+
msgid "Chat Agent"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:388
|
150 |
+
msgid "Make this user a chat agent"
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:402
|
154 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:403
|
158 |
+
msgid "Please contact the administrator of this website to change this."
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:483
|
162 |
+
msgid "Chat Agent Online"
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:485
|
166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:490
|
167 |
+
msgid "Chat Agents Online"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:21
|
171 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
|
172 |
+
msgid "WP Live Chat Support Settings"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
|
176 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
|
177 |
+
msgid "General Settings"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
|
181 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
|
182 |
+
msgid "Chat Box"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
|
186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
|
187 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
|
188 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:259
|
189 |
+
msgid "Offline Messages"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
|
193 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:326
|
194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:23
|
195 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:296
|
196 |
+
msgid "Styling"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:37
|
200 |
+
msgid "Chat Agents"
|
|
|
|
|
|
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
|
204 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
|
205 |
+
msgid "Main Settings"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
|
209 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
210 |
+
msgid "Chat enabled"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
|
214 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
|
215 |
+
msgid "Yes"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:47
|
219 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
|
220 |
+
msgid "No"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:53
|
224 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
|
225 |
+
msgid "Hide Chat"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:54
|
229 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:41
|
230 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:62
|
234 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
|
235 |
+
msgid "Require Name And Email"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:63
|
239 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:58
|
240 |
msgid ""
|
241 |
+
"Users will have to enter their Name and Email Address when starting a chat"
|
|
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
|
245 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
|
246 |
+
msgid "Input Field Replacement Text"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:72
|
250 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
|
251 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:80
|
255 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:75
|
256 |
+
msgid "Use Logged In User Details"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
|
260 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
261 |
msgid ""
|
262 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
263 |
+
"in."
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
|
267 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
268 |
+
msgid "Enable On Mobile Devices"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
272 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
273 |
msgid ""
|
274 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
275 |
+
"devices. (Smartphones and Tablets)"
|
|
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
|
279 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
280 |
+
msgid "Include chat window on the following pages:"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:99
|
284 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:94
|
285 |
+
msgid ""
|
286 |
+
"Show the chat window on the following pages. Leave blank to show on all. "
|
287 |
+
"(Use comma-separated Page ID's)"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
|
291 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:113
|
292 |
+
msgid ""
|
293 |
+
"Do not include and exclude pages at the same time. Please only use one or "
|
294 |
+
"the other"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:108
|
298 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
299 |
+
msgid "Exclude chat window on the following pages:"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
|
303 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:110
|
304 |
+
msgid ""
|
305 |
+
"Do not show the chat window on the following pages. Leave blank to show on "
|
306 |
+
"all. (Use comma-separated Page ID's)"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:123
|
310 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:128
|
311 |
+
msgid "Chat Window Settings"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
|
315 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
316 |
+
msgid "Chat box alignment"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
|
320 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:134
|
321 |
+
msgid "Bottom left"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
|
325 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
|
326 |
+
msgid "Bottom right"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:131
|
330 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
|
331 |
+
msgid "Left"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:132
|
335 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
|
336 |
+
msgid "Right"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
|
340 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:143
|
341 |
+
msgid "Auto Pop-up"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:142
|
345 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
346 |
+
msgid ""
|
347 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
348 |
+
"email address)."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
|
352 |
+
msgid "Name "
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
356 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:169
|
357 |
+
msgid "Picture"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:170
|
361 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:172
|
362 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:188
|
363 |
+
msgid "Upload Image"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
367 |
+
msgid "Remove Image"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:173
|
371 |
+
msgid "Recomended Size 40px x 40px"
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:179
|
375 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:185
|
376 |
+
msgid "Logo"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:187
|
380 |
+
msgid "Upload Logo"
|
|
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:189
|
384 |
+
msgid "Remove Logo"
|
|
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:190
|
388 |
+
msgid "Recomended Size 250px x 40px"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:196
|
392 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:201
|
393 |
+
msgid "Chat delay (seconds)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:199
|
397 |
+
msgid "how long it takes for your chat window to pop up"
|
|
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:205
|
401 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:217
|
402 |
+
msgid "Chat notifications"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:209
|
406 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:221
|
407 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:210
|
411 |
+
msgid "(while online only)"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:215
|
415 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:233
|
416 |
+
msgid "Display name and avatar in chat"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:221
|
420 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
421 |
+
msgid "Display the agent and user name above each message in the chat window."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:226
|
425 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:244
|
426 |
+
msgid "Only show the chat window to users that are logged in"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:234
|
430 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
|
431 |
+
msgid ""
|
432 |
+
"By checking this, only users that are logged in will be able to chat with "
|
433 |
+
"you."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:245
|
437 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:263
|
438 |
+
msgid "Email Address"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:249
|
442 |
+
msgid "Email address where offline messages are delivered to"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:257
|
446 |
+
msgid "Sending Method"
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:258
|
450 |
+
msgid "WP Mail"
|
|
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:259
|
454 |
+
msgid "PHP Mailer"
|
|
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:271
|
458 |
+
msgid "Host"
|
|
|
|
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:279
|
462 |
+
msgid "Port"
|
|
|
|
|
|
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:287
|
466 |
+
msgid "Username"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:295
|
470 |
+
msgid "Password"
|
|
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:304
|
474 |
+
msgid "Offline Chat Box Title"
|
|
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:312
|
478 |
+
msgid "Offline Text Fields"
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:329
|
482 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:299
|
483 |
+
msgid "Chat box fill color"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:335
|
487 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
|
488 |
+
msgid "Chat box font color"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:341
|
492 |
+
msgid "First Section Text"
|
|
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:350
|
496 |
+
msgid "Intro Text"
|
|
|
|
|
|
|
|
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
500 |
+
msgid "Second Section Text"
|
|
|
|
|
|
|
|
|
|
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:363
|
504 |
+
msgid "Reactivate Chat Section Text"
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:371
|
508 |
+
msgid "User chat welcome"
|
|
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:380
|
512 |
+
msgid "Other text"
|
|
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:400
|
516 |
+
msgid ""
|
517 |
+
"To add or remove a user as a chat agent, go into the users profile and "
|
518 |
+
"select the checkbox Chat Agent and click save."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:401
|
522 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
|
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
|
526 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
|
527 |
+
msgid "Save Settings"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:373
|
531 |
+
msgid "Dear User"
|
|
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:374
|
535 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
|
|
|
|
|
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:374
|
539 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:666
|
540 |
+
msgid "update to at least version"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:374
|
544 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:666
|
545 |
+
msgid "to ensure all functionality is in working order"
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:375
|
549 |
+
msgid ""
|
550 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
551 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
552 |
+
"user experience for both yourself and your visitors."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:376
|
556 |
+
msgid ""
|
557 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
558 |
+
"href='./plugins.php'>here</a>."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:377
|
562 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:669
|
563 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:393
|
567 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:665
|
568 |
+
msgid "Dear Pro User"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:394
|
572 |
+
msgid ""
|
573 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
574 |
+
"download the latest copy from"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:496
|
578 |
+
msgid "Date"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:507
|
582 |
+
msgid "No chats available at the moment"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:688
|
586 |
+
msgid "Send message"
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:716
|
590 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:434
|
591 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:816
|
592 |
+
msgid "Send"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:739
|
596 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1193
|
597 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:785
|
601 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1205
|
602 |
+
msgid "Your settings have been saved."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:806
|
606 |
+
msgid "Chat sessions"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:815
|
610 |
+
msgid ""
|
611 |
+
"Please note: This window must be open in order to receive new chat "
|
612 |
+
"notifications."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:820
|
616 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:719
|
617 |
+
msgid "Visitors on site"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:893
|
621 |
+
msgid "Unknown"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:901
|
625 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:769
|
626 |
+
msgid "End chat"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:906
|
630 |
+
msgid "Attempting to open the chat window... Please be patient."
|
|
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:929
|
634 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:785
|
635 |
+
msgid "Site Info"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:931
|
639 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:787
|
640 |
+
msgid "Chat initiated on:"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:935
|
644 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:791
|
645 |
+
msgid "Advanced Info"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:937
|
649 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:793
|
650 |
+
msgid "Browser:"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:938
|
654 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:794
|
655 |
+
msgid "IP Address:"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:999
|
659 |
+
msgid "This chat has already been answered. Please close the chat window"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1063
|
663 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:921
|
664 |
+
msgid "User has opened the chat window"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1068
|
668 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:926
|
669 |
+
msgid "User has minimized the chat window"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1073
|
673 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:931
|
674 |
+
msgid "User has maximized the chat window"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1078
|
678 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:936
|
679 |
+
msgid "User has closed and ended the chat"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1412
|
683 |
+
msgid ""
|
684 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
685 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1417
|
689 |
+
msgid "An unknown error occurred"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
|
693 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:196
|
694 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:700
|
695 |
+
msgid "Live Chat"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
|
699 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:197
|
700 |
+
msgid "Settings"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1569
|
704 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1571
|
705 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:198
|
706 |
+
msgid "History"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1569
|
710 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1582
|
711 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1593
|
712 |
+
msgid "Quick Responses"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1572
|
716 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
717 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:199
|
718 |
+
msgid "Feedback"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1576
|
722 |
+
msgid "Error Log"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1583
|
726 |
+
msgid "Quick Response"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1584
|
730 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1587
|
731 |
+
msgid "New Quick Response"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1585
|
735 |
+
msgid "Add New Quick Response"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1586
|
739 |
+
msgid "Edit Quick Response"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1588
|
743 |
+
msgid "All Quick Responses"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1589
|
747 |
+
msgid "View Quick Responses"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1590
|
751 |
+
msgid "Search Quick Responses"
|
|
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1591
|
755 |
+
msgid "No Quick Responses found"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1592
|
759 |
+
msgid "No Quick Responses found in the Trash"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1597
|
763 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
|
|
|
|
|
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1656
|
767 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1658
|
768 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
|
769 |
+
msgid "Assign Quick Response"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1660
|
773 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
|
774 |
+
msgid "Select"
|
|
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1667
|
778 |
+
msgid "What is this?"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:524
|
782 |
+
msgid "complete"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:527
|
786 |
+
msgid "pending"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:530
|
790 |
+
msgid "active"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:533
|
794 |
+
msgid "deleted"
|
|
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:536
|
798 |
+
msgid "browsing"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:539
|
802 |
+
msgid "requesting chat"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:542
|
806 |
+
msgid "Chat Ended - User still browsing"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:545
|
810 |
+
msgid "User is browsing but doesn't want to chat"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:609
|
814 |
+
msgid "Get Pro Add-on to accept more chats"
|
|
|
|
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
818 |
+
msgid "WP Live Chat Support Feedback"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
822 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
|
|
|
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
826 |
+
msgid "Your Name"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
830 |
+
msgid "Your Email"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
834 |
+
msgid "Your Website"
|
|
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
838 |
+
msgid "Send Feedback"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
|
842 |
+
msgid "Agents"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
|
846 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
847 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
848 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:159
|
849 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:175
|
850 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:191
|
851 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
|
852 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:224
|
853 |
+
msgid "available in the"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:48
|
857 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
858 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
859 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
|
860 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:176
|
861 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:192
|
862 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
|
863 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
|
864 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:270
|
865 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:284
|
866 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:334
|
867 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1169
|
868 |
+
msgid "Pro Add-on"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:49
|
872 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:102
|
873 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:118
|
874 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:161
|
875 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
|
876 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
|
877 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
|
878 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
|
879 |
+
msgid "only"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:50
|
883 |
+
msgid " once off. Updates included forever."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:269
|
887 |
+
msgid "Get offline messages with the "
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:278
|
891 |
+
msgid "Offline text"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:283
|
895 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
896 |
+
msgid "Edit these text fields using the "
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:312
|
900 |
+
msgid "First section text"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:314
|
904 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:350
|
905 |
+
msgid "Questions?"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:315
|
909 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:350
|
910 |
+
msgid "Chat with us"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:319
|
914 |
+
msgid "Second section text"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
918 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:415
|
919 |
+
msgid "Start Chat"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:322
|
923 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:422
|
924 |
+
msgid "Connecting you to a sales person. Please be patient."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:328
|
928 |
+
msgid "Reactivate chat section text"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:330
|
932 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:425
|
933 |
+
msgid "Reactivating your previous chat..."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:345
|
937 |
+
msgid "Multiple Agents"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
941 |
+
msgid "Get"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
945 |
+
msgid "Multiple agent support"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
949 |
+
msgid "Welcome to "
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
953 |
+
msgid "WordPress.org plugin repository "
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
957 |
+
msgid "Search Term"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
961 |
+
msgid "Google or other search Engine"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
965 |
+
msgid "Friend recommendation"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
969 |
+
msgid "Other"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
973 |
+
msgid "Please Explain"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
977 |
+
msgid "Submit"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
981 |
+
msgid "Skip"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:168
|
985 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1059
|
986 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:360
|
990 |
+
msgid "Start Live Chat"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:430
|
994 |
+
msgid "Press ENTER to send your message"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:666
|
998 |
+
msgid ""
|
999 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1000 |
+
"strong>. Please"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:667
|
1004 |
+
msgid ""
|
1005 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1006 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1007 |
+
"experience for both yourself and your visitors."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:668
|
1011 |
msgid ""
|
1012 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1013 |
+
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1014 |
+
"version/' target='_BLANK'>here</a>."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:694
|
1018 |
+
msgid "Experiencing problems with the plugin?"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:696
|
1022 |
+
msgid "Review the documentation."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:697
|
1026 |
+
msgid "Or ask a question on our"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
|
1030 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
|
1034 |
+
msgid "see who's online and initiate chats"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
|
1038 |
+
msgid "with your online visitors with the click of a button."
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
|
1042 |
+
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:720
|
1046 |
+
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:764
|
1050 |
+
msgid "Previous"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:764
|
1054 |
+
msgid "Active"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
|
1058 |
+
msgid "Add Quick Responses to your Live Chat"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
|
1062 |
+
msgid "Pro version only"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:814
|
1066 |
+
msgid "type here..."
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1164
|
1070 |
+
msgid "WP Live Chat History"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1220
|
1074 |
+
msgid "Thank You for your feedback!"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1224
|
1078 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1237
|
1079 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1241
|
1083 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1084 |
msgstr ""
|
languages/wplivechat-nl_NL.mo
ADDED
Binary file
|
languages/wplivechat-nl_NL.po
ADDED
@@ -0,0 +1,964 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2014-10-06 11:02+0200\n"
|
5 |
+
"PO-Revision-Date: 2014-11-25 11:25+0100\n"
|
6 |
+
"Last-Translator: Elsy Aelvoet <elsy.aelvoet@bluematters.be>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.6.10\n"
|
12 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"Language: en\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
|
16 |
+
"live-chat-support\n"
|
17 |
+
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
|
18 |
+
"live-chat-support-pro\n"
|
19 |
+
|
20 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax.php:230
|
21 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:261
|
22 |
+
msgid "Admin has closed and ended the chat"
|
23 |
+
msgstr "Admin heeft de chat afgesloten"
|
24 |
+
|
25 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax.php:254
|
26 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:296
|
27 |
+
msgid "There is No Answer. Please Try Again Later"
|
28 |
+
msgstr "Wij kunnen nu niet antwoorden. Probeer het later eens opnieuw aub"
|
29 |
+
|
30 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:171
|
31 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
|
32 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:101
|
33 |
+
msgid "User Data"
|
34 |
+
msgstr "Gebruikersgegevens"
|
35 |
+
|
36 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:172
|
37 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:246
|
38 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:81
|
39 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:24
|
40 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:102
|
41 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
42 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:461
|
43 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:565
|
44 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:583
|
45 |
+
msgid "Name"
|
46 |
+
msgstr "Naam"
|
47 |
+
|
48 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:173
|
49 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:248
|
50 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:25
|
51 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:103
|
52 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
53 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:462
|
54 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:567
|
55 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:584
|
56 |
+
msgid "Email"
|
57 |
+
msgstr "E-mail"
|
58 |
+
|
59 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:174
|
60 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
|
61 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:104
|
62 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:463
|
63 |
+
msgid "URL"
|
64 |
+
msgstr "URL"
|
65 |
+
|
66 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:175
|
67 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:27
|
68 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:105
|
69 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:464
|
70 |
+
msgid "Status"
|
71 |
+
msgstr "Status"
|
72 |
+
|
73 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:176
|
74 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:28
|
75 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:106
|
76 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:465
|
77 |
+
msgid "Action"
|
78 |
+
msgstr "Actie"
|
79 |
+
|
80 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:182
|
81 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:112
|
82 |
+
msgid "No chat sessions available at the moment"
|
83 |
+
msgstr "Er zijn geen chat-sessies beschikbaar op dit moment"
|
84 |
+
|
85 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:200
|
86 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:132
|
87 |
+
msgid "Accept Chat"
|
88 |
+
msgstr "Chat accepteren"
|
89 |
+
|
90 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:205
|
91 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:142
|
92 |
+
msgid "Open Chat Window"
|
93 |
+
msgstr "Open het chatvenster"
|
94 |
+
|
95 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:441
|
96 |
+
msgid "complete"
|
97 |
+
msgstr "volledig"
|
98 |
+
|
99 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:444
|
100 |
+
msgid "pending"
|
101 |
+
msgstr "openstaand"
|
102 |
+
|
103 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:447
|
104 |
+
msgid "active"
|
105 |
+
msgstr "actief"
|
106 |
+
|
107 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:450
|
108 |
+
msgid "deleted"
|
109 |
+
msgstr "verwijderd"
|
110 |
+
|
111 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
|
112 |
+
msgid "browsing"
|
113 |
+
msgstr "surfen"
|
114 |
+
|
115 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:456
|
116 |
+
msgid "requesting chat"
|
117 |
+
msgstr "chataanvraag"
|
118 |
+
|
119 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:459
|
120 |
+
msgid "Chat Ended - User still browsing"
|
121 |
+
msgstr "De chatsessie is beëindigd - De bezoeker blijft surfen"
|
122 |
+
|
123 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
|
124 |
+
msgid "User is browsing but doesn't want to chat"
|
125 |
+
msgstr "De bezoeker is aan het surfen en wil niet chatten"
|
126 |
+
|
127 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:526
|
128 |
+
msgid "Get Pro Add-on to accept more chats"
|
129 |
+
msgstr "Gebruik Pro Add-on om meer chats te accepteren"
|
130 |
+
|
131 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:140
|
132 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:535
|
133 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1402
|
134 |
+
msgid "Live Chat"
|
135 |
+
msgstr "Live Chat"
|
136 |
+
|
137 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:141
|
138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1403
|
139 |
+
msgid "Settings"
|
140 |
+
msgstr "Instellingen"
|
141 |
+
|
142 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:142
|
143 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1404
|
144 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1406
|
145 |
+
msgid "History"
|
146 |
+
msgstr "Geschiedenis"
|
147 |
+
|
148 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:143
|
149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
150 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1407
|
151 |
+
msgid "Feedback"
|
152 |
+
msgstr "Feedback"
|
153 |
+
|
154 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:233
|
155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:218
|
156 |
+
msgid "Questions?"
|
157 |
+
msgstr "Vragen?"
|
158 |
+
|
159 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:233
|
160 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
161 |
+
msgid "Chat with us"
|
162 |
+
msgstr "Chat met ons"
|
163 |
+
|
164 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:250
|
165 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
|
166 |
+
msgid "Start Chat"
|
167 |
+
msgstr "Begin Chat"
|
168 |
+
|
169 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:257
|
170 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
|
171 |
+
msgid "Connecting you to a sales person. Please be patient."
|
172 |
+
msgstr "Ik verbind u met de sales afdeling. Even geduld aub."
|
173 |
+
|
174 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:260
|
175 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:234
|
176 |
+
msgid "Reactivating your previous chat..."
|
177 |
+
msgstr "Opstarten van de vorige chatsessie"
|
178 |
+
|
179 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:265
|
180 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:847
|
181 |
+
msgid "Press ENTER to send your message"
|
182 |
+
msgstr "Druk op ENTER om uw boodschap te verzenden"
|
183 |
+
|
184 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:269
|
185 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:651
|
186 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:620
|
187 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:850
|
188 |
+
msgid "Send"
|
189 |
+
msgstr "Verzenden"
|
190 |
+
|
191 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:500
|
192 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:358
|
193 |
+
msgid "Dear Pro User"
|
194 |
+
msgstr "Beste Pro Gebruiker"
|
195 |
+
|
196 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:501
|
197 |
+
msgid ""
|
198 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
199 |
+
"strong>. Please"
|
200 |
+
msgstr ""
|
201 |
+
"U gebruikt een verouderde versie van <strong>WP Live Chat Ondersteuning "
|
202 |
+
"Pro</ strong>. Aub"
|
203 |
+
|
204 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:501
|
205 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:339
|
206 |
+
msgid "update to at least version"
|
207 |
+
msgstr "update tot versie"
|
208 |
+
|
209 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:501
|
210 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:339
|
211 |
+
msgid "to ensure all functionality is in working order"
|
212 |
+
msgstr "om alle functionaliteit te verzekeren"
|
213 |
+
|
214 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:502
|
215 |
+
msgid ""
|
216 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
217 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
218 |
+
"experience for both yourself and your visitors."
|
219 |
+
msgstr ""
|
220 |
+
"De live chatbox op uw website is tijdelijk uitgeschakeld tot wanneer de Pro "
|
221 |
+
"plugin is bijgewerkt. Dit om een vlotte en probleemloze gebruikerservaring "
|
222 |
+
"voor zowel uzelf en uw bezoekers te verzekeren."
|
223 |
+
|
224 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:503
|
225 |
+
msgid ""
|
226 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
227 |
+
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
228 |
+
"version/' target='_BLANK'>here</a>."
|
229 |
+
msgstr ""
|
230 |
+
"U kan uw plugin updaten <a href='./update-core.php'>hier</a>, <a href='./"
|
231 |
+
"plugins.php'>here</a> of <a href='http://wp-livechat.com/get-updated-"
|
232 |
+
"version/' target='_BLANK'>hier</a>."
|
233 |
+
|
234 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:504
|
235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:342
|
236 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
237 |
+
msgstr ""
|
238 |
+
"Als u problemen ondervindt bij het bijwerken van de plugin, neem contact op "
|
239 |
+
"aub"
|
240 |
+
|
241 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
|
242 |
+
msgid "Experiencing problems with the plugin?"
|
243 |
+
msgstr "Problemen met de plug-in?"
|
244 |
+
|
245 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:531
|
246 |
+
msgid "Review the documentation."
|
247 |
+
msgstr "Raadpleeg de documentatie"
|
248 |
+
|
249 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:532
|
250 |
+
msgid "Or ask a question on our"
|
251 |
+
msgstr "Of stel een vraag op ons"
|
252 |
+
|
253 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:554
|
254 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:714
|
255 |
+
msgid "Visitors on site"
|
256 |
+
msgstr "Bezoekers op de site"
|
257 |
+
|
258 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
|
259 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
260 |
+
msgstr "Met de Pro-add-on van WP Live Chat Ondersteuning, kunt u"
|
261 |
+
|
262 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
|
263 |
+
msgid "see who's online and initiate chats"
|
264 |
+
msgstr "bekijk wie er online is en start de chatsessie"
|
265 |
+
|
266 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
|
267 |
+
msgid "with your online visitors with the click of a button."
|
268 |
+
msgstr "met uw online bezoekers met één druk op de knop."
|
269 |
+
|
270 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
|
271 |
+
msgid "Buy the Pro add-on now for only $29.95 once off. Free Updates FOREVER."
|
272 |
+
msgstr ""
|
273 |
+
"Koop éénmalig de Pro add-on nu voor slechts $ 29,95 en ontvang VOORTAAN alle "
|
274 |
+
"updates gratis."
|
275 |
+
|
276 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:555
|
277 |
+
msgid "Buy the Pro add-on now for only $29.95 once off. Free Updates Forever."
|
278 |
+
msgstr ""
|
279 |
+
"Koop de Pro add-on éénmalig nu voor slechts $ 29,95 en ontvang voortaan alle "
|
280 |
+
"updates gratis."
|
281 |
+
|
282 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:620
|
283 |
+
msgid "Previous"
|
284 |
+
msgstr "Vorige"
|
285 |
+
|
286 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:620
|
287 |
+
msgid "Active"
|
288 |
+
msgstr "Actief"
|
289 |
+
|
290 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:641
|
291 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:838
|
292 |
+
msgid "End chat"
|
293 |
+
msgstr "Beëindig chat"
|
294 |
+
|
295 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
|
296 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1491
|
297 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1493
|
298 |
+
msgid "Assign Quick Response"
|
299 |
+
msgstr "Formuleer een Standaardantwoord"
|
300 |
+
|
301 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
|
302 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1495
|
303 |
+
msgid "Select"
|
304 |
+
msgstr "Selecteer"
|
305 |
+
|
306 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
|
307 |
+
msgid "Add Quick Responses to your Live Chat"
|
308 |
+
msgstr "Voeg Standaardantwoorden toe aan uw Live Chat"
|
309 |
+
|
310 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
|
311 |
+
msgid "Pro version only"
|
312 |
+
msgstr "Enkel bij Pro versie"
|
313 |
+
|
314 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:753
|
315 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:964
|
316 |
+
msgid "User has opened the chat window"
|
317 |
+
msgstr "De bezoeker heeft het chat venster geopend"
|
318 |
+
|
319 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:758
|
320 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:969
|
321 |
+
msgid "User has minimized the chat window"
|
322 |
+
msgstr "De bezoeker heeft het chat venster verkleind"
|
323 |
+
|
324 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:763
|
325 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:974
|
326 |
+
msgid "User has maximized the chat window"
|
327 |
+
msgstr "De bezoeker heeft het chat venster vergroot"
|
328 |
+
|
329 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:768
|
330 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:979
|
331 |
+
msgid "User has closed and ended the chat"
|
332 |
+
msgstr "De bezoeker heeft het chat venster gesloten en de chatsessie beëindigd"
|
333 |
+
|
334 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:977
|
335 |
+
msgid "WP Live Chat History"
|
336 |
+
msgstr "WP Live Chat Geschiedenis"
|
337 |
+
|
338 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
339 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
340 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:88
|
341 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:104
|
342 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:120
|
343 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:136
|
344 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
345 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:174
|
346 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:188
|
347 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
|
348 |
+
msgid "Pro Add-on"
|
349 |
+
msgstr "Pro Add-on"
|
350 |
+
|
351 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1007
|
352 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:679
|
353 |
+
msgid "Your settings have been saved."
|
354 |
+
msgstr "Uw instellingen zijn bewaard."
|
355 |
+
|
356 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1022
|
357 |
+
msgid "Thank You for your feedback!"
|
358 |
+
msgstr "Bedankt voor uw feedback!"
|
359 |
+
|
360 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1026
|
361 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1039
|
362 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
363 |
+
msgstr "Bedankt voor uw feedback. Wij zullen spoedig contact opnemen."
|
364 |
+
|
365 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1043
|
366 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
367 |
+
msgstr ""
|
368 |
+
"Er was een probleem met het verzenden van uw feedback. Gelieve uw feedback "
|
369 |
+
"opnieuw door te sturen"
|
370 |
+
|
371 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
372 |
+
msgid "WP Live Chat Support Feedback"
|
373 |
+
msgstr "WP Live Chat Ondersteuning Feedback"
|
374 |
+
|
375 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
376 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
377 |
+
msgstr "We willen graag uw opmerkingen en/of suggesties horen"
|
378 |
+
|
379 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
380 |
+
msgid "Your Name"
|
381 |
+
msgstr "Uw Naam"
|
382 |
+
|
383 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
384 |
+
msgid "Your Email"
|
385 |
+
msgstr "Uw E-mail"
|
386 |
+
|
387 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
388 |
+
msgid "Your Website"
|
389 |
+
msgstr "Uw Website"
|
390 |
+
|
391 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
392 |
+
msgid "Send Feedback"
|
393 |
+
msgstr "Verstuur Feedback"
|
394 |
+
|
395 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
|
396 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:19
|
397 |
+
msgid "WP Live Chat Support Settings"
|
398 |
+
msgstr "Instellingen WP Live Chat Ondersteuning"
|
399 |
+
|
400 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:18
|
401 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:31
|
402 |
+
msgid "General Settings"
|
403 |
+
msgstr "Algemene Instellingen"
|
404 |
+
|
405 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:19
|
406 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:32
|
407 |
+
msgid "Chat Box"
|
408 |
+
msgstr "Chat Box"
|
409 |
+
|
410 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
|
411 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:163
|
412 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
|
413 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:156
|
414 |
+
msgid "Offline Messages"
|
415 |
+
msgstr "Offline Berichten"
|
416 |
+
|
417 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
|
418 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
|
419 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
|
420 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:241
|
421 |
+
msgid "Styling"
|
422 |
+
msgstr "Styling"
|
423 |
+
|
424 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
|
425 |
+
msgid "Agents"
|
426 |
+
msgstr "Operators"
|
427 |
+
|
428 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
429 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:38
|
430 |
+
msgid "Main Settings"
|
431 |
+
msgstr "Voornaamste Instellingen"
|
432 |
+
|
433 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
434 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:41
|
435 |
+
msgid "Chat enabled"
|
436 |
+
msgstr "Chat ingeschakeld"
|
437 |
+
|
438 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
|
439 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:44
|
440 |
+
msgid "Yes"
|
441 |
+
msgstr "Ja"
|
442 |
+
|
443 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:32
|
444 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:45
|
445 |
+
msgid "No"
|
446 |
+
msgstr "Neen"
|
447 |
+
|
448 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:38
|
449 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:51
|
450 |
+
msgid "Hide Chat"
|
451 |
+
msgstr "Verberg Chat"
|
452 |
+
|
453 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
|
454 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:52
|
455 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
456 |
+
msgstr "Verbergt chat voor 24 uur wanneer de gebruiker klikt op X"
|
457 |
+
|
458 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
|
459 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:87
|
460 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:103
|
461 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:119
|
462 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:135
|
463 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:152
|
464 |
+
msgid "available in the"
|
465 |
+
msgstr "beschikbaar in de"
|
466 |
+
|
467 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
|
468 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:89
|
469 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:105
|
470 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:121
|
471 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
|
472 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
|
473 |
+
msgid "only"
|
474 |
+
msgstr "enkel"
|
475 |
+
|
476 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:56
|
477 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:62
|
478 |
+
msgid "Chat Window Settings"
|
479 |
+
msgstr "Instellingen Chat Venster"
|
480 |
+
|
481 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:59
|
482 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:65
|
483 |
+
msgid "Chat box alignment"
|
484 |
+
msgstr "Uitlijning Chatbox"
|
485 |
+
|
486 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:62
|
487 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:68
|
488 |
+
msgid "Bottom left"
|
489 |
+
msgstr "Linksonder"
|
490 |
+
|
491 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:63
|
492 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
493 |
+
msgid "Bottom right"
|
494 |
+
msgstr "Rechtsonder"
|
495 |
+
|
496 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:64
|
497 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:70
|
498 |
+
msgid "Left"
|
499 |
+
msgstr "Links"
|
500 |
+
|
501 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:65
|
502 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
|
503 |
+
msgid "Right"
|
504 |
+
msgstr "Rechts"
|
505 |
+
|
506 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:71
|
507 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
508 |
+
msgid "Auto Pop-up"
|
509 |
+
msgstr "Auto Pop-up"
|
510 |
+
|
511 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:75
|
512 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
|
513 |
+
msgid ""
|
514 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
515 |
+
"email address)."
|
516 |
+
msgstr ""
|
517 |
+
"Vergroot de chatbox automatisch (de bezoeker wordt gevraagd om naam en e-"
|
518 |
+
"mailadres in te voeren)."
|
519 |
+
|
520 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:97
|
521 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:101
|
522 |
+
msgid "Picture"
|
523 |
+
msgstr "Beeld"
|
524 |
+
|
525 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
526 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
527 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
|
528 |
+
msgid "Upload Image"
|
529 |
+
msgstr "Beeld opladen"
|
530 |
+
|
531 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:113
|
532 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
533 |
+
msgid "Logo"
|
534 |
+
msgstr "Logo"
|
535 |
+
|
536 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:129
|
537 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:135
|
538 |
+
msgid "Chat delay (seconds)"
|
539 |
+
msgstr "Chat vertragingstijd (seconden)"
|
540 |
+
|
541 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:145
|
542 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
543 |
+
msgid "Chat notifications"
|
544 |
+
msgstr "Chatmeldingen"
|
545 |
+
|
546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:149
|
547 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
|
548 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
549 |
+
msgstr "Verwittig mij via e-mail zodra iemand wil chatten"
|
550 |
+
|
551 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:167
|
552 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:160
|
553 |
+
msgid "Email Address"
|
554 |
+
msgstr "E-mailadres"
|
555 |
+
|
556 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:173
|
557 |
+
msgid "Get offline messages with the "
|
558 |
+
msgstr "Krijg offline berichten met de"
|
559 |
+
|
560 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:182
|
561 |
+
msgid "Offline text"
|
562 |
+
msgstr "Offline tekst"
|
563 |
+
|
564 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
|
565 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:237
|
566 |
+
msgid "Edit these text fields using the "
|
567 |
+
msgstr "Bewerk deze tekstvelden met behulp van de"
|
568 |
+
|
569 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
|
570 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:244
|
571 |
+
msgid "Chat box fill color"
|
572 |
+
msgstr "Chatbox invulkleur"
|
573 |
+
|
574 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
|
575 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:250
|
576 |
+
msgid "Chat box font color"
|
577 |
+
msgstr "Chatbox lettertype kleur"
|
578 |
+
|
579 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
|
580 |
+
msgid "First section text"
|
581 |
+
msgstr "Eerste tekstgedeelte"
|
582 |
+
|
583 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:223
|
584 |
+
msgid "Second section text"
|
585 |
+
msgstr "Tweede tekstgedeelte"
|
586 |
+
|
587 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
|
588 |
+
msgid "Reactivate chat section text"
|
589 |
+
msgstr "Chat tekstgedeelte opnieuw starten"
|
590 |
+
|
591 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:249
|
592 |
+
msgid "Multiple Agents"
|
593 |
+
msgstr "Meerdere operatoren"
|
594 |
+
|
595 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
|
596 |
+
msgid "Get"
|
597 |
+
msgstr "Haal op"
|
598 |
+
|
599 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
|
600 |
+
msgid "Multiple agent support"
|
601 |
+
msgstr "Ondersteuning door meerdere operatoren"
|
602 |
+
|
603 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:253
|
604 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:320
|
605 |
+
msgid "Save Settings"
|
606 |
+
msgstr "Bewaar instellingen"
|
607 |
+
|
608 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
609 |
+
msgid "Welcome to "
|
610 |
+
msgstr "Welkom"
|
611 |
+
|
612 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
613 |
+
msgid "WordPress.org plugin repository "
|
614 |
+
msgstr "WordPress.org plugin archief"
|
615 |
+
|
616 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
617 |
+
msgid "Search Term"
|
618 |
+
msgstr "Zoekterm"
|
619 |
+
|
620 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
621 |
+
msgid "Google or other search Engine"
|
622 |
+
msgstr "Google of andere zoekmachine"
|
623 |
+
|
624 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
625 |
+
msgid "Friend recommendation"
|
626 |
+
msgstr "Aanbevolen door een vriend"
|
627 |
+
|
628 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
629 |
+
msgid "Other"
|
630 |
+
msgstr "Andere"
|
631 |
+
|
632 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
633 |
+
msgid "Please Explain"
|
634 |
+
msgstr "Leg uit aub"
|
635 |
+
|
636 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
637 |
+
msgid "Submit"
|
638 |
+
msgstr "Verzenden"
|
639 |
+
|
640 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
641 |
+
msgid "Skip"
|
642 |
+
msgstr "Overslaan"
|
643 |
+
|
644 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:46
|
645 |
+
msgid "Initiate Chat"
|
646 |
+
msgstr "Begin met de Chatsessie"
|
647 |
+
|
648 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:48
|
649 |
+
msgid "You must be a chat agent to initiate chats"
|
650 |
+
msgstr "U moet een operator zijn om een chat te starten"
|
651 |
+
|
652 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
|
653 |
+
msgid "No visitors on-line at the moment"
|
654 |
+
msgstr "Geen bezoekers online op het moment"
|
655 |
+
|
656 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:135
|
657 |
+
msgid "You must be a chat agent to answer chats"
|
658 |
+
msgstr "U moet een operator zijn om chats te beantwoorden"
|
659 |
+
|
660 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:145
|
661 |
+
msgid "Chat has been answered by another agent"
|
662 |
+
msgstr "Deze chat is beantwoord door een andere operator"
|
663 |
+
|
664 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:148
|
665 |
+
msgid "Chat has been Accepted By Chat Agent "
|
666 |
+
msgstr "Deze chat is aanvaard door de Chat operator"
|
667 |
+
|
668 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:177
|
669 |
+
msgid "WP Live Chat Support - Offline Message from"
|
670 |
+
msgstr "WP Live Chat Ondersteuning - Offline Bericht van"
|
671 |
+
|
672 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
673 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:585
|
674 |
+
msgid "Message"
|
675 |
+
msgstr "Bericht"
|
676 |
+
|
677 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:178
|
678 |
+
msgid "Via WP Live Chat Support"
|
679 |
+
msgstr "Via WP Live Chat Ondersteuning"
|
680 |
+
|
681 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
682 |
+
msgid "Alert: Someone wants to chat with you on "
|
683 |
+
msgstr "Opgelet: Iemand wil met u chatten op "
|
684 |
+
|
685 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
|
686 |
+
msgid "Someone wants to chat with you on your website"
|
687 |
+
msgstr "Iemand wil met u chatten op uw website"
|
688 |
+
|
689 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
|
690 |
+
msgid "Log in"
|
691 |
+
msgstr "Log in"
|
692 |
+
|
693 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
|
694 |
+
msgid "Chat Agent"
|
695 |
+
msgstr "Chat Operator"
|
696 |
+
|
697 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:387
|
698 |
+
msgid "Make this user a chat agent"
|
699 |
+
msgstr "Maak van deze gebruiker een operator"
|
700 |
+
|
701 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:465
|
702 |
+
msgid "Chat Agent Online"
|
703 |
+
msgstr "Chat Operator Online"
|
704 |
+
|
705 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:467
|
706 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:472
|
707 |
+
msgid "Chat Agents Online"
|
708 |
+
msgstr "Chat Operatoren Online"
|
709 |
+
|
710 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:338
|
711 |
+
msgid "Dear User"
|
712 |
+
msgstr "Beste Gebruiker"
|
713 |
+
|
714 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:339
|
715 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
716 |
+
msgstr ""
|
717 |
+
"U gebruikt een verouderde versie van WP Live Chat Basis Ondersteuning . Aub"
|
718 |
+
|
719 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:340
|
720 |
+
msgid ""
|
721 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
722 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
723 |
+
"user experience for both yourself and your visitors."
|
724 |
+
msgstr ""
|
725 |
+
"Uw live chatbox op uw website is tijdelijk uitgeschakeld tot wanneer de "
|
726 |
+
"basis plugin is bijgewerkt. Dit om een vlotte en probleemloze "
|
727 |
+
"gebruikerservaring voor uzelf en uw bezoekers te verzekeren."
|
728 |
+
|
729 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:341
|
730 |
+
msgid ""
|
731 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
732 |
+
"href='./plugins.php'>here</a>."
|
733 |
+
msgstr ""
|
734 |
+
"U kan uw plugin updaten <a href='./update-core.php'>hier</a> of <a href='./"
|
735 |
+
"plugins.php'>hier</a>."
|
736 |
+
|
737 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:359
|
738 |
+
msgid ""
|
739 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
740 |
+
"download the latest copy from"
|
741 |
+
msgstr ""
|
742 |
+
"WP Live Chat Ondersteuning Pro vereist WP Live Chat Ondersteuning om te "
|
743 |
+
"functioneren. U kunt de nieuwste versie downloaden op"
|
744 |
+
|
745 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:460
|
746 |
+
msgid "Date"
|
747 |
+
msgstr "Datum"
|
748 |
+
|
749 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:471
|
750 |
+
msgid "No chats available at the moment"
|
751 |
+
msgstr "Geen chatsessies beschikbaar op dit moment"
|
752 |
+
|
753 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:587
|
754 |
+
msgid "Send message"
|
755 |
+
msgstr "Verstuur een bericht"
|
756 |
+
|
757 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:700
|
758 |
+
msgid "Chat sessions"
|
759 |
+
msgstr "Chat sessies"
|
760 |
+
|
761 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:709
|
762 |
+
msgid ""
|
763 |
+
"Please note: This window must be open in order to receive new chat "
|
764 |
+
"notifications."
|
765 |
+
msgstr ""
|
766 |
+
"Let op: Dit venster moet open zijn om nieuwe chatmeldingen te ontvangen."
|
767 |
+
|
768 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:809
|
769 |
+
msgid "Unknown"
|
770 |
+
msgstr "Onbekend"
|
771 |
+
|
772 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:814
|
773 |
+
msgid "Chat with"
|
774 |
+
msgstr "Chat met"
|
775 |
+
|
776 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:833
|
777 |
+
msgid "Attempting to open the chat window... Please be patient."
|
778 |
+
msgstr "Het chatvenster wordt geopend... Even geduld aub."
|
779 |
+
|
780 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:900
|
781 |
+
msgid "This chat has already been answered. Please close the chat window"
|
782 |
+
msgstr "Deze chat is al beantwoord. Sluit het chatvenster aub"
|
783 |
+
|
784 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1309
|
785 |
+
msgid ""
|
786 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
787 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
788 |
+
msgstr ""
|
789 |
+
"Een onverwacht HTTP probleem is opgetreden tijdens de API aanvraag.</p> "
|
790 |
+
"<p><a href=\"?\" onclick=\"document.location.reload(); return false;"
|
791 |
+
"\">Probeer opnieuw</a>"
|
792 |
+
|
793 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1314
|
794 |
+
msgid "An unknown error occurred"
|
795 |
+
msgstr "Er is een onbekende fout opgetreden"
|
796 |
+
|
797 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1404
|
798 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1417
|
799 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1428
|
800 |
+
msgid "Quick Responses"
|
801 |
+
msgstr "Standaardantwoorden"
|
802 |
+
|
803 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1411
|
804 |
+
msgid "Error Log"
|
805 |
+
msgstr "Foutenlog"
|
806 |
+
|
807 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1418
|
808 |
+
msgid "Quick Response"
|
809 |
+
msgstr "Standaardantwoord"
|
810 |
+
|
811 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1419
|
812 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1422
|
813 |
+
msgid "New Quick Response"
|
814 |
+
msgstr "Nieuw Standaardantwoord"
|
815 |
+
|
816 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1420
|
817 |
+
msgid "Add New Quick Response"
|
818 |
+
msgstr "Voeg Nieuw Standaardantwoord toe"
|
819 |
+
|
820 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1421
|
821 |
+
msgid "Edit Quick Response"
|
822 |
+
msgstr "Bewerk Standaardantwoord"
|
823 |
+
|
824 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1423
|
825 |
+
msgid "All Quick Responses"
|
826 |
+
msgstr "Alle Standaardantwoorden"
|
827 |
+
|
828 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1424
|
829 |
+
msgid "View Quick Responses"
|
830 |
+
msgstr "Bekijk Standaardantwoorden"
|
831 |
+
|
832 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1425
|
833 |
+
msgid "Search Quick Responses"
|
834 |
+
msgstr "Zoek Standaardantwoorden"
|
835 |
+
|
836 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1426
|
837 |
+
msgid "No Quick Responses found"
|
838 |
+
msgstr "Geen Standaardantwoorden gevonden"
|
839 |
+
|
840 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1427
|
841 |
+
msgid "No Quick Responses found in the Trash"
|
842 |
+
msgstr "Geen Standaardantwoorden gevonden in de prullenmand"
|
843 |
+
|
844 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1432
|
845 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
846 |
+
msgstr "Standaardantwoorden voor WP Live Chat Ondersteuning Pro"
|
847 |
+
|
848 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1502
|
849 |
+
msgid "What is this?"
|
850 |
+
msgstr "Wat is dit?"
|
851 |
+
|
852 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
|
853 |
+
msgid "Chat Agents"
|
854 |
+
msgstr "Chat Operatoren"
|
855 |
+
|
856 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
857 |
+
msgid "Name "
|
858 |
+
msgstr "Naam"
|
859 |
+
|
860 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:111
|
861 |
+
msgid "Remove Image"
|
862 |
+
msgstr "Verwijder beeld"
|
863 |
+
|
864 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
865 |
+
msgid "Recomended Size 40px x 40px"
|
866 |
+
msgstr "Aanbevolen grootte 40px x 40 px"
|
867 |
+
|
868 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
|
869 |
+
msgid "Upload Logo"
|
870 |
+
msgstr "Logo opladen"
|
871 |
+
|
872 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:128
|
873 |
+
msgid "Remove Logo"
|
874 |
+
msgstr "Logo verwijderen"
|
875 |
+
|
876 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
|
877 |
+
msgid "Recomended Size 250px x 40px"
|
878 |
+
msgstr "Aanbevolen grootte 250px x 40px"
|
879 |
+
|
880 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
|
881 |
+
msgid "how long it takes for your chat window to pop up"
|
882 |
+
msgstr "hoe lang duurt het voor het chatvenster verschijnt"
|
883 |
+
|
884 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:149
|
885 |
+
msgid "(while online only)"
|
886 |
+
msgstr "(enkel terwijl online)"
|
887 |
+
|
888 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:164
|
889 |
+
msgid "Email address where offline messages are delivered to"
|
890 |
+
msgstr "E-mail adres waarnaar offline berichten verzonden worden"
|
891 |
+
|
892 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
893 |
+
msgid "Sending Method"
|
894 |
+
msgstr "Verzendmethode"
|
895 |
+
|
896 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:173
|
897 |
+
msgid "WP Mail"
|
898 |
+
msgstr "WP Mail"
|
899 |
+
|
900 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:174
|
901 |
+
msgid "PHP Mailer"
|
902 |
+
msgstr "PHP Mailer"
|
903 |
+
|
904 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:186
|
905 |
+
msgid "Host"
|
906 |
+
msgstr "Host"
|
907 |
+
|
908 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:194
|
909 |
+
msgid "Port"
|
910 |
+
msgstr "Poort"
|
911 |
+
|
912 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:202
|
913 |
+
msgid "Username"
|
914 |
+
msgstr "Gebruikersnaam"
|
915 |
+
|
916 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:210
|
917 |
+
msgid "Password"
|
918 |
+
msgstr "Wachtwoord"
|
919 |
+
|
920 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:219
|
921 |
+
msgid "Offline Chat Box Title"
|
922 |
+
msgstr "Offline Chat Box Titel"
|
923 |
+
|
924 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:227
|
925 |
+
msgid "Offline Text Fields"
|
926 |
+
msgstr "Offline Tekstvelden"
|
927 |
+
|
928 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:256
|
929 |
+
msgid "First Section Text"
|
930 |
+
msgstr "Eerste tekstgedeelte"
|
931 |
+
|
932 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:265
|
933 |
+
msgid "Intro Text"
|
934 |
+
msgstr "Introtekst"
|
935 |
+
|
936 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:271
|
937 |
+
msgid "Second Section Text"
|
938 |
+
msgstr "Tweede tekstgedeelte"
|
939 |
+
|
940 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
941 |
+
msgid "Reactivate Chat Section Text"
|
942 |
+
msgstr "Chat tekstgedeelte opnieuw starten"
|
943 |
+
|
944 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:286
|
945 |
+
msgid "User chat welcome"
|
946 |
+
msgstr "Verwelkoming gebruiker van een chatsessie"
|
947 |
+
|
948 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:295
|
949 |
+
msgid "Other text"
|
950 |
+
msgstr "Andere tekst"
|
951 |
+
|
952 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:315
|
953 |
+
msgid ""
|
954 |
+
"To add or remove a user as a chat agent, go into the users profile and "
|
955 |
+
"select the checkbox Chat Agent and click save."
|
956 |
+
msgstr ""
|
957 |
+
"Ga naar het gebruikersprofiel, selecteer de checkbox Chat Operator en klik "
|
958 |
+
"op opslaan om een operator toe te voegen of te verwijderen."
|
959 |
+
|
960 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:316
|
961 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
962 |
+
msgstr ""
|
963 |
+
"Als er geen chatoperatoren online zijn, zal het chatvenster als offline "
|
964 |
+
"weergegeven worden"
|
readme.txt
CHANGED
@@ -24,6 +24,7 @@ The most cost effective Live Chat plugin. Chat with your visitors for free! WP L
|
|
24 |
* No advertising or links
|
25 |
* No "Powered by" links on the live chat window
|
26 |
* No monthly live chat subscriptions needed
|
|
|
27 |
|
28 |
|
29 |
= Pro Version Features =
|
@@ -59,6 +60,17 @@ Our live chat plugin instantly gives you the ability to chat directly with poten
|
|
59 |
|
60 |
Once the live chat plugin is activated, click on "Live Chat" in the left menu navigation. As soon as a visitor lands on your website, their details will be displayed in the live chat control panel. A live chat box will be displayed on their screen. If they fill out their details and click "Start chat", a ringing sound will trigger in your live chat control panel. Once you accept the chat, you can communicate directly with your visitor.
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
= Translations =
|
63 |
Get a free copy of the WP Live Chat Support Pro version in exchange for translating our plugin!
|
64 |
|
@@ -75,7 +87,8 @@ Get a free copy of the WP Live Chat Support Pro version in exchange for translat
|
|
75 |
* Romanian (Sergiu Balaes)
|
76 |
* Czech (Pavel Cvejn)
|
77 |
* Danish (Mikkel Jeppesen Juhl)
|
78 |
-
* Italian (
|
|
|
79 |
* Chinese - Simplified^
|
80 |
* Chinese - Traditional^
|
81 |
|
@@ -100,6 +113,9 @@ Please review the live chat documentation on [our website](http://wp-livechat.co
|
|
100 |
= Does WP Live Chat Support connect to a third party server? =
|
101 |
No. WP Live Chat Support was developed to specifically create and manage live chats on your server. Installing this plugin will essentially turn your website into it's own live chat server. We have put every effort into making this process as smooth as possible while ensuring low resource usage on your host. We have incorporated long polling into the live chat functionality which ensures a quick chat response time between the admin and the user while maintaining a low resource footprint.
|
102 |
|
|
|
|
|
|
|
103 |
= Troubleshooting =
|
104 |
If you're experiencing issues running WP Live Chat Support, please take note of the following:
|
105 |
|
@@ -129,6 +145,13 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
= 4.2.3 2014-12-11 - Low Priority =
|
133 |
* Updated Translations:
|
134 |
* French (Thank you Marcello Cavallucci)
|
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 |
|
29 |
|
30 |
= Pro Version Features =
|
60 |
|
61 |
Once the live chat plugin is activated, click on "Live Chat" in the left menu navigation. As soon as a visitor lands on your website, their details will be displayed in the live chat control panel. A live chat box will be displayed on their screen. If they fill out their details and click "Start chat", a ringing sound will trigger in your live chat control panel. Once you accept the chat, you can communicate directly with your visitor.
|
62 |
|
63 |
+
= Using WP Live Chat Support effectively on your website =
|
64 |
+
One of the most important tasks of your website is to educate potential customers of your product and/or service. By having a live chat window on your website, this gives you the opportunity to do this.
|
65 |
+
|
66 |
+
* Live chat is convenient for customers
|
67 |
+
* Live chat builds trust with your potential customers
|
68 |
+
* Increase sales by using live chat
|
69 |
+
* Take advantage of a fully functional live chat plugin for free. Get Pro features for a once off fee
|
70 |
+
* Reduce costs by using live chat on your website with minimum staff
|
71 |
+
* Learn to understand the pain points of your customers
|
72 |
+
|
73 |
+
|
74 |
= Translations =
|
75 |
Get a free copy of the WP Live Chat Support Pro version in exchange for translating our plugin!
|
76 |
|
87 |
* Romanian (Sergiu Balaes)
|
88 |
* Czech (Pavel Cvejn)
|
89 |
* Danish (Mikkel Jeppesen Juhl)
|
90 |
+
* Italian (Angelo Giammarresi)
|
91 |
+
* Dutch (Elsy Aelvoet)
|
92 |
* Chinese - Simplified^
|
93 |
* Chinese - Traditional^
|
94 |
|
113 |
= Does WP Live Chat Support connect to a third party server? =
|
114 |
No. WP Live Chat Support was developed to specifically create and manage live chats on your server. Installing this plugin will essentially turn your website into it's own live chat server. We have put every effort into making this process as smooth as possible while ensuring low resource usage on your host. We have incorporated long polling into the live chat functionality which ensures a quick chat response time between the admin and the user while maintaining a low resource footprint.
|
115 |
|
116 |
+
= What are desktop notifications? =
|
117 |
+
Desktop notifications are notifications that will appear on the bottom right of your screen when a new live chat is received. This feature is supported in all browsers except Internet Explorer.
|
118 |
+
|
119 |
= Troubleshooting =
|
120 |
If you're experiencing issues running WP Live Chat Support, please take note of the following:
|
121 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 4.2.4 2014-12-17 - Low Priority =
|
149 |
+
* New feature: The live chat window can be hidden when offline (Pro only)
|
150 |
+
* New feature: Desktop notifications added
|
151 |
+
* Bug fix: Email address gave false validation error when not it was required.
|
152 |
+
* Translations Added:
|
153 |
+
* Dutch (Thank you Elsy Aelvoet)
|
154 |
+
|
155 |
= 4.2.3 2014-12-11 - Low Priority =
|
156 |
* Updated Translations:
|
157 |
* French (Thank you Marcello Cavallucci)
|
wp-live-chat-support.php
CHANGED
@@ -3,13 +3,22 @@
|
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
-
Version: 4.2.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
-
/* 4.2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
* Updated Translations:
|
14 |
* French (Thank you Marcello Cavallucci)
|
15 |
* Italian (Thank You Angelo Giammarresi)
|
@@ -105,7 +114,7 @@ global $wplc_tblname_chats;
|
|
105 |
global $wplc_tblname_msgs;
|
106 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
107 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
108 |
-
$wplc_version = "4.2.
|
109 |
|
110 |
define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
|
111 |
define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
|
@@ -231,67 +240,35 @@ function wplc_draw_user_box() {
|
|
231 |
/* Only show to users that are logged in */
|
232 |
if(!is_user_logged_in()){
|
233 |
return;
|
234 |
-
|
235 |
-
} else {
|
236 |
-
|
237 |
-
if($wplc_is_mobile && !isset($wplc_settings['wplc_enabled_on_mobile']) && $wplc_settings['wplc_enabled_on_mobile'] != 1) { return; }
|
238 |
-
if($wplc_settings["wplc_settings_enabled"] == 2) { return; }
|
239 |
-
|
240 |
-
if(isset($wplc_settings['wplc_display_name']) && $wplc_settings['wplc_display_name'] == 1) { $wplc_display = 'display'; } else { $wplc_display = 'hide'; }
|
241 |
-
|
242 |
-
wp_register_script( 'wplc-user-script', plugins_url('/js/wplc_u.js', __FILE__) );
|
243 |
-
wp_enqueue_script( 'wplc-user-script' );
|
244 |
-
wp_localize_script('wplc-user-script', 'wplc_hide_chat', null);
|
245 |
-
wp_localize_script('wplc-user-script', 'wplc_plugin_url', plugins_url());
|
246 |
-
|
247 |
-
wp_localize_script('wplc-user-script', 'wplc_display_name', $wplc_display);
|
248 |
-
|
249 |
-
wp_enqueue_script( 'jquery' );
|
250 |
-
wp_enqueue_script( 'jquery-ui-core' );
|
251 |
-
wp_enqueue_script( 'jquery-ui-draggable');
|
252 |
-
|
253 |
-
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
|
254 |
-
|
255 |
-
if($wplc_user_gravatar != ""){
|
256 |
-
$wplc_grav_image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
257 |
-
} else {
|
258 |
-
$wplc_grav_image = "";
|
259 |
-
}
|
260 |
-
wp_localize_script('wplc-user-script', 'wplc_gravatar_image', $wplc_grav_image);
|
261 |
-
|
262 |
-
wplc_output_box();
|
263 |
-
|
264 |
}
|
265 |
-
}
|
266 |
-
|
|
|
|
|
267 |
|
268 |
-
|
269 |
-
if($wplc_settings["wplc_settings_enabled"] == 2) { return; }
|
270 |
|
271 |
-
|
|
|
272 |
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
wp_localize_script('wplc-user-script', 'wplc_plugin_url', plugins_url());
|
277 |
|
278 |
-
|
279 |
-
|
280 |
-
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
|
281 |
-
|
282 |
-
if($wplc_user_gravatar != ""){
|
283 |
-
$wplc_grav_image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
284 |
-
} else {
|
285 |
-
$wplc_grav_image = "";
|
286 |
-
}
|
287 |
-
wp_localize_script('wplc-user-script', 'wplc_gravatar_image', $wplc_grav_image);
|
288 |
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
}
|
296 |
|
297 |
function wplc_output_box() {
|
@@ -396,7 +373,7 @@ function wplc_output_box() {
|
|
396 |
//Ask the user to enter name and email
|
397 |
?>
|
398 |
<input type="text" name="wplc_name" id="wplc_name" value="<?php echo $wplc_loggedin_user_name; ?>" placeholder="<?php _e("Name","wplivechat"); ?>" />
|
399 |
-
<input type="text" name="wplc_email" id="wplc_email" value="<?php echo $wplc_loggedin_user_email; ?>" placeholder="<?php _e("Email","wplivechat"); ?>" />
|
400 |
<?php
|
401 |
} else {
|
402 |
//Dont ask the user
|
@@ -405,10 +382,10 @@ function wplc_output_box() {
|
|
405 |
echo '</div>';
|
406 |
|
407 |
$wplc_random_user_number = rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
|
408 |
-
|
409 |
?>
|
410 |
<input type="hidden" name="wplc_name" id="wplc_name" value="<?php if($wplc_loggedin_user_name != '') { echo $wplc_loggedin_user_name; } else { echo 'user'.$wplc_random_user_number; } ?>" />
|
411 |
-
<input type="hidden" name="wplc_email" id="wplc_email" value="<?php if($wplc_loggedin_user_email != '') { echo $wplc_loggedin_user_email; } else { echo $wplc_random_user_number.'@'.$wplc_random_user_number.'.com'; } ?>" />
|
412 |
<?php
|
413 |
}
|
414 |
?>
|
@@ -531,13 +508,23 @@ function wplc_superadmin_javascript() {
|
|
531 |
});
|
532 |
}
|
533 |
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
});
|
539 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
|
542 |
</script>
|
543 |
<?php
|
@@ -557,6 +544,11 @@ function wplc_admin_javascript() {
|
|
557 |
var wplc_pending_refresh = null;
|
558 |
|
559 |
var wplc_run = true;
|
|
|
|
|
|
|
|
|
|
|
560 |
function wplc_call_to_server(data) {
|
561 |
|
562 |
|
@@ -568,7 +560,7 @@ function wplc_admin_javascript() {
|
|
568 |
|
569 |
//Update your dashboard gauge
|
570 |
if(response){
|
571 |
-
|
572 |
response = JSON.parse(response);
|
573 |
//console.log(response);
|
574 |
data["wplc_update_admin_chat_table"] = response['wplc_update_admin_chat_table'];
|
@@ -582,17 +574,32 @@ function wplc_admin_javascript() {
|
|
582 |
var ringer_cnt = 0;
|
583 |
wplc_pending_refresh = setInterval(function (){
|
584 |
//console.log("chat request");
|
|
|
|
|
|
|
|
|
|
|
585 |
ringer_cnt++;
|
|
|
586 |
if (ringer_cnt > 1) {
|
587 |
clearInterval(wplc_pending_refresh);
|
588 |
wplc_title_alerts4 = setTimeout(function (){ document.title = orig_title; }, 4000);
|
589 |
return;
|
590 |
}
|
|
|
591 |
document.title = "** CHAT REQUEST **";
|
592 |
wplc_title_alerts2 = setTimeout(function (){ document.title = "** CHAT REQUEST **"; }, 2000);
|
593 |
wplc_title_alerts4 = setTimeout(function (){ document.title = orig_title; }, 4000);
|
594 |
|
595 |
-
document.getElementById("wplc_sound").innerHTML="<embed src='<?php echo plugins_url('/ring.wav', __FILE__); ?>' hidden=true autostart=true loop=false>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
}, 5000);
|
597 |
} else {
|
598 |
//console.log("end");
|
@@ -846,8 +853,6 @@ function wplc_return_admin_chat_javascript($cid) {
|
|
846 |
var wplc_display_name = '<?php echo $display_name; ?>';
|
847 |
var wplc_user_email_address = '<?php echo $wplc_user_email_address; ?>';
|
848 |
|
849 |
-
console.log(wplc_user_email_address);
|
850 |
-
|
851 |
function wplc_call_to_server_admin_chat(data) {
|
852 |
jQuery.ajax({
|
853 |
url: wplc_ajaxurl,
|
@@ -857,7 +862,7 @@ function wplc_return_admin_chat_javascript($cid) {
|
|
857 |
if(response){
|
858 |
|
859 |
response = JSON.parse(response);
|
860 |
-
|
861 |
if(response['action'] === "wplc_update_chat_status"){
|
862 |
data['chat_status'] = response['chat_status'];
|
863 |
wplc_display_chat_status_update(response['chat_status'],cid);
|
@@ -1193,9 +1198,8 @@ function wplc_head_basic() {
|
|
1193 |
if (isset($_POST['wplc_user_alternative_text']) && $_POST['wplc_user_alternative_text'] != '') { $wplc_data['wplc_user_alternative_text'] = esc_attr($_POST['wplc_user_alternative_text']); } else { $wplc_data['wplc_user_alternative_text'] = __("Please click 'Start Chat' to initiate a chat with an agent", "wplivechat"); }
|
1194 |
if (isset($_POST['wplc_enabled_on_mobile'])) { $wplc_data['wplc_enabled_on_mobile'] = esc_attr($_POST['wplc_enabled_on_mobile']); }
|
1195 |
if (isset($_POST['wplc_display_name'])) { $wplc_data['wplc_display_name'] = esc_attr($_POST['wplc_display_name']); }
|
1196 |
-
if (isset($_POST['wplc_display_to_loggedin_only'])) { $wplc_data['wplc_display_to_loggedin_only'] = esc_attr($_POST['wplc_display_to_loggedin_only']); }
|
1197 |
|
1198 |
-
|
1199 |
update_option('WPLC_SETTINGS', $wplc_data);
|
1200 |
if (isset($_POST['wplc_hide_chat'])) { update_option("WPLC_HIDE_CHAT", $_POST['wplc_hide_chat']); }
|
1201 |
|
@@ -1253,16 +1257,45 @@ add_action('wp_logout', 'wplc_logout');
|
|
1253 |
|
1254 |
|
1255 |
function wplc_get_home_path() {
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
+
Version: 4.2.4
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* 4.2.4 2014-12-17 - Low Priority
|
13 |
+
* New feature: The chat window can be hidden when offline (Pro only)
|
14 |
+
* New feature: Desktop notifications added
|
15 |
+
* Bug fix: Email address gave false validation error when not required.
|
16 |
+
*
|
17 |
+
* Translations Added:
|
18 |
+
* Dutch (Thank you Elsy Aelvoet)
|
19 |
+
*
|
20 |
+
*
|
21 |
+
* 4.2.3 2014-12-11 - Low Priority
|
22 |
* Updated Translations:
|
23 |
* French (Thank you Marcello Cavallucci)
|
24 |
* Italian (Thank You Angelo Giammarresi)
|
114 |
global $wplc_tblname_msgs;
|
115 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
116 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
117 |
+
$wplc_version = "4.2.4";
|
118 |
|
119 |
define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
|
120 |
define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
|
240 |
/* Only show to users that are logged in */
|
241 |
if(!is_user_logged_in()){
|
242 |
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
}
|
244 |
+
}
|
245 |
+
/* Show to all users */
|
246 |
+
if($wplc_is_mobile && !isset($wplc_settings['wplc_enabled_on_mobile']) && $wplc_settings['wplc_enabled_on_mobile'] != 1) { return; }
|
247 |
+
if($wplc_settings["wplc_settings_enabled"] == 2) { return; }
|
248 |
|
249 |
+
if(isset($wplc_settings['wplc_display_name']) && $wplc_settings['wplc_display_name'] == 1) { $wplc_display = 'display'; } else { $wplc_display = 'hide'; }
|
|
|
250 |
|
251 |
+
wp_register_script( 'wplc-user-script', plugins_url('/js/wplc_u.js', __FILE__) );
|
252 |
+
wp_enqueue_script( 'wplc-user-script' );
|
253 |
|
254 |
+
wp_localize_script('wplc-user-script', 'wplc_hide_chat', null);
|
255 |
+
wp_localize_script('wplc-user-script', 'wplc_plugin_url', plugins_url());
|
256 |
+
wp_localize_script('wplc-user-script', 'wplc_display_name', $wplc_display);
|
|
|
257 |
|
258 |
+
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
|
260 |
+
if($wplc_user_gravatar != ""){
|
261 |
+
$wplc_grav_image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
262 |
+
} else {
|
263 |
+
$wplc_grav_image = "";
|
|
|
264 |
}
|
265 |
+
wp_localize_script('wplc-user-script', 'wplc_gravatar_image', $wplc_grav_image);
|
266 |
+
|
267 |
+
wp_enqueue_script( 'jquery' );
|
268 |
+
wp_enqueue_script( 'jquery-ui-core' );
|
269 |
+
wp_enqueue_script( 'jquery-ui-draggable');
|
270 |
+
wplc_output_box();
|
271 |
+
|
272 |
}
|
273 |
|
274 |
function wplc_output_box() {
|
373 |
//Ask the user to enter name and email
|
374 |
?>
|
375 |
<input type="text" name="wplc_name" id="wplc_name" value="<?php echo $wplc_loggedin_user_name; ?>" placeholder="<?php _e("Name","wplivechat"); ?>" />
|
376 |
+
<input type="text" name="wplc_email" id="wplc_email" wplc_hide="0" value="<?php echo $wplc_loggedin_user_email; ?>" placeholder="<?php _e("Email","wplivechat"); ?>" />
|
377 |
<?php
|
378 |
} else {
|
379 |
//Dont ask the user
|
382 |
echo '</div>';
|
383 |
|
384 |
$wplc_random_user_number = rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
|
385 |
+
// $wplc_loggedin_user_email = $wplc_random_user_number."@".$wplc_random_user_number.".com";
|
386 |
?>
|
387 |
<input type="hidden" name="wplc_name" id="wplc_name" value="<?php if($wplc_loggedin_user_name != '') { echo $wplc_loggedin_user_name; } else { echo 'user'.$wplc_random_user_number; } ?>" />
|
388 |
+
<input type="hidden" name="wplc_email" id="wplc_email" wplc_hide="1" value="<?php if($wplc_loggedin_user_email != '' && $wplc_loggedin_user_email != null) { echo $wplc_loggedin_user_email; } else { echo $wplc_random_user_number.'@'.$wplc_random_user_number.'.com'; } ?>" />
|
389 |
<?php
|
390 |
}
|
391 |
?>
|
508 |
});
|
509 |
}
|
510 |
|
|
|
|
|
|
|
|
|
511 |
});
|
512 |
|
513 |
+
function wplc_desktop_notification() {
|
514 |
+
if(typeof Notification !== 'undefined'){
|
515 |
+
if (!Notification) {
|
516 |
+
return;
|
517 |
+
}
|
518 |
+
if (Notification.permission !== "granted")
|
519 |
+
Notification.requestPermission();
|
520 |
|
521 |
+
var wplc_desktop_notification = new Notification('New chat received', {
|
522 |
+
icon: wplc_notification_icon_url,
|
523 |
+
body: "A new chat has been received. Please go the 'Live Chat' page to accept the chat"
|
524 |
+
});
|
525 |
+
//Notification.close()
|
526 |
+
}
|
527 |
+
}
|
528 |
|
529 |
</script>
|
530 |
<?php
|
544 |
var wplc_pending_refresh = null;
|
545 |
|
546 |
var wplc_run = true;
|
547 |
+
|
548 |
+
var wplc_notification_icon_url = '<?php echo plugins_url('/images/wplc_notification_icon.png', __FILE__); ?>';
|
549 |
+
|
550 |
+
|
551 |
+
|
552 |
function wplc_call_to_server(data) {
|
553 |
|
554 |
|
560 |
|
561 |
//Update your dashboard gauge
|
562 |
if(response){
|
563 |
+
// console.log('Running');
|
564 |
response = JSON.parse(response);
|
565 |
//console.log(response);
|
566 |
data["wplc_update_admin_chat_table"] = response['wplc_update_admin_chat_table'];
|
574 |
var ringer_cnt = 0;
|
575 |
wplc_pending_refresh = setInterval(function (){
|
576 |
//console.log("chat request");
|
577 |
+
|
578 |
+
if(ringer_cnt <= 0){
|
579 |
+
wplc_desktop_notification();
|
580 |
+
}
|
581 |
+
|
582 |
ringer_cnt++;
|
583 |
+
|
584 |
if (ringer_cnt > 1) {
|
585 |
clearInterval(wplc_pending_refresh);
|
586 |
wplc_title_alerts4 = setTimeout(function (){ document.title = orig_title; }, 4000);
|
587 |
return;
|
588 |
}
|
589 |
+
|
590 |
document.title = "** CHAT REQUEST **";
|
591 |
wplc_title_alerts2 = setTimeout(function (){ document.title = "** CHAT REQUEST **"; }, 2000);
|
592 |
wplc_title_alerts4 = setTimeout(function (){ document.title = orig_title; }, 4000);
|
593 |
|
594 |
+
// document.getElementById("wplc_sound").innerHTML="<embed src='<?php // echo plugins_url('/ring.wav', __FILE__); ?>' hidden=true autostart=true loop=false>";
|
595 |
+
|
596 |
+
var wplc_notify_sound = '<?php echo plugins_url('/ring.wav', __FILE__); ?>';
|
597 |
+
var wplc_notify_chat = new Audio(wplc_notify_sound);
|
598 |
+
|
599 |
+
if(ringer_cnt < 5){
|
600 |
+
wplc_notify_chat.play();
|
601 |
+
}
|
602 |
+
|
603 |
}, 5000);
|
604 |
} else {
|
605 |
//console.log("end");
|
853 |
var wplc_display_name = '<?php echo $display_name; ?>';
|
854 |
var wplc_user_email_address = '<?php echo $wplc_user_email_address; ?>';
|
855 |
|
|
|
|
|
856 |
function wplc_call_to_server_admin_chat(data) {
|
857 |
jQuery.ajax({
|
858 |
url: wplc_ajaxurl,
|
862 |
if(response){
|
863 |
|
864 |
response = JSON.parse(response);
|
865 |
+
// console.log(response);
|
866 |
if(response['action'] === "wplc_update_chat_status"){
|
867 |
data['chat_status'] = response['chat_status'];
|
868 |
wplc_display_chat_status_update(response['chat_status'],cid);
|
1198 |
if (isset($_POST['wplc_user_alternative_text']) && $_POST['wplc_user_alternative_text'] != '') { $wplc_data['wplc_user_alternative_text'] = esc_attr($_POST['wplc_user_alternative_text']); } else { $wplc_data['wplc_user_alternative_text'] = __("Please click 'Start Chat' to initiate a chat with an agent", "wplivechat"); }
|
1199 |
if (isset($_POST['wplc_enabled_on_mobile'])) { $wplc_data['wplc_enabled_on_mobile'] = esc_attr($_POST['wplc_enabled_on_mobile']); }
|
1200 |
if (isset($_POST['wplc_display_name'])) { $wplc_data['wplc_display_name'] = esc_attr($_POST['wplc_display_name']); }
|
1201 |
+
if (isset($_POST['wplc_display_to_loggedin_only'])) { $wplc_data['wplc_display_to_loggedin_only'] = esc_attr($_POST['wplc_display_to_loggedin_only']); }
|
1202 |
|
|
|
1203 |
update_option('WPLC_SETTINGS', $wplc_data);
|
1204 |
if (isset($_POST['wplc_hide_chat'])) { update_option("WPLC_HIDE_CHAT", $_POST['wplc_hide_chat']); }
|
1205 |
|
1257 |
|
1258 |
|
1259 |
function wplc_get_home_path() {
|
1260 |
+
$home = get_option( 'home' );
|
1261 |
+
$siteurl = get_option( 'siteurl' );
|
1262 |
+
if ( ! empty( $home ) && 0 !== strcasecmp( $home, $siteurl ) ) {
|
1263 |
+
$wp_path_rel_to_home = str_ireplace( $home, '', $siteurl ); /* $siteurl - $home */
|
1264 |
+
$pos = strripos( str_replace( '\\', '/', $_SERVER['SCRIPT_FILENAME'] ), trailingslashit( $wp_path_rel_to_home ) );
|
1265 |
+
$home_path = substr( $_SERVER['SCRIPT_FILENAME'], 0, $pos );
|
1266 |
+
$home_path = trailingslashit( $home_path );
|
1267 |
+
} else {
|
1268 |
+
$home_path = ABSPATH;
|
1269 |
+
}
|
1270 |
+
return str_replace( '\\', '/', $home_path );
|
1271 |
+
}
|
1272 |
+
|
1273 |
+
/* Error Checks */
|
1274 |
+
//if(!function_exists('set_time_limit')){
|
1275 |
+
// if(is_admin()){
|
1276 |
+
// echo "
|
1277 |
+
// <div class='error'>
|
1278 |
+
// <p>".__("WPLC: set_time_limit() is not enabled on this server. You may experience issues while using WP Live Chat Support as a result of this. Please get in contact your host to get this function enabled.", "wplivechat")."</p>
|
1279 |
+
// </div>";
|
1280 |
+
// }
|
1281 |
+
//}
|
1282 |
+
//if(defined('WP_MEMORY_LIMIT')){
|
1283 |
+
// $wplc_memory_limit = strtr(WP_MEMORY_LIMIT, array('M' => ""));
|
1284 |
+
// $wplc_memory_limit = intval($wplc_memory_limit);
|
1285 |
+
// if($wplc_memory_limit < 40){
|
1286 |
+
// if(is_admin()){
|
1287 |
+
// echo "
|
1288 |
+
// <div class='error'>
|
1289 |
+
// <p>".__("WPLC: Your WordPress install currently only has ".WP_MEMORY_LIMIT. " available to it. You may experience issues while using WP Live Chat Support as a result of this. For assistance in increasing your memory limit, please contact support.", "wplivechat")."</p>
|
1290 |
+
// </div>";
|
1291 |
+
// }
|
1292 |
+
// }
|
1293 |
+
//}
|
1294 |
+
//if(ini_get('safe_mode')){
|
1295 |
+
// if(is_admin()){
|
1296 |
+
// echo "
|
1297 |
+
// <div class='error'>
|
1298 |
+
// <p>".__("WPLC: Safe mode is enabled on this server. You may experience issues while using WP Live Chat Support as a result of this. Please contact your host to get safe mode disabled.", "wplivechat")."</p>
|
1299 |
+
// </div>";
|
1300 |
+
// }
|
1301 |
+
//}
|