Version Description
Espresso - 2015-07-03 - Low Priority = * Enhancement: Provision made for live chat encryption in the Pro version (compatibility) * Updated Translations: * Hungarian (Thank you Andor Molnar)
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 4.3.5 |
Comparing to | |
See all releases |
Code changes from version 4.3.4 to 4.3.5
- functions.php +15 -1
- includes/settings_page.php +24 -7
- languages/wplivechat-hu.mo +0 -0
- languages/wplivechat-hu.po +1744 -0
- readme.txt +7 -1
- wp-live-chat-support.php +10 -5
functions.php
CHANGED
@@ -311,11 +311,16 @@ function wplc_return_user_chat_messages($cid) {
|
|
311 |
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim(sanitize_text_field($_COOKIE['wplc_email'])))); } else { $wplc_user_gravatar = ""; }
|
312 |
|
313 |
if($wplc_user_gravatar != ""){
|
314 |
-
$image = "<img src='
|
315 |
} else {
|
316 |
$image = "";
|
317 |
}
|
318 |
}
|
|
|
|
|
|
|
|
|
|
|
319 |
|
320 |
if($display_name){
|
321 |
$msg_hist .= "<span class='wplc-admin-message'>$image <strong>$from</strong>: $msg</span><br /><div class='wplc-clear-float-message'></div>";
|
@@ -406,6 +411,10 @@ function wplc_return_chat_messages($cid) {
|
|
406 |
}
|
407 |
}
|
408 |
|
|
|
|
|
|
|
|
|
409 |
if($display_name){
|
410 |
$msg_hist .= "<span class='$class'>$image <strong>$from</strong>: $msg</span><br /><div class='wplc-clear-float-message'></div>";
|
411 |
} else {
|
@@ -497,6 +506,11 @@ function wplc_return_admin_chat_messages($cid) {
|
|
497 |
$image = "";
|
498 |
}
|
499 |
}
|
|
|
|
|
|
|
|
|
|
|
500 |
if($display_name){
|
501 |
$msg_hist .= "<span class='wplc-user-message'>".$image."<strong>$from</strong>: $msg</span><br /><div class='wplc-clear-float-message'></div>";
|
502 |
} else {
|
311 |
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim(sanitize_text_field($_COOKIE['wplc_email'])))); } else { $wplc_user_gravatar = ""; }
|
312 |
|
313 |
if($wplc_user_gravatar != ""){
|
314 |
+
$image = "<img src='//www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
315 |
} else {
|
316 |
$image = "";
|
317 |
}
|
318 |
}
|
319 |
+
|
320 |
+
if(function_exists('wplc_decrypt_msg')){
|
321 |
+
$msg = wplc_decrypt_msg($msg);
|
322 |
+
}
|
323 |
+
|
324 |
|
325 |
if($display_name){
|
326 |
$msg_hist .= "<span class='wplc-admin-message'>$image <strong>$from</strong>: $msg</span><br /><div class='wplc-clear-float-message'></div>";
|
411 |
}
|
412 |
}
|
413 |
|
414 |
+
if(function_exists('wplc_decrypt_msg')){
|
415 |
+
$msg = wplc_decrypt_msg($msg);
|
416 |
+
}
|
417 |
+
|
418 |
if($display_name){
|
419 |
$msg_hist .= "<span class='$class'>$image <strong>$from</strong>: $msg</span><br /><div class='wplc-clear-float-message'></div>";
|
420 |
} else {
|
506 |
$image = "";
|
507 |
}
|
508 |
}
|
509 |
+
|
510 |
+
if(function_exists('wplc_decrypt_msg')){
|
511 |
+
$msg = wplc_decrypt_msg($msg);
|
512 |
+
}
|
513 |
+
|
514 |
if($display_name){
|
515 |
$msg_hist .= "<span class='wplc-user-message'>".$image."<strong>$from</strong>: $msg</span><br /><div class='wplc-clear-float-message'></div>";
|
516 |
} else {
|
includes/settings_page.php
CHANGED
@@ -7,7 +7,6 @@
|
|
7 |
<div id="icon-edit" class="icon32 icon32-posts-post">
|
8 |
<br>
|
9 |
</div>
|
10 |
-
<!--<i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title=""></i>-->
|
11 |
<h2><?php _e("WP Live Chat Support Settings","wplivechat")?></h2>
|
12 |
<?php
|
13 |
$wplc_settings = get_option("WPLC_SETTINGS");
|
@@ -22,12 +21,13 @@
|
|
22 |
|
23 |
<div id="wplc_tabs">
|
24 |
<ul>
|
25 |
-
<li><a href="#tabs-1"
|
26 |
-
<li><a href="#tabs-2"
|
27 |
-
<li><a href="#tabs-3"
|
28 |
-
<li><a href="#tabs-4"
|
29 |
-
<li><a href="#tabs-5"
|
30 |
-
<li><a href="#tabs-7"
|
|
|
31 |
</ul>
|
32 |
<div id="tabs-1">
|
33 |
<h3><?php _e("Main Settings",'wplivechat')?></h3>
|
@@ -459,6 +459,23 @@
|
|
459 |
?></textarea>
|
460 |
<p class="description"><?php _e('Blocking a user\'s IP Address here will hide the chat window from them, preventing them from chatting with you. Each IP Address must be on a new line', 'wplivechat'); ?></p>
|
461 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
</div>
|
463 |
<p class='submit'><input type='submit' name='wplc_save_settings' class='button-primary' value='<?php _e("Save Settings","wplivechat")?>' /></p>
|
464 |
</form>
|
7 |
<div id="icon-edit" class="icon32 icon32-posts-post">
|
8 |
<br>
|
9 |
</div>
|
|
|
10 |
<h2><?php _e("WP Live Chat Support Settings","wplivechat")?></h2>
|
11 |
<?php
|
12 |
$wplc_settings = get_option("WPLC_SETTINGS");
|
21 |
|
22 |
<div id="wplc_tabs">
|
23 |
<ul>
|
24 |
+
<li><a href="#tabs-1"><i class="fa fa-gear"></i> <?php _e("General Settings","wplivechat")?></a></li>
|
25 |
+
<li><a href="#tabs-2"><i class="fa fa-envelope"></i> <?php _e("Chat Box","wplivechat")?></a></li>
|
26 |
+
<li><a href="#tabs-3"><i class="fa fa-book"></i> <?php _e("Offline Messages","wplivechat")?></a></li>
|
27 |
+
<li><a href="#tabs-4"><i class="fa fa-pencil"></i> <?php _e("Styling","wplivechat")?></a></li>
|
28 |
+
<li><a href="#tabs-5"><i class="fa fa-users"></i> <?php _e("Agents", "wplivechat") ?></a></li>
|
29 |
+
<li><a href="#tabs-7"><i class="fa fa-gavel"></i> <?php _e("Blocked Visitors", "wplivechat") ?></a></li>
|
30 |
+
<li><a href="#tabs-8"><i class="fa fa-lock"></i> <?php _e("Encryption", "wplivechat") ?></a></li>
|
31 |
</ul>
|
32 |
<div id="tabs-1">
|
33 |
<h3><?php _e("Main Settings",'wplivechat')?></h3>
|
459 |
?></textarea>
|
460 |
<p class="description"><?php _e('Blocking a user\'s IP Address here will hide the chat window from them, preventing them from chatting with you. Each IP Address must be on a new line', 'wplivechat'); ?></p>
|
461 |
</div>
|
462 |
+
<div id="tabs-8">
|
463 |
+
<h3><?php _e("Chat Encryption", "wplivechat") ?></h3>
|
464 |
+
<table class='form-table' width='700'>
|
465 |
+
<tr>
|
466 |
+
<td width='200' valign='top'><?php _e("Enable Encryption", "wplivechat") ?>: <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?php _e('All messages will be encrypted when being sent to and from the user and agent.', 'wplivechat'); ?>"></i></td>
|
467 |
+
<td>
|
468 |
+
<input type="checkbox" disabled readonly/>
|
469 |
+
<small>
|
470 |
+
<i> <?php _e("Encrypt your chat messages in the ","wplivechat")?>
|
471 |
+
<a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=encryption" title="<?php _e("Pro Add-on","wplivechat")?>" target="_BLANK"><?php _e("Pro Add-on","wplivechat")?></a>
|
472 |
+
</i>
|
473 |
+
</small>
|
474 |
+
</td>
|
475 |
+
</tr>
|
476 |
+
|
477 |
+
</table>
|
478 |
+
</div>
|
479 |
</div>
|
480 |
<p class='submit'><input type='submit' name='wplc_save_settings' class='button-primary' value='<?php _e("Save Settings","wplivechat")?>' /></p>
|
481 |
</form>
|
languages/wplivechat-hu.mo
ADDED
Binary file
|
languages/wplivechat-hu.po
ADDED
@@ -0,0 +1,1744 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2015-05-29 10:19+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-05-29 10:53+0100\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.7.6\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:283
|
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 "Admin kilépett, a beszélgetés befejeződött"
|
24 |
+
|
25 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:318
|
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 "Nincs válasz, később próbálja újra!"
|
29 |
+
|
30 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
|
31 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:933
|
32 |
+
msgid "Visitors on site"
|
33 |
+
msgstr "Látogató az oldalon"
|
34 |
+
|
35 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:40
|
36 |
+
msgid "Initiate Chat"
|
37 |
+
msgstr "Párbeszéd kezdeményezése"
|
38 |
+
|
39 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:42
|
40 |
+
msgid "You must be a chat agent to initiate chats"
|
41 |
+
msgstr "Beszélgetés csak operátorként kezdeményezhető"
|
42 |
+
|
43 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:53
|
44 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
|
45 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1229
|
46 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
|
47 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:999
|
48 |
+
msgid "IP Address not recorded"
|
49 |
+
msgstr "Nem regisztrált IP cím"
|
50 |
+
|
51 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:55
|
52 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:207
|
53 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1231
|
54 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:207
|
55 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1001
|
56 |
+
msgid "Whois for"
|
57 |
+
msgstr "Ki az "
|
58 |
+
|
59 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:87
|
60 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:257
|
61 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1268
|
62 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:241
|
63 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1023
|
64 |
+
msgid "Site Info"
|
65 |
+
msgstr "Oldal információ"
|
66 |
+
|
67 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:89
|
68 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:259
|
69 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1270
|
70 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:243
|
71 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1025
|
72 |
+
msgid "Chat initiated on:"
|
73 |
+
msgstr "Beszélgetés kezdeményezve:"
|
74 |
+
|
75 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:93
|
76 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:263
|
77 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1274
|
78 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:247
|
79 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1029
|
80 |
+
msgid "Advanced Info"
|
81 |
+
msgstr "Fejlesztői info"
|
82 |
+
|
83 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
|
84 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:265
|
85 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1276
|
86 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:249
|
87 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1031
|
88 |
+
msgid "Browser:"
|
89 |
+
msgstr "Böngésző:"
|
90 |
+
|
91 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:96
|
92 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:266
|
93 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1277
|
94 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:250
|
95 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1032
|
96 |
+
msgid "IP Address:"
|
97 |
+
msgstr "IP cím:"
|
98 |
+
|
99 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
|
100 |
+
msgid "No visitors on-line at the moment"
|
101 |
+
msgstr "Jelenleg nincs látogató"
|
102 |
+
|
103 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:182
|
104 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:188
|
105 |
+
msgid "No chat sessions available at the moment"
|
106 |
+
msgstr "Jelenleg nincs aktív beszélgetés"
|
107 |
+
|
108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:184
|
109 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:190
|
110 |
+
msgid "Active Chats"
|
111 |
+
msgstr "Aktív párbeszéd"
|
112 |
+
|
113 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
114 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
115 |
+
msgid "Accept Chat"
|
116 |
+
msgstr "Párbeszéd fogadása"
|
117 |
+
|
118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
119 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
120 |
+
msgid "Incoming Chat"
|
121 |
+
msgstr "Bejövő párbeszéd"
|
122 |
+
|
123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
124 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
125 |
+
msgid "You have an incoming chat."
|
126 |
+
msgstr "Bejövő beszélgetés "
|
127 |
+
|
128 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:219
|
129 |
+
msgid "You must be a chat agent to answer chats"
|
130 |
+
msgstr "Válaszadáshoz operátornak kell lenni "
|
131 |
+
|
132 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:225
|
133 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:218
|
134 |
+
msgid "Open Chat Window"
|
135 |
+
msgstr "Párbeszéd ablak megnyitása"
|
136 |
+
|
137 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
138 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
139 |
+
msgid "Chat Active"
|
140 |
+
msgstr "Aktív párbeszéd"
|
141 |
+
|
142 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
143 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
144 |
+
msgid "This chat is active"
|
145 |
+
msgstr "Ez a párbeszéd aktív"
|
146 |
+
|
147 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:229
|
148 |
+
msgid "Chat has been answered by another agent"
|
149 |
+
msgstr "A beszélgetést épp most válaszolta meg egy másik operátor "
|
150 |
+
|
151 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
|
152 |
+
msgid "Chat answered by another agent"
|
153 |
+
msgstr "A beszélgetést már megválaszolta egy operátor"
|
154 |
+
|
155 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:288
|
156 |
+
msgid "WP Live Chat Support - Offline Message from "
|
157 |
+
msgstr "WP Live Chat Support - Offline üzenet érkezett"
|
158 |
+
|
159 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
160 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:733
|
161 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:646
|
162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:850
|
163 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:887
|
164 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:883
|
165 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:171
|
166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:520
|
167 |
+
msgid "Name"
|
168 |
+
msgstr "Név"
|
169 |
+
|
170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
171 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:734
|
172 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:647
|
173 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:851
|
174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:888
|
175 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:884
|
176 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:521
|
177 |
+
msgid "Email"
|
178 |
+
msgstr "Email"
|
179 |
+
|
180 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
181 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:735
|
182 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:889
|
183 |
+
msgid "Message"
|
184 |
+
msgstr "Üzenet"
|
185 |
+
|
186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
187 |
+
msgid "Via WP Live Chat Support"
|
188 |
+
msgstr "WP Live Chat Support által"
|
189 |
+
|
190 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:337
|
191 |
+
msgid "Alert: Someone wants to chat with you on "
|
192 |
+
msgstr "Figyelem: Valaki beszélgetni szeretne"
|
193 |
+
|
194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
195 |
+
msgid "Someone wants to chat with you on your website"
|
196 |
+
msgstr "Valaki beszélgetni szeretne a weboldalon"
|
197 |
+
|
198 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
199 |
+
msgid "Log in"
|
200 |
+
msgstr "Bejelentkezés"
|
201 |
+
|
202 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:512
|
203 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:528
|
204 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:543
|
205 |
+
msgid "Chat Agent"
|
206 |
+
msgstr "Operátor"
|
207 |
+
|
208 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:517
|
209 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:533
|
210 |
+
msgid "Make this user a chat agent"
|
211 |
+
msgstr "A felhasználó operátorrá módosítása "
|
212 |
+
|
213 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:547
|
214 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
215 |
+
msgstr "Felhasználóként nincs jogosultsága operátort létrehozni"
|
216 |
+
|
217 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:548
|
218 |
+
msgid "Please contact the administrator of this website to change this."
|
219 |
+
msgstr ""
|
220 |
+
"Ehhez a módosításhoz vegye fel a kapcsolatot a weboldal Adminisztrátorával."
|
221 |
+
|
222 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:634
|
223 |
+
msgid "Chat Agent Online"
|
224 |
+
msgstr "Operátor online"
|
225 |
+
|
226 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
|
227 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:641
|
228 |
+
msgid "Chat Agents Online"
|
229 |
+
msgstr "Operátorok online"
|
230 |
+
|
231 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:732
|
232 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:645
|
233 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:882
|
234 |
+
msgid "Date"
|
235 |
+
msgstr "Dátum"
|
236 |
+
|
237 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:749
|
238 |
+
msgid "You have not received any offline messages."
|
239 |
+
msgstr "Nincs új offline üzenet"
|
240 |
+
|
241 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:20
|
242 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:11
|
243 |
+
msgid "WP Live Chat Support Settings"
|
244 |
+
msgstr "WP Live Chat Support beállítások"
|
245 |
+
|
246 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:31
|
247 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
248 |
+
msgid "General Settings"
|
249 |
+
msgstr "Általános beállítások"
|
250 |
+
|
251 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:32
|
252 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
253 |
+
msgid "Chat Box"
|
254 |
+
msgstr "Párbeszéd ablak"
|
255 |
+
|
256 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
|
257 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:250
|
258 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1973
|
259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
|
260 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:275
|
261 |
+
msgid "Offline Messages"
|
262 |
+
msgstr "Offline üzenetek"
|
263 |
+
|
264 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
|
265 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
266 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
267 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:329
|
268 |
+
msgid "Styling"
|
269 |
+
msgstr "Stílus"
|
270 |
+
|
271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
|
272 |
+
msgid "Chat Agents"
|
273 |
+
msgstr "Operátor"
|
274 |
+
|
275 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
|
276 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
277 |
+
msgid "Blocked Visitors"
|
278 |
+
msgstr "Kitiltott látogató"
|
279 |
+
|
280 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:37
|
281 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:580
|
282 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
283 |
+
msgid "Chat Experience Ratings"
|
284 |
+
msgstr "Párbeszéd ablak beállításai"
|
285 |
+
|
286 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
|
287 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
|
288 |
+
msgid "Main Settings"
|
289 |
+
msgstr "Beállítások"
|
290 |
+
|
291 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
|
292 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:36
|
293 |
+
msgid "Chat enabled"
|
294 |
+
msgstr "Párbeszéd elérhető"
|
295 |
+
|
296 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
|
297 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
|
298 |
+
msgid "Yes"
|
299 |
+
msgstr "Igen"
|
300 |
+
|
301 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:47
|
302 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
|
303 |
+
msgid "No"
|
304 |
+
msgstr "Nem"
|
305 |
+
|
306 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:53
|
307 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
|
308 |
+
msgid "Choose when I want to be online"
|
309 |
+
msgstr "Online mód kiválasztása."
|
310 |
+
|
311 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:53
|
312 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
|
313 |
+
msgid ""
|
314 |
+
"Checking this will allow you to change your status to Online or Offline on "
|
315 |
+
"the Live Chat page."
|
316 |
+
msgstr ""
|
317 |
+
"Itt változtatható a státusz \"online\"-ra vagy \"offline\"-ra a \"Live Chat"
|
318 |
+
"\" oldalon"
|
319 |
+
|
320 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
|
321 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
322 |
+
msgid "Hide Chat"
|
323 |
+
msgstr "Beszélgetés elrejtése"
|
324 |
+
|
325 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
|
326 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
327 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
328 |
+
msgstr "Beszélgetés elrejtése 24 órára, ha a felhasználó a \"X\"-re kattint"
|
329 |
+
|
330 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
331 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
332 |
+
msgid "Require Name And Email"
|
333 |
+
msgstr "Név és email megadása szükséges"
|
334 |
+
|
335 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
336 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
337 |
+
msgid ""
|
338 |
+
"Users will have to enter their Name and Email Address when starting a chat"
|
339 |
+
msgstr ""
|
340 |
+
"A felhasználóknak meg kell adniuk a nevüket és email-címüket a beszélgetés "
|
341 |
+
"kezdetekor"
|
342 |
+
|
343 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
344 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
345 |
+
msgid "Input Field Replacement Text"
|
346 |
+
msgstr "A helyettesítő szöveg beviteli mezője"
|
347 |
+
|
348 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
349 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
350 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
351 |
+
msgstr "Ez a szöveg lesz látható a név és email mezőben"
|
352 |
+
|
353 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
354 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
355 |
+
msgid "Use Logged In User Details"
|
356 |
+
msgstr "Használja a bejelentkezett felhasználói adatokat"
|
357 |
+
|
358 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
359 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
360 |
+
msgid ""
|
361 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
362 |
+
"in."
|
363 |
+
msgstr "A felhasználó neve és email-címe lesz alapértelmezett bejelentkezéskor"
|
364 |
+
|
365 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:94
|
366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
367 |
+
msgid "Enable On Mobile Devices"
|
368 |
+
msgstr "Elérhető mobil eszközön"
|
369 |
+
|
370 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:94
|
371 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
372 |
+
msgid ""
|
373 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
374 |
+
"devices. (Smartphones and Tablets)"
|
375 |
+
msgstr ""
|
376 |
+
"Ennek letiltásával a beszélgetés ablak nem fog megjelenni mobil eszközökön "
|
377 |
+
"(okostelefon és tablet)"
|
378 |
+
|
379 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:102
|
380 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
|
381 |
+
msgid "Record a visitor's IP Address"
|
382 |
+
msgstr "Jegyezze meg a látogató IP címét"
|
383 |
+
|
384 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:102
|
385 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
|
386 |
+
msgid "Disable this to enable anonymity for your visitors"
|
387 |
+
msgstr "Ennek beállításával a látogatói anonimitás érhető el."
|
388 |
+
|
389 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:110
|
390 |
+
msgid "Include chat window on the following pages:"
|
391 |
+
msgstr "A beszélgetés a következő oldalakon jelenjen meg"
|
392 |
+
|
393 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:110
|
394 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
395 |
+
msgid ""
|
396 |
+
"Show the chat window on the following pages. Leave blank to show on all. "
|
397 |
+
"(Use comma-separated Page ID's)"
|
398 |
+
msgstr ""
|
399 |
+
"A beszélgetés a következő oldalakon legyen látható (oldal ID vesszővel "
|
400 |
+
"elválasztva). Hagyja üresen, ha mindegyiken szeretné. "
|
401 |
+
|
402 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
403 |
+
msgid "Exclude chat window on the following pages:"
|
404 |
+
msgstr "Párbeszéd ablakok kizárása a következő oldalakon:"
|
405 |
+
|
406 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
407 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
408 |
+
msgid ""
|
409 |
+
"Do not show the chat window on the following pages. Leave blank to show on "
|
410 |
+
"all. (Use comma-separated Page ID's)"
|
411 |
+
msgstr "A beszélgetés a következő abalakokon ne legyen látható:"
|
412 |
+
|
413 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
|
414 |
+
msgid "Allow any user to make themselves a chat agent"
|
415 |
+
msgstr "Bármilyen felhasználó számára oparátori jogosultság engedélyezése"
|
416 |
+
|
417 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
|
418 |
+
msgid ""
|
419 |
+
"Checking this will allow any of your users to make themselves a chat agent "
|
420 |
+
"when editing their profile."
|
421 |
+
msgstr ""
|
422 |
+
"Ennek bejelölése esetén, engedélyezheti, hogy bármelyik felhasználó "
|
423 |
+
"operátori jogosultsággal rendelkezzen, amikor a saját profiljukat "
|
424 |
+
"szerkesztik."
|
425 |
+
|
426 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:136
|
427 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
428 |
+
msgid "Chat Window Settings"
|
429 |
+
msgstr "Párbeszéd ablak beállításai"
|
430 |
+
|
431 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:139
|
432 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:150
|
433 |
+
msgid "Chat box alignment"
|
434 |
+
msgstr "Párbeszéd ablak igazítása"
|
435 |
+
|
436 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:142
|
437 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
438 |
+
msgid "Bottom left"
|
439 |
+
msgstr "Bal alsó"
|
440 |
+
|
441 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:143
|
442 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
|
443 |
+
msgid "Bottom right"
|
444 |
+
msgstr "Jobb alsó"
|
445 |
+
|
446 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
447 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:155
|
448 |
+
msgid "Left"
|
449 |
+
msgstr "Bal"
|
450 |
+
|
451 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:145
|
452 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:156
|
453 |
+
msgid "Right"
|
454 |
+
msgstr "Jobb"
|
455 |
+
|
456 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:151
|
457 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
|
458 |
+
msgid "Auto Pop-up"
|
459 |
+
msgstr "Automatikus felugrás"
|
460 |
+
|
461 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:151
|
462 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
|
463 |
+
msgid ""
|
464 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
465 |
+
"email address)."
|
466 |
+
msgstr ""
|
467 |
+
"Párbeszéd abalak automatikus kiterjesztése (kötelező megadni a felhasználó "
|
468 |
+
"nevét és email címet)"
|
469 |
+
|
470 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:160
|
471 |
+
msgid "Name "
|
472 |
+
msgstr "Név"
|
473 |
+
|
474 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:174
|
475 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
|
476 |
+
msgid "Picture"
|
477 |
+
msgstr "Kép"
|
478 |
+
|
479 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
480 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
|
481 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
482 |
+
msgid "Upload Image"
|
483 |
+
msgstr "Kép feltöltése"
|
484 |
+
|
485 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:184
|
486 |
+
msgid "Remove Image"
|
487 |
+
msgstr "Kép eltávolítása"
|
488 |
+
|
489 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:185
|
490 |
+
msgid "Recomended Size 40px x 40px"
|
491 |
+
msgstr "Ajánlott képméret: 40px x 40px"
|
492 |
+
|
493 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:191
|
494 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
|
495 |
+
msgid "Logo"
|
496 |
+
msgstr "Logo"
|
497 |
+
|
498 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:199
|
499 |
+
msgid "Upload Logo"
|
500 |
+
msgstr "Logo feltöltés"
|
501 |
+
|
502 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:201
|
503 |
+
msgid "Remove Logo"
|
504 |
+
msgstr "Logo eltávolítása"
|
505 |
+
|
506 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:202
|
507 |
+
msgid "Recomended Size 250px x 40px"
|
508 |
+
msgstr "Ajánlott méret: 250px x 40px"
|
509 |
+
|
510 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
511 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
512 |
+
msgid "Chat delay (seconds)"
|
513 |
+
msgstr "Párbeszéd késleltetés (másodpercenként)"
|
514 |
+
|
515 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
516 |
+
msgid "How long it takes for your chat window to pop up"
|
517 |
+
msgstr "mennyi ideig maradjon nyitva a párbeszéd ablak"
|
518 |
+
|
519 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
|
520 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:235
|
521 |
+
msgid "Chat notifications"
|
522 |
+
msgstr "Párbeszéd értesítések"
|
523 |
+
|
524 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
|
525 |
+
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
526 |
+
msgstr ""
|
527 |
+
"Azonnal értesítsen email-ben amint valaki beszélgetést akar kezdeményezni"
|
528 |
+
|
529 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
|
530 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
531 |
+
msgid "Display name and avatar in chat"
|
532 |
+
msgstr "Logo és név megjelenítése a párbeszéd ablakon"
|
533 |
+
|
534 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
|
535 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
536 |
+
msgid "Display the agent and user name above each message in the chat window."
|
537 |
+
msgstr ""
|
538 |
+
"Jelenítse meg az operátor és felhasználó nevét minden párbeszéd abalak "
|
539 |
+
"felett."
|
540 |
+
|
541 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:235
|
542 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
|
543 |
+
msgid "Only show the chat window to users that are logged in"
|
544 |
+
msgstr "Csak bejelentkezett felhasználóknak jelenjen meg a párbeszéd ablak."
|
545 |
+
|
546 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:235
|
547 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
|
548 |
+
msgid ""
|
549 |
+
"By checking this, only users that are logged in will be able to chat with "
|
550 |
+
"you."
|
551 |
+
msgstr ""
|
552 |
+
"Ennek bejelölése esetén, csak a bejelentkezett felhasználók lesznek képesek "
|
553 |
+
"párbeszéd kezdeményezésére."
|
554 |
+
|
555 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:254
|
556 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:279
|
557 |
+
msgid "Do not allow users to send offline messages"
|
558 |
+
msgstr "Ne engedélyezze a felhasználóknak az offline üzenetek küldését"
|
559 |
+
|
560 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:254
|
561 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:279
|
562 |
+
msgid ""
|
563 |
+
"The chat window will be hidden when it is offline. Users will not be able to "
|
564 |
+
"send offline messages to you"
|
565 |
+
msgstr ""
|
566 |
+
"A párbeszéd ablak rejtve lesz offline módban. A felhasználók nem lesznek "
|
567 |
+
"képesek offline üzenetet küldeni."
|
568 |
+
|
569 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
570 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:287
|
571 |
+
msgid "Email Address"
|
572 |
+
msgstr "Email cím"
|
573 |
+
|
574 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
575 |
+
msgid ""
|
576 |
+
"Email address where offline messages are delivered to. Use comma separated "
|
577 |
+
"email addresses to send to more than one email address"
|
578 |
+
msgstr ""
|
579 |
+
"Vesszővel válassza el az email címeket, több mint egy címre küldéshez."
|
580 |
+
|
581 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:277
|
582 |
+
msgid "Sending Method"
|
583 |
+
msgstr "Küldési mód"
|
584 |
+
|
585 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
586 |
+
msgid "WP Mail"
|
587 |
+
msgstr "WP Mail"
|
588 |
+
|
589 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:279
|
590 |
+
msgid "PHP Mailer"
|
591 |
+
msgstr "PHP Mailer"
|
592 |
+
|
593 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:291
|
594 |
+
msgid "Host"
|
595 |
+
msgstr "Host"
|
596 |
+
|
597 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:299
|
598 |
+
msgid "Port"
|
599 |
+
msgstr "Port"
|
600 |
+
|
601 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:307
|
602 |
+
msgid "Username"
|
603 |
+
msgstr "Felhasználó név"
|
604 |
+
|
605 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:315
|
606 |
+
msgid "Password"
|
607 |
+
msgstr "Jelszó"
|
608 |
+
|
609 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:324
|
610 |
+
msgid "Offline Chat Box Title"
|
611 |
+
msgstr "Offline párbeszéd ablak címe"
|
612 |
+
|
613 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:332
|
614 |
+
msgid "Offline Text Fields"
|
615 |
+
msgstr "Offline üzenet mezők"
|
616 |
+
|
617 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:365
|
618 |
+
msgid "Choose a theme"
|
619 |
+
msgstr "Válassza ki a témát"
|
620 |
+
|
621 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:370
|
622 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:371
|
623 |
+
msgid "Theme 1"
|
624 |
+
msgstr "Téma 1"
|
625 |
+
|
626 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:374
|
627 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:375
|
628 |
+
msgid "Theme 2"
|
629 |
+
msgstr "Téma 2"
|
630 |
+
|
631 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:378
|
632 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:379
|
633 |
+
msgid "Theme 3"
|
634 |
+
msgstr "Téma 3"
|
635 |
+
|
636 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:382
|
637 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
|
638 |
+
msgid "Theme 4"
|
639 |
+
msgstr "Téma 4"
|
640 |
+
|
641 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:386
|
642 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
643 |
+
msgid "Theme 5"
|
644 |
+
msgstr "Téma 5"
|
645 |
+
|
646 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:390
|
647 |
+
msgid "Theme 6"
|
648 |
+
msgstr "Téma 6"
|
649 |
+
|
650 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:391
|
651 |
+
msgid "Custom. Enter Colour Values Below"
|
652 |
+
msgstr "Testreszabás. Szín megadás"
|
653 |
+
|
654 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
|
655 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
|
656 |
+
msgid "Chat box fill color"
|
657 |
+
msgstr "Párbeszéd ablak kitöltő színe "
|
658 |
+
|
659 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:411
|
660 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
661 |
+
msgid "Chat box font color"
|
662 |
+
msgstr "Párbeszéd ablak címsor színe"
|
663 |
+
|
664 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:418
|
665 |
+
msgid "I'm using a localization plugin"
|
666 |
+
msgstr "Lokalizációs plugint használok."
|
667 |
+
|
668 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:421
|
669 |
+
msgid "documentation"
|
670 |
+
msgstr "Dokumentáció megtekintése"
|
671 |
+
|
672 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:424
|
673 |
+
msgid ""
|
674 |
+
"You will only be able to edit the strings shown in the chat window of the "
|
675 |
+
"code now. <br/> This has been done to accommodate as many localization "
|
676 |
+
"plugins as possible. <br/> For more information on how to change these "
|
677 |
+
"strings, please consult the "
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:428
|
681 |
+
msgid "First Section Text"
|
682 |
+
msgstr "Első szövegrész"
|
683 |
+
|
684 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:435
|
685 |
+
msgid "Intro Text"
|
686 |
+
msgstr "Bevezető szöveg"
|
687 |
+
|
688 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:441
|
689 |
+
msgid "Second Section Text"
|
690 |
+
msgstr "Második rész szöveg"
|
691 |
+
|
692 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:448
|
693 |
+
msgid "Reactivate Chat Section Text"
|
694 |
+
msgstr "Újra létrehozott párbeszéd szöveg"
|
695 |
+
|
696 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:456
|
697 |
+
msgid "User chat welcome"
|
698 |
+
msgstr "Üdvözlő üzenet"
|
699 |
+
|
700 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:462
|
701 |
+
msgid "Other text"
|
702 |
+
msgstr "Más szöveg"
|
703 |
+
|
704 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:464
|
705 |
+
msgid "This text is shown above the user chat input field"
|
706 |
+
msgstr "Ez a szöveg a mező felet látszik"
|
707 |
+
|
708 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:496
|
709 |
+
msgid ""
|
710 |
+
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
711 |
+
"update your plugin to allow for animations to function"
|
712 |
+
msgstr ""
|
713 |
+
"A Live Chat Support Basic elavult változatát használja. Kérem frissítse a "
|
714 |
+
"bővítményt a megfelelő működéshez."
|
715 |
+
|
716 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:500
|
717 |
+
msgid "Choose an animation"
|
718 |
+
msgstr "Válasszon animációt."
|
719 |
+
|
720 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:506
|
721 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:426
|
722 |
+
msgid "Slide Up"
|
723 |
+
msgstr "Felfele csúsztatás"
|
724 |
+
|
725 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:510
|
726 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:430
|
727 |
+
msgid "Slide From The Side"
|
728 |
+
msgstr "Oldalról csúsztatás"
|
729 |
+
|
730 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:514
|
731 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
|
732 |
+
msgid "Fade In"
|
733 |
+
msgstr "Előugrás"
|
734 |
+
|
735 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
736 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:438
|
737 |
+
msgid "No Animation"
|
738 |
+
msgstr "Nincs animáció"
|
739 |
+
|
740 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:548
|
741 |
+
msgid "Current Users that are Chat Agents"
|
742 |
+
msgstr "Jelenlegi operátorok"
|
743 |
+
|
744 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:562
|
745 |
+
msgid ""
|
746 |
+
"To add or remove a user as a chat agent, go into the users profile and "
|
747 |
+
"select the checkbox Chat Agent and click save."
|
748 |
+
msgstr ""
|
749 |
+
"Felhasználó hozzáadása vagy törlése operátorként lehetséges, lépjen be a "
|
750 |
+
"felhasználói profilba, pipálja ki az operátort, maid nyomja meg a mentés "
|
751 |
+
"gombot."
|
752 |
+
|
753 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:563
|
754 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
755 |
+
msgstr ""
|
756 |
+
"Amennyiben nincs operátor online, a párbeszéd offline módban jelenik meg."
|
757 |
+
|
758 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:567
|
759 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:450
|
760 |
+
msgid "Blocked Visitors - Based on IP Address"
|
761 |
+
msgstr "Jegyezze meg a látogató IP címét"
|
762 |
+
|
763 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
764 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
765 |
+
msgid "Enter each IP Address you would like to block on a new line"
|
766 |
+
msgstr "Gépeld be azokat IP címeket amiket blokkolni szeretnél "
|
767 |
+
|
768 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:577
|
769 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:460
|
770 |
+
msgid ""
|
771 |
+
"Blocking a user's IP Address here will hide the chat window from them, "
|
772 |
+
"preventing them from chatting with you. Each IP Address must be on a new line"
|
773 |
+
msgstr ""
|
774 |
+
"Kitíltott felhasználónak a Chat ablak nem lesz látható, hogy ne tudjon veled "
|
775 |
+
"Chat-elni. Mindegyik IP címnek új sorba kell lennie"
|
776 |
+
|
777 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
778 |
+
msgid ""
|
779 |
+
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
780 |
+
msgstr ""
|
781 |
+
"az funkció csak a WP Live chat Support Chat experience Ratting kiegszítőben "
|
782 |
+
"érhető el."
|
783 |
+
|
784 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:590
|
785 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
|
786 |
+
msgid "Save Settings"
|
787 |
+
msgstr "Beállítások mentése"
|
788 |
+
|
789 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
|
790 |
+
msgid "Dear User"
|
791 |
+
msgstr "Kedves Felhasználó!"
|
792 |
+
|
793 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
794 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
795 |
+
msgstr "A WP Live Chat Support Basic elavult változatát használja."
|
796 |
+
|
797 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
798 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:858
|
799 |
+
msgid "update to at least version"
|
800 |
+
msgstr "Utolsó verzióra való frissítés"
|
801 |
+
|
802 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
803 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:858
|
804 |
+
msgid "to ensure all functionality is in working order"
|
805 |
+
msgstr "az összes funkcionalitás megfelelő működésének biztosítása "
|
806 |
+
|
807 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:503
|
808 |
+
msgid ""
|
809 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
810 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
811 |
+
"user experience for both yourself and your visitors."
|
812 |
+
msgstr ""
|
813 |
+
"A párbeszéd ablak átmenetileg nem elérhető a weboldalán amíg nem frissíti a "
|
814 |
+
"bővítményt. Ez biztosítja a zavartalan beszélgetést a látogatóival."
|
815 |
+
|
816 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:504
|
817 |
+
msgid ""
|
818 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
819 |
+
"href='./plugins.php'>here</a>."
|
820 |
+
msgstr ""
|
821 |
+
"Frissítheti a bővítményeit: <a href='./update-core.php'>itt</a> vagy <a "
|
822 |
+
"href='./plugins.php'>itt</a>."
|
823 |
+
|
824 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:505
|
825 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:861
|
826 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:881
|
827 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
828 |
+
msgstr "Amennyiben nehézsége van a bővítmény frissítésével, kérem jelezze."
|
829 |
+
|
830 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:518
|
831 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:857
|
832 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:872
|
833 |
+
msgid "Dear Pro User"
|
834 |
+
msgstr "Kedves profi felhasználó!"
|
835 |
+
|
836 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:519
|
837 |
+
msgid ""
|
838 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
839 |
+
"download the latest copy from"
|
840 |
+
msgstr ""
|
841 |
+
"Amennyiben a WP Live Chat Support Pro verzióját igényli, töltse le az utolsó "
|
842 |
+
"változatot a következő oldalról:"
|
843 |
+
|
844 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:531
|
845 |
+
msgid "Admin"
|
846 |
+
msgstr "Admin"
|
847 |
+
|
848 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:535
|
849 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:759
|
850 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:364
|
851 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:477
|
852 |
+
msgid "Questions?"
|
853 |
+
msgstr "Kérdések?"
|
854 |
+
|
855 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:536
|
856 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:760
|
857 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:365
|
858 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:477
|
859 |
+
msgid "Chat with us"
|
860 |
+
msgstr "Kérdezzen tőlünk"
|
861 |
+
|
862 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:537
|
863 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:761
|
864 |
+
msgid "Start live chat"
|
865 |
+
msgstr "Élő párbeszéd kezdése"
|
866 |
+
|
867 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:538
|
868 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:763
|
869 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:371
|
870 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:539
|
871 |
+
msgid "Start Chat"
|
872 |
+
msgstr "Párbeszéd kezdeményezése"
|
873 |
+
|
874 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:539
|
875 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:764
|
876 |
+
msgid "Connecting. Please be patient..."
|
877 |
+
msgstr "Csatlakozás: Kérjük szíves türelmét.."
|
878 |
+
|
879 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:540
|
880 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:766
|
881 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
|
882 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:545
|
883 |
+
msgid "Reactivating your previous chat..."
|
884 |
+
msgstr "Előző beszélgetés aktiválása"
|
885 |
+
|
886 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:541
|
887 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:768
|
888 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
|
889 |
+
msgid "Chat offline. Leave a message"
|
890 |
+
msgstr "A párbeszéd nem elérhető, hagyjon üzenetet."
|
891 |
+
|
892 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:542
|
893 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:770
|
894 |
+
msgid "Hello. Please input your details so that I may help you."
|
895 |
+
msgstr "Hello! Kérem adja meg az adataid, hogy segíthessek."
|
896 |
+
|
897 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
|
898 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:772
|
899 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:773
|
900 |
+
msgid ""
|
901 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
902 |
+
"shortly."
|
903 |
+
msgstr ""
|
904 |
+
"Jelenleg nem vagyunk elérhetőek. Kérem hagyjon üzenetet és hamarosan "
|
905 |
+
"válaszolunk."
|
906 |
+
|
907 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:544
|
908 |
+
msgid "Sending message..."
|
909 |
+
msgstr "Üzenet küldése..."
|
910 |
+
|
911 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:545
|
912 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:774
|
913 |
+
msgid "Thank you for your message. We will be in contact soon."
|
914 |
+
msgstr "Köszönjük a megkeresését! Hamarosan felvesszük Önnel a kapcsolatot."
|
915 |
+
|
916 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:546
|
917 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:776
|
918 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:550
|
919 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1040
|
920 |
+
msgid "Press ENTER to send your message"
|
921 |
+
msgstr "Nyomja meg az ENTER-t az üzenet elküldéséhez."
|
922 |
+
|
923 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:547
|
924 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:778
|
925 |
+
msgid "Welcome. How may I help you?"
|
926 |
+
msgstr "Üdvözlöm! Miben segíthetek?"
|
927 |
+
|
928 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:586
|
929 |
+
msgid "Rating Unavailable"
|
930 |
+
msgstr "Az értékelés nem elérhető."
|
931 |
+
|
932 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:590
|
933 |
+
msgid "You are currently accepting chats"
|
934 |
+
msgstr "Jelenleg fogadhat üzenetet."
|
935 |
+
|
936 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:591
|
937 |
+
msgid "You are not accepting chats"
|
938 |
+
msgstr "Jelenleg nem fogadhat üzenetet"
|
939 |
+
|
940 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:639
|
941 |
+
msgid "Delete History"
|
942 |
+
msgstr "Előzmények"
|
943 |
+
|
944 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:648
|
945 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:885
|
946 |
+
msgid "URL"
|
947 |
+
msgstr "URL"
|
948 |
+
|
949 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:649
|
950 |
+
msgid "Status"
|
951 |
+
msgstr "Státusz"
|
952 |
+
|
953 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:650
|
954 |
+
msgid "Action"
|
955 |
+
msgstr "Action"
|
956 |
+
|
957 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:656
|
958 |
+
msgid "No chats available at the moment"
|
959 |
+
msgstr "Pillanatnyilag nincs elérhető párbeszéd"
|
960 |
+
|
961 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:664
|
962 |
+
msgid "View Chat History"
|
963 |
+
msgstr "WP Live Chat előzmény"
|
964 |
+
|
965 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:780
|
966 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:957
|
967 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1501
|
968 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
969 |
+
msgstr ""
|
970 |
+
"Kérem klikkeljen a 'Beszélgetés kezdeményezése'-re, hogy az ügyintézőtől "
|
971 |
+
"kérdezhessen."
|
972 |
+
|
973 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:801
|
974 |
+
msgid "Minimize Chat Window"
|
975 |
+
msgstr "Párbeszéd ablak kicsinyítés"
|
976 |
+
|
977 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:802
|
978 |
+
msgid "Close Chat Window"
|
979 |
+
msgstr "Párbeszéd ablak bezárása"
|
980 |
+
|
981 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:890
|
982 |
+
msgid "Send message"
|
983 |
+
msgstr "Üzenet küldés"
|
984 |
+
|
985 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:916
|
986 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:554
|
987 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1054
|
988 |
+
msgid "Send"
|
989 |
+
msgstr "Küldés"
|
990 |
+
|
991 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1102
|
992 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1535
|
993 |
+
msgid "Your settings have been saved."
|
994 |
+
msgstr "A beállításaid mentve"
|
995 |
+
|
996 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
|
997 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:913
|
998 |
+
msgid "Chat sessions"
|
999 |
+
msgstr "Csevegés"
|
1000 |
+
|
1001 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1120
|
1002 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:915
|
1003 |
+
msgid ""
|
1004 |
+
"Please note: This window must be open in order to receive new chat "
|
1005 |
+
"notifications."
|
1006 |
+
msgstr ""
|
1007 |
+
"Figyelem: Ennek az ablaknak nyitva kell lennie, hogy megkapja az üzenet "
|
1008 |
+
"értesítést."
|
1009 |
+
|
1010 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1124
|
1011 |
+
msgid ""
|
1012 |
+
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1013 |
+
"chat to visitors"
|
1014 |
+
msgstr ""
|
1015 |
+
"Nincs felhatalmazásod csetelni a látogatókkal. Kérlek szerezz jogosúltságot, "
|
1016 |
+
"hogy csetelni tudj."
|
1017 |
+
|
1018 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1224
|
1019 |
+
msgid "Unknown"
|
1020 |
+
msgstr "Ismeretlen"
|
1021 |
+
|
1022 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1240
|
1023 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1007
|
1024 |
+
msgid "End chat"
|
1025 |
+
msgstr "Beszélgetés vége"
|
1026 |
+
|
1027 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1245
|
1028 |
+
msgid "Attempting to open the chat window... Please be patient."
|
1029 |
+
msgstr "Párbeszéd kezdeményezése folyamatban.... Kérjük szíves türelmét."
|
1030 |
+
|
1031 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1340
|
1032 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1652
|
1033 |
+
msgid "This chat has already been answered. Please close the chat window"
|
1034 |
+
msgstr "Ez a beszélgetés már meg lett válaszolva. Kérem zárja be az ablakot."
|
1035 |
+
|
1036 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1408
|
1037 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1166
|
1038 |
+
msgid "User has opened the chat window"
|
1039 |
+
msgstr "A felhasználó megnyitotta a párbeszéd ablakot."
|
1040 |
+
|
1041 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1413
|
1042 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1171
|
1043 |
+
msgid "User has minimized the chat window"
|
1044 |
+
msgstr "A felhasználó kicsinyítette a párbeszéd ablakot."
|
1045 |
+
|
1046 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1418
|
1047 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1176
|
1048 |
+
msgid "User has maximized the chat window"
|
1049 |
+
msgstr "A felhasználó menyitotta a párbeszéd ablakot."
|
1050 |
+
|
1051 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1423
|
1052 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1181
|
1053 |
+
msgid "User has closed and ended the chat"
|
1054 |
+
msgstr "A felhasználó bezárta és befejezte a bezélgetést"
|
1055 |
+
|
1056 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1800
|
1057 |
+
msgid ""
|
1058 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
1059 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1060 |
+
msgstr ""
|
1061 |
+
"Váratlan HTTP hiba történt az API lekérésekor.</p> <p><a href=\"?\" onclick="
|
1062 |
+
"\"document.location.reload(); return false;\"> Próbálja újra </a>"
|
1063 |
+
|
1064 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1805
|
1065 |
+
msgid "An unknown error occurred"
|
1066 |
+
msgstr "Ismeretlen hiba történt"
|
1067 |
+
|
1068 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1967
|
1069 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:287
|
1070 |
+
msgid "Live Chat"
|
1071 |
+
msgstr "Élő beszélgetés"
|
1072 |
+
|
1073 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1968
|
1074 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:288
|
1075 |
+
msgid "Settings"
|
1076 |
+
msgstr "Beállítások"
|
1077 |
+
|
1078 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1969
|
1079 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1990
|
1080 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2001
|
1081 |
+
msgid "Quick Responses"
|
1082 |
+
msgstr "Gyors válaszok"
|
1083 |
+
|
1084 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1971
|
1085 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:289
|
1086 |
+
msgid "History"
|
1087 |
+
msgstr "Előzmények"
|
1088 |
+
|
1089 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1972
|
1090 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:290
|
1091 |
+
msgid "Missed Chats"
|
1092 |
+
msgstr "Elmulasztott beszélgetés"
|
1093 |
+
|
1094 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1974
|
1095 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1096 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:291
|
1097 |
+
msgid "Feedback"
|
1098 |
+
msgstr "Visszacsatolás"
|
1099 |
+
|
1100 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1978
|
1101 |
+
msgid "Error Log"
|
1102 |
+
msgstr "Hibás log"
|
1103 |
+
|
1104 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1981
|
1105 |
+
msgid "Statistics"
|
1106 |
+
msgstr "Státusz"
|
1107 |
+
|
1108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1984
|
1109 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:292
|
1110 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1659
|
1111 |
+
msgid "Support"
|
1112 |
+
msgstr "Támogatás"
|
1113 |
+
|
1114 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1991
|
1115 |
+
msgid "Quick Response"
|
1116 |
+
msgstr "Gyors válaszok"
|
1117 |
+
|
1118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1992
|
1119 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1995
|
1120 |
+
msgid "New Quick Response"
|
1121 |
+
msgstr "Új gyors válasz"
|
1122 |
+
|
1123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1993
|
1124 |
+
msgid "Add New Quick Response"
|
1125 |
+
msgstr "Új gyors válasz hozzáadás "
|
1126 |
+
|
1127 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1994
|
1128 |
+
msgid "Edit Quick Response"
|
1129 |
+
msgstr "Gyors válasz szerkesztése"
|
1130 |
+
|
1131 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1996
|
1132 |
+
msgid "All Quick Responses"
|
1133 |
+
msgstr "Összes gyors válasz"
|
1134 |
+
|
1135 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1997
|
1136 |
+
msgid "View Quick Responses"
|
1137 |
+
msgstr "Gyors válaszok megtekintése"
|
1138 |
+
|
1139 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1998
|
1140 |
+
msgid "Search Quick Responses"
|
1141 |
+
msgstr "Gyors válasz keresés"
|
1142 |
+
|
1143 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1999
|
1144 |
+
msgid "No Quick Responses found"
|
1145 |
+
msgstr "Nincs találat"
|
1146 |
+
|
1147 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2000
|
1148 |
+
msgid "No Quick Responses found in the Trash"
|
1149 |
+
msgstr "Nincs találat a törölt elemek között"
|
1150 |
+
|
1151 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2005
|
1152 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
1153 |
+
msgstr "Gyors válasz a WP Live Chat Support Pro"
|
1154 |
+
|
1155 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2060
|
1156 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2064
|
1157 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1041
|
1158 |
+
msgid "Assign Quick Response"
|
1159 |
+
msgstr "Gyors válasz kijelölése"
|
1160 |
+
|
1161 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2067
|
1162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1041
|
1163 |
+
msgid "Select"
|
1164 |
+
msgstr "Választ"
|
1165 |
+
|
1166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2073
|
1167 |
+
msgid "What is this?"
|
1168 |
+
msgstr "Mi ez?"
|
1169 |
+
|
1170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:566
|
1171 |
+
msgid "complete"
|
1172 |
+
msgstr "kitöltés"
|
1173 |
+
|
1174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:569
|
1175 |
+
msgid "pending"
|
1176 |
+
msgstr "függőben"
|
1177 |
+
|
1178 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:572
|
1179 |
+
msgid "active"
|
1180 |
+
msgstr "aktív"
|
1181 |
+
|
1182 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:575
|
1183 |
+
msgid "deleted"
|
1184 |
+
msgstr "törölt"
|
1185 |
+
|
1186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:578
|
1187 |
+
msgid "browsing"
|
1188 |
+
msgstr "böngészés"
|
1189 |
+
|
1190 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:581
|
1191 |
+
msgid "requesting chat"
|
1192 |
+
msgstr "Beszélgetés felkérés"
|
1193 |
+
|
1194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:584
|
1195 |
+
msgid "Chat Ended - User still browsing"
|
1196 |
+
msgstr "A beszélgetés befejeződött - A felhasználó még nézelődik"
|
1197 |
+
|
1198 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:587
|
1199 |
+
msgid "User is browsing but doesn't want to chat"
|
1200 |
+
msgstr "A felhasználó nézelődik, de nem akar beszélgetést kezdeményezni."
|
1201 |
+
|
1202 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:668
|
1203 |
+
msgid "Get Pro Add-on to accept more chats"
|
1204 |
+
msgstr "Pro-Add beszerzése a több párbeszédhez"
|
1205 |
+
|
1206 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:912
|
1207 |
+
msgid "You have not missed any chat requests."
|
1208 |
+
msgstr "Nincs elmulasztott beszélgetés"
|
1209 |
+
|
1210 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1211 |
+
msgid "WP Live Chat Support Feedback"
|
1212 |
+
msgstr "WP Live Chat Support visszacsatolás"
|
1213 |
+
|
1214 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
1215 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
1216 |
+
msgstr "Szeretnénk hallani a megjegyzését és/vagy a javaslatát"
|
1217 |
+
|
1218 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
1219 |
+
msgid "Your Name"
|
1220 |
+
msgstr "Neve"
|
1221 |
+
|
1222 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
1223 |
+
msgid "Your Email"
|
1224 |
+
msgstr "Email címe"
|
1225 |
+
|
1226 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1227 |
+
msgid "Your Website"
|
1228 |
+
msgstr "Weboldala"
|
1229 |
+
|
1230 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1231 |
+
msgid "Send Feedback"
|
1232 |
+
msgstr "visszacsatolás küldése"
|
1233 |
+
|
1234 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:29
|
1235 |
+
msgid "Agents"
|
1236 |
+
msgstr "Operátor"
|
1237 |
+
|
1238 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:51
|
1239 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
|
1240 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:122
|
1241 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
|
1242 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
|
1243 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
|
1244 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
|
1245 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
|
1246 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:242
|
1247 |
+
msgid "available in the"
|
1248 |
+
msgstr "elérhető a"
|
1249 |
+
|
1250 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:52
|
1251 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
|
1252 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:123
|
1253 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:138
|
1254 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:178
|
1255 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:194
|
1256 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:210
|
1257 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
|
1258 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:243
|
1259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:294
|
1260 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:308
|
1261 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:384
|
1262 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1263 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1460
|
1264 |
+
msgid "Pro Add-on"
|
1265 |
+
msgstr "Pro hozzáadás"
|
1266 |
+
|
1267 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
1268 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
1269 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:124
|
1270 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:139
|
1271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:179
|
1272 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:195
|
1273 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:211
|
1274 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:227
|
1275 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:244
|
1276 |
+
msgid "only"
|
1277 |
+
msgstr "csak"
|
1278 |
+
|
1279 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:69
|
1280 |
+
msgid " once off. Updates included forever."
|
1281 |
+
msgstr "Egyszeri frissítés örökre."
|
1282 |
+
|
1283 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
1284 |
+
msgid "Include chat window on the following pages"
|
1285 |
+
msgstr "A beszélgetés a következő oldalakon jelenjen meg"
|
1286 |
+
|
1287 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
1288 |
+
msgid "Exclude chat window on the following pages"
|
1289 |
+
msgstr "Párbeszéd ablakok kizárása a következő oldalakon:"
|
1290 |
+
|
1291 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
1292 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
1293 |
+
msgstr ""
|
1294 |
+
"Azonnal értesítsen email-ben amint valaki beszélgetést akar kezdeményezni"
|
1295 |
+
|
1296 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:293
|
1297 |
+
msgid "Get offline messages with the "
|
1298 |
+
msgstr "Offline üzenetek megkapása a "
|
1299 |
+
|
1300 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:302
|
1301 |
+
msgid "Offline text"
|
1302 |
+
msgstr "Offline szöveg"
|
1303 |
+
|
1304 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:307
|
1305 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:383
|
1306 |
+
msgid "Edit these text fields using the "
|
1307 |
+
msgstr "Mezők szerkesztése a "
|
1308 |
+
|
1309 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1310 |
+
msgid "Choose a colour scheme. Only available in the"
|
1311 |
+
msgstr "Válasszon egy színsémát. Csak az elérhetőek közül"
|
1312 |
+
|
1313 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1314 |
+
msgid "Pro add-on"
|
1315 |
+
msgstr "Csak Pro verziónál"
|
1316 |
+
|
1317 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:337
|
1318 |
+
msgid "Colour Scheme 1"
|
1319 |
+
msgstr "Színséma 1"
|
1320 |
+
|
1321 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
|
1322 |
+
msgid "Colour Scheme 2"
|
1323 |
+
msgstr "Színséma 2"
|
1324 |
+
|
1325 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:339
|
1326 |
+
msgid "Colour Scheme 3"
|
1327 |
+
msgstr "Színséma 3"
|
1328 |
+
|
1329 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:340
|
1330 |
+
msgid "Colour Scheme 4"
|
1331 |
+
msgstr "Színséma 4"
|
1332 |
+
|
1333 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:341
|
1334 |
+
msgid "Colour Scheme 5"
|
1335 |
+
msgstr "Színséma 5"
|
1336 |
+
|
1337 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
|
1338 |
+
msgid "Colour Scheme 6"
|
1339 |
+
msgstr "Színséma 6"
|
1340 |
+
|
1341 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
1342 |
+
msgid "First section text"
|
1343 |
+
msgstr "Első szövegrész"
|
1344 |
+
|
1345 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:369
|
1346 |
+
msgid "Second section text"
|
1347 |
+
msgstr "Második szövegrész"
|
1348 |
+
|
1349 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:372
|
1350 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:542
|
1351 |
+
msgid "Connecting you to a sales person. Please be patient."
|
1352 |
+
msgstr "Értékesítő kapcsolása. Kérjük szíves türelmét."
|
1353 |
+
|
1354 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1355 |
+
msgid "Reactivate chat section text"
|
1356 |
+
msgstr "Szövegrész aktiválása"
|
1357 |
+
|
1358 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:418
|
1359 |
+
msgid "Choose an animation. Only available in the"
|
1360 |
+
msgstr "Válasszon egy színsémát. Csak az elérhetőek közül"
|
1361 |
+
|
1362 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:419
|
1363 |
+
msgid "Pro"
|
1364 |
+
msgstr "Pro"
|
1365 |
+
|
1366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:446
|
1367 |
+
msgid "Multiple Agents"
|
1368 |
+
msgstr "Több operátor"
|
1369 |
+
|
1370 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
1371 |
+
msgid "Get"
|
1372 |
+
msgstr "Beszerzés"
|
1373 |
+
|
1374 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
1375 |
+
msgid "Multiple agent support"
|
1376 |
+
msgstr "Több operátor támogatás"
|
1377 |
+
|
1378 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1379 |
+
msgid "Welcome to "
|
1380 |
+
msgstr "Üdvözöljük a"
|
1381 |
+
|
1382 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1383 |
+
msgid "Version 4"
|
1384 |
+
msgstr "Verziószám: 4"
|
1385 |
+
|
1386 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1387 |
+
msgid "Provide Instant Live Chat Support!"
|
1388 |
+
msgstr "Provide Instant Live Chat Support!"
|
1389 |
+
|
1390 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1391 |
+
msgid "How did you find us?"
|
1392 |
+
msgstr "Hogy talált meg minket?"
|
1393 |
+
|
1394 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1395 |
+
msgid "WordPress.org plugin repository "
|
1396 |
+
msgstr "WordPress.org plugin repository "
|
1397 |
+
|
1398 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
1399 |
+
msgid "Search Term"
|
1400 |
+
msgstr "Keresőmező"
|
1401 |
+
|
1402 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
1403 |
+
msgid "Google or other search Engine"
|
1404 |
+
msgstr "Google vagy más kereső(motor)"
|
1405 |
+
|
1406 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1407 |
+
msgid "Friend recommendation"
|
1408 |
+
msgstr "Ajánlás a barátoknak"
|
1409 |
+
|
1410 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1411 |
+
msgid "Other"
|
1412 |
+
msgstr "Egyéb"
|
1413 |
+
|
1414 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
1415 |
+
msgid "Please Explain"
|
1416 |
+
msgstr "Kérem magyarázza meg"
|
1417 |
+
|
1418 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
1419 |
+
msgid "Submit"
|
1420 |
+
msgstr "Submit"
|
1421 |
+
|
1422 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1423 |
+
msgid "Skip"
|
1424 |
+
msgstr "Ugrás"
|
1425 |
+
|
1426 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:256
|
1427 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1312
|
1428 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1429 |
+
msgstr ""
|
1430 |
+
"Kérem klikkeljen a ' Beszélgetés kezdeményezése' gombra, hogy párbeszédet "
|
1431 |
+
"folytathasson egy operátorral."
|
1432 |
+
|
1433 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:484
|
1434 |
+
msgid "Start Live Chat"
|
1435 |
+
msgstr "Élő csevegés"
|
1436 |
+
|
1437 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:858
|
1438 |
+
msgid ""
|
1439 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1440 |
+
"strong>. Please"
|
1441 |
+
msgstr ""
|
1442 |
+
"Elavult verzióját használja a <strong>WP Live Chat Support Pro</strong>. "
|
1443 |
+
"Kérem frissítse."
|
1444 |
+
|
1445 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:859
|
1446 |
+
msgid ""
|
1447 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1448 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1449 |
+
"experience for both yourself and your visitors."
|
1450 |
+
msgstr ""
|
1451 |
+
"A párbeszéd ablak átmentelig nem elérhető a weboldalán, amíg nem frissíti a "
|
1452 |
+
"bővítményt. Ez biztosítja a zavartalan beszélgetést látogatóival."
|
1453 |
+
|
1454 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:860
|
1455 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:880
|
1456 |
+
msgid ""
|
1457 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1458 |
+
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1459 |
+
"version/' target='_BLANK'>here</a>."
|
1460 |
+
msgstr ""
|
1461 |
+
"Frissítheti a bővítményt: <a href='./update-core.php'>itt</a>, <a href='./"
|
1462 |
+
"plugins.php'>itt</a> vagy <a href='http://wp-livechat.com/get-updated-"
|
1463 |
+
"version/' target='_BLANK'>itt</a>."
|
1464 |
+
|
1465 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:873
|
1466 |
+
msgid ""
|
1467 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1468 |
+
"strong>."
|
1469 |
+
msgstr ""
|
1470 |
+
"Elavult verzióját használja a <strong>WP Live Chat Support Pro</strong> - "
|
1471 |
+
"nak."
|
1472 |
+
|
1473 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:875
|
1474 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1475 |
+
msgstr "Kérem frissítse a WP Live Chat Support Pro-t a legutolsó verzióra."
|
1476 |
+
|
1477 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:876
|
1478 |
+
msgid "Version 4.4.5"
|
1479 |
+
msgstr "Verzió 4.4.5"
|
1480 |
+
|
1481 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:877
|
1482 |
+
msgid "to take advantage of chat window transitions and colour schemes."
|
1483 |
+
msgstr "hogy kihasználja a párbeszéd ablak átmeneteit és színsémáit"
|
1484 |
+
|
1485 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:904
|
1486 |
+
msgid "Experiencing problems with the plugin?"
|
1487 |
+
msgstr "Problémái adódtak a bővítménnyel?"
|
1488 |
+
|
1489 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:906
|
1490 |
+
msgid "Review the documentation."
|
1491 |
+
msgstr "Dokumentáció megtekintése"
|
1492 |
+
|
1493 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:907
|
1494 |
+
msgid "Or ask a question on our"
|
1495 |
+
msgstr "Vagy kérdezzen a mi..."
|
1496 |
+
|
1497 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:907
|
1498 |
+
msgid "Support forum."
|
1499 |
+
msgstr "Támogatás"
|
1500 |
+
|
1501 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:935
|
1502 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1503 |
+
msgstr "A WP Live Chat Support Pro verzióval tud"
|
1504 |
+
|
1505 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:936
|
1506 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:937
|
1507 |
+
msgid "see who's online and initiate chats"
|
1508 |
+
msgstr "nézze meg ki van online és ki kezdeményezett beszélgetést"
|
1509 |
+
|
1510 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:938
|
1511 |
+
msgid "with your online visitors with the click of a button."
|
1512 |
+
msgstr "az online látogatókhoz kattintson a gombra"
|
1513 |
+
|
1514 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:939
|
1515 |
+
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1516 |
+
msgstr ""
|
1517 |
+
"VásárolJa meg a Pro verziót most csak: 19.95$. Ingyenes frissítés örökre."
|
1518 |
+
|
1519 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:941
|
1520 |
+
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1521 |
+
msgstr ""
|
1522 |
+
"Vásárolja meg a Pro verziót most csak: 19.95$. Ingyenes frissítés örökre."
|
1523 |
+
|
1524 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:993
|
1525 |
+
msgid "Previous"
|
1526 |
+
msgstr "előző"
|
1527 |
+
|
1528 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:995
|
1529 |
+
msgid "Active"
|
1530 |
+
msgstr "Aktív"
|
1531 |
+
|
1532 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1004
|
1533 |
+
msgid "Chat with"
|
1534 |
+
msgstr "Csevegés a következővel"
|
1535 |
+
|
1536 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1041
|
1537 |
+
msgid "Add Quick Responses to your Live Chat"
|
1538 |
+
msgstr "Gyors válaszok hozzáadása az élő beszélgetéshez"
|
1539 |
+
|
1540 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1041
|
1541 |
+
msgid "Pro version only"
|
1542 |
+
msgstr "Csak Pro verziónál"
|
1543 |
+
|
1544 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1052
|
1545 |
+
msgid "type here..."
|
1546 |
+
msgstr "ide írjon"
|
1547 |
+
|
1548 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1433
|
1549 |
+
msgid "WP Live Chat History"
|
1550 |
+
msgstr "WP Live Chat előzmény"
|
1551 |
+
|
1552 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1553 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1460
|
1554 |
+
msgid "This option is only available in the "
|
1555 |
+
msgstr "Ez az opció csak a ... elérhető"
|
1556 |
+
|
1557 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1558 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1460
|
1559 |
+
msgid "Get it now for only $19.95 once off!"
|
1560 |
+
msgstr "Vegye meg most $19.95 egyszeri díj ellenében"
|
1561 |
+
|
1562 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1445
|
1563 |
+
msgid "WP Live Chat Missed Chats"
|
1564 |
+
msgstr "WP Live Chat elmulasztott beszélgetések"
|
1565 |
+
|
1566 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1452
|
1567 |
+
msgid "WP Live Chat Offline Messages"
|
1568 |
+
msgstr "WP Live Chat offline üzenetek"
|
1569 |
+
|
1570 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1457
|
1571 |
+
msgid ""
|
1572 |
+
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1573 |
+
"recording any offline messages."
|
1574 |
+
msgstr ""
|
1575 |
+
"Töltse le a legújabb WP Live Chat Support Pro verziót, hogy mentve legyenek "
|
1576 |
+
"az üzenetei"
|
1577 |
+
|
1578 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1550
|
1579 |
+
msgid "Thank You for your feedback!"
|
1580 |
+
msgstr "Köszönjük a visszajelzést."
|
1581 |
+
|
1582 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1554
|
1583 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1567
|
1584 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1585 |
+
msgstr "Köszönjük a visszajelzést. Hamarosan jelentkezünk"
|
1586 |
+
|
1587 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1570
|
1588 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1589 |
+
msgstr ""
|
1590 |
+
"Probléma merült fel a visszajelzésnél. Kérem kapcsolja be a visszajelzést."
|
1591 |
+
|
1592 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1603
|
1593 |
+
msgid ""
|
1594 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
1595 |
+
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1596 |
+
"contact your host to get this function enabled."
|
1597 |
+
msgstr ""
|
1598 |
+
"WPLC: időkorlát beállítása nincs engedélyezve a szerveren. Ha problémái "
|
1599 |
+
"merültek fel a WP Live Chat Support használata közben, kérem vegye fel a "
|
1600 |
+
"kapcsolatot a rendszer üzemeltetőjével, hogy engedélyezze ezt a funkciót."
|
1601 |
+
|
1602 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1609
|
1603 |
+
msgid ""
|
1604 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
1605 |
+
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1606 |
+
"get safe mode disabled."
|
1607 |
+
msgstr ""
|
1608 |
+
"WPLC: a biztonságos mód be van kapcsolva a szerveren. Ha problémái merültek "
|
1609 |
+
"fel a WP Live Chat Support használata közben, kérem vegye fel a kapcsolatot "
|
1610 |
+
"a rendszer üzemeltetőjével."
|
1611 |
+
|
1612 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1621
|
1613 |
+
msgid "WP Live Chat Support"
|
1614 |
+
msgstr "WP Live Chat Support által"
|
1615 |
+
|
1616 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1624
|
1617 |
+
msgid "Documentation"
|
1618 |
+
msgstr "Dokumentáció megtekintése"
|
1619 |
+
|
1620 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1626
|
1621 |
+
msgid ""
|
1622 |
+
"Getting started? Read through some of these articles to help you along your "
|
1623 |
+
"way."
|
1624 |
+
msgstr ""
|
1625 |
+
"Olvass el néhány cikket, ami segít a könnyebb legyen a plugin kezelése."
|
1626 |
+
|
1627 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1627
|
1628 |
+
msgid "Documentation:"
|
1629 |
+
msgstr "Dokumentáció megtekintése"
|
1630 |
+
|
1631 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1629
|
1632 |
+
msgid "Installing the WP Live Chat Support Pro add-on"
|
1633 |
+
msgstr "A WP Live Chat Support Pro verzióval tud"
|
1634 |
+
|
1635 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1630
|
1636 |
+
msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1631
|
1640 |
+
msgid "Upgrading your licence (Pro)"
|
1641 |
+
msgstr "Licensz frissítése Pro verzióra"
|
1642 |
+
|
1643 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1632
|
1644 |
+
msgid "Minimum System Requirements"
|
1645 |
+
msgstr "Legkisebb rendszer követelmény"
|
1646 |
+
|
1647 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1634
|
1648 |
+
msgid "FAQ's:"
|
1649 |
+
msgstr "GYIK:"
|
1650 |
+
|
1651 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1636
|
1652 |
+
msgid "How do I check for JavaScript errors on my site?"
|
1653 |
+
msgstr "Hogy nézzem meg hogy JavaScript hiba van a weblapomon? "
|
1654 |
+
|
1655 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1637
|
1656 |
+
msgid "What are Quick Responses?"
|
1657 |
+
msgstr "Gyors válasz keresés"
|
1658 |
+
|
1659 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1638
|
1660 |
+
msgid "Can I use this plugin on my multi-site?"
|
1661 |
+
msgstr "Használhatom a plugint több weblapomon is? "
|
1662 |
+
|
1663 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1639
|
1664 |
+
msgid "How do I disable APC Object Cache?"
|
1665 |
+
msgstr "Hogyan kapcsoljam ki az APC Object Cache-et? "
|
1666 |
+
|
1667 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1640
|
1668 |
+
msgid "Do you have a mobile app?"
|
1669 |
+
msgstr "Van mobilalkalmazás"
|
1670 |
+
|
1671 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1641
|
1672 |
+
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1673 |
+
msgstr ""
|
1674 |
+
"Bekell jelentkeznem a vezérlőpultba ahhoz hogy csetelni tudjak a "
|
1675 |
+
"látogatókkal?"
|
1676 |
+
|
1677 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1645
|
1678 |
+
msgid "Troubleshooting"
|
1679 |
+
msgstr "Hibaelhárítás"
|
1680 |
+
|
1681 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1647
|
1682 |
+
msgid ""
|
1683 |
+
"WP Live Chat Support Pro has a diverse and wide range of features which may, "
|
1684 |
+
"from time to time, run into conflicts with the thousands of themes and other "
|
1685 |
+
"plugins on the market."
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1648
|
1689 |
+
msgid "Common issues:"
|
1690 |
+
msgstr "Átlagos kérdések"
|
1691 |
+
|
1692 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1650
|
1693 |
+
msgid "The chat box doesnt show up"
|
1694 |
+
msgstr "A cset ablak nem látszik"
|
1695 |
+
|
1696 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1651
|
1697 |
+
msgid "The chat window disappears when I logout or go offline"
|
1698 |
+
msgstr "A cset ablak eltűnik mikor kijelentkezem vagy kikapcsolom "
|
1699 |
+
|
1700 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1653
|
1701 |
+
msgid "Messages only show when I refresh the chat window"
|
1702 |
+
msgstr "A felhasználó megnyitotta a párbeszéd ablakot."
|
1703 |
+
|
1704 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1654
|
1705 |
+
msgid "I'm not getting any notifications of a new chat"
|
1706 |
+
msgstr "Nem kapok értesítést az új üzenetről"
|
1707 |
+
|
1708 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1655
|
1709 |
+
msgid "The chat window never goes offline"
|
1710 |
+
msgstr "A cset ablak soha nem kapcsol ki"
|
1711 |
+
|
1712 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1661
|
1713 |
+
msgid "Still need help? Use one of these links below."
|
1714 |
+
msgstr "Szükséged van segítségre ? Használd valamelyik linket"
|
1715 |
+
|
1716 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1663
|
1717 |
+
msgid "Support forum"
|
1718 |
+
msgstr "Támogatás"
|
1719 |
+
|
1720 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1664
|
1721 |
+
msgid "Contact us"
|
1722 |
+
msgstr "Írj nekünk"
|
1723 |
+
|
1724 |
+
#~ msgid "Animations"
|
1725 |
+
#~ msgstr "Animáció"
|
1726 |
+
|
1727 |
+
#~ msgid ""
|
1728 |
+
#~ "Do not include and exclude pages at the same time. Please only use one or "
|
1729 |
+
#~ "the other"
|
1730 |
+
#~ msgstr ""
|
1731 |
+
#~ "Egyszerre nem lehet tiltani és engedélyezni az oldalt. Egy lehetőséget "
|
1732 |
+
#~ "válasszon."
|
1733 |
+
|
1734 |
+
#~ msgid "(while online only)"
|
1735 |
+
#~ msgstr "(csak miközben elérhető)"
|
1736 |
+
|
1737 |
+
#~ msgid "Email address where offline messages are delivered to"
|
1738 |
+
#~ msgstr "Email cím, ahova az offline üzenetek megérkeznek."
|
1739 |
+
|
1740 |
+
#~ msgid "Get a variety of animations in the "
|
1741 |
+
#~ msgstr "Különböző variációk beszerzése"
|
1742 |
+
|
1743 |
+
#~ msgid "Choose an animation (Pro Only)"
|
1744 |
+
#~ msgstr "Animációk kiválasztása (Csak Pro felhasználók)"
|
readme.txt
CHANGED
@@ -47,6 +47,7 @@ The most cost effective Live Chat plugin. Chat with your visitors for free! WP L
|
|
47 |
* Apply animations to the chat window
|
48 |
* Anonymity for your visitors
|
49 |
* Choose when to accept chats
|
|
|
50 |
|
51 |
Get the [WP Live Chat Support Pro Add-on](http://wp-livechat.com/purchase-pro/?utm_source=readme&utm_medium=wordpress&utm_campaign=buy) for only $29.95!
|
52 |
|
@@ -98,7 +99,7 @@ Get a free copy of the WP Live Chat Support Pro version in exchange for translat
|
|
98 |
* Dutch (Elsy Aelvoet)
|
99 |
* Greek (Peter Stavropoulos)
|
100 |
* Norwegian (Robert Nilsen)
|
101 |
-
* Hungarian (GInception)
|
102 |
* Indonesian (Andrie Willyanta)
|
103 |
* Finnish (Arttu Piipponen)
|
104 |
* Dutch (Niek Groot Bleumink)
|
@@ -177,6 +178,11 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
177 |
|
178 |
== Changelog ==
|
179 |
|
|
|
|
|
|
|
|
|
|
|
180 |
= 4.3.4 Ristretto - 2015-06-26 - Low Priority =
|
181 |
* Improvement: 404 errors for images in admin panel fixed
|
182 |
* Translation Fix: Mistakes fixed in German Translation file.
|
47 |
* Apply animations to the chat window
|
48 |
* Anonymity for your visitors
|
49 |
* Choose when to accept chats
|
50 |
+
* Encrypt your live chat conversations
|
51 |
|
52 |
Get the [WP Live Chat Support Pro Add-on](http://wp-livechat.com/purchase-pro/?utm_source=readme&utm_medium=wordpress&utm_campaign=buy) for only $29.95!
|
53 |
|
99 |
* Dutch (Elsy Aelvoet)
|
100 |
* Greek (Peter Stavropoulos)
|
101 |
* Norwegian (Robert Nilsen)
|
102 |
+
* Hungarian (GInception & Andor Molnar)
|
103 |
* Indonesian (Andrie Willyanta)
|
104 |
* Finnish (Arttu Piipponen)
|
105 |
* Dutch (Niek Groot Bleumink)
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
= 4.3.5 Espresso - 2015-07-03 - Low Priority =
|
182 |
+
* Enhancement: Provision made for live chat encryption in the Pro version (compatibility)
|
183 |
+
* Updated Translations:
|
184 |
+
* Hungarian (Thank you Andor Molnar)
|
185 |
+
|
186 |
= 4.3.4 Ristretto - 2015-06-26 - Low Priority =
|
187 |
* Improvement: 404 errors for images in admin panel fixed
|
188 |
* Translation Fix: Mistakes fixed in German Translation file.
|
wp-live-chat-support.php
CHANGED
@@ -3,13 +3,18 @@
|
|
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.3.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
-
/* 4.3.
|
|
|
|
|
|
|
|
|
|
|
13 |
* Improvement: 404 errors for images in admin panel fixed
|
14 |
* Translation Fix: Mistakes fixed in German Translation file.
|
15 |
*
|
@@ -202,7 +207,7 @@ global $wplc_tblname_chats;
|
|
202 |
global $wplc_tblname_msgs;
|
203 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
204 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
205 |
-
$wplc_version = "4.3.
|
206 |
|
207 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
208 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
@@ -704,9 +709,9 @@ function wplc_superadmin_javascript() {
|
|
704 |
if (Notification.permission !== "granted")
|
705 |
Notification.requestPermission();
|
706 |
|
707 |
-
var wplc_desktop_notification = new Notification('New chat received', {
|
708 |
icon: wplc_notification_icon_url,
|
709 |
-
body: "A new chat has been received. Please go the 'Live Chat' page to accept the chat"
|
710 |
});
|
711 |
//Notification.close()
|
712 |
}
|
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.3.5
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* 4.3.5 Espresso - 2015-07-03 - Low Priority
|
13 |
+
* Enhancement: Provision made for live chat encryption in the Pro version (compatibility)
|
14 |
+
* Updated Translations:
|
15 |
+
* Hungarian (Thank you Andor Molnar)
|
16 |
+
*
|
17 |
+
* 4.3.4 Ristretto - 2015-06-26 - Low Priority
|
18 |
* Improvement: 404 errors for images in admin panel fixed
|
19 |
* Translation Fix: Mistakes fixed in German Translation file.
|
20 |
*
|
207 |
global $wplc_tblname_msgs;
|
208 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
209 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
210 |
+
$wplc_version = "4.3.05";
|
211 |
|
212 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
213 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
709 |
if (Notification.permission !== "granted")
|
710 |
Notification.requestPermission();
|
711 |
|
712 |
+
var wplc_desktop_notification = new Notification('<?php _e('New chat received', 'wplivechat'); ?>', {
|
713 |
icon: wplc_notification_icon_url,
|
714 |
+
body: "<?php _e("A new chat has been received. Please go the 'Live Chat' page to accept the chat", "wplivechat"); ?>"
|
715 |
});
|
716 |
//Notification.close()
|
717 |
}
|