Version Description
- 2016-04-07 - Low Priority =
- You can now delete inidividual offline messages from your history
- Code improvements done to the way scripts are loaded when displaying the chat
- Fixed a bug that returned an undefined index when recording a visitors IP address
- Fixed a bug that displayed chat messages over the logo
- Code improvement - A visitors name will display if filled out automatically, instead of 'Guest'
- WHOIS for IP Address now opens in a new window
- Fixed a bug that caused issues when downloading the chat history containing non UTF-8 characters
- Fixed a bug that displayed the incorrect Gravatar images in the chat messages
- Translations Added:
- German Updated (Thank you Benjamin Schindler)
- Brazilian Portuguese Updated (Thank you Luis Simioni)
- Farsi (Thank you Maisam)
- Norwegian Updates (Thank you Ole Petter Holthe-Berg)
- Croatian (Thank you Petar Garzina)
- Italian Updated (Thank you Angelo Giammarresi)
- Danish Updated (Thank you Kasper Jensen)
- Spanish Updated (Thank you Olivier Gantois)
- French Updated (Thank you Olivier Gantois)
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 6.1.01 |
Comparing to | |
See all releases |
Code changes from version 6.1.00 to 6.1.01
- ajax_new.php +14 -2
- css/themes/modern.css +1 -0
- functions.php +15 -9
- js/themes/modern.js +1 -0
- js/wplc_u.js +8 -2
- js/wplc_u_admin.js +26 -15
- languages/wplivechat-da_DA.po +2175 -0
- languages/wplivechat-de_DE.mo +0 -0
- languages/wplivechat-de_DE.po +1312 -1177
- languages/wplivechat-es_ES.mo +0 -0
- languages/wplivechat-es_ES.po +73 -71
- languages/wplivechat-fa_IR.mo +0 -0
- languages/wplivechat-fa_IR.po +1523 -0
- languages/wplivechat-fr_FR.mo +0 -0
- languages/wplivechat-fr_FR.po +192 -182
- languages/wplivechat-hr.mo +0 -0
- languages/wplivechat-hr.po +2189 -0
- languages/wplivechat-nb_NO.mo +0 -0
- languages/wplivechat-nb_NO.po +311 -342
- languages/wplivechat-pt_BR.mo +0 -0
- languages/wplivechat-pt_BR.po +3299 -1524
- readme.txt +28 -5
- wp-live-chat-support.php +117 -10
ajax_new.php
CHANGED
@@ -147,8 +147,20 @@ function wplc_init_ajax_callback() {
|
|
147 |
while($i <= $iterations){
|
148 |
if($_POST['cid'] == null || $_POST['cid'] == "" || $_POST['cid'] == "null" || $_POST['cid'] == 0){
|
149 |
// echo 1;
|
150 |
-
|
151 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
$cid = wplc_log_user_on_page($user,$email,sanitize_text_field($_POST['wplcsession']));
|
153 |
$array['cid'] = $cid;
|
154 |
$array['status'] = wplc_return_chat_status($cid);
|
147 |
while($i <= $iterations){
|
148 |
if($_POST['cid'] == null || $_POST['cid'] == "" || $_POST['cid'] == "null" || $_POST['cid'] == 0){
|
149 |
// echo 1;
|
150 |
+
|
151 |
+
if( isset( $_POST['wplc_name'] ) && $_POST['wplc_name'] !== '' ){
|
152 |
+
$user = sanitize_text_field($_POST['wplc_name']);
|
153 |
+
} else {
|
154 |
+
$user = "Guest";
|
155 |
+
}
|
156 |
+
|
157 |
+
if( isset( $_POST['wplc_email'] ) && $_POST['wplc_email'] !== '' ){
|
158 |
+
$email = sanitize_text_field($_POST['wplc_email']);
|
159 |
+
} else {
|
160 |
+
$email = "no email set";
|
161 |
+
}
|
162 |
+
|
163 |
+
|
164 |
$cid = wplc_log_user_on_page($user,$email,sanitize_text_field($_POST['wplcsession']));
|
165 |
$array['cid'] = $cid;
|
166 |
$array['status'] = wplc_return_chat_status($cid);
|
css/themes/modern.css
CHANGED
@@ -441,6 +441,7 @@
|
|
441 |
border: 1px solid #ccc ;
|
442 |
background-color: #FFF;
|
443 |
border-radius: 5px;
|
|
|
444 |
}
|
445 |
|
446 |
#wplc_hovercard:before {
|
441 |
border: 1px solid #ccc ;
|
442 |
background-color: #FFF;
|
443 |
border-radius: 5px;
|
444 |
+
z-index: 9999999;
|
445 |
}
|
446 |
|
447 |
#wplc_hovercard:before {
|
functions.php
CHANGED
@@ -11,7 +11,7 @@ function wplc_log_user_on_page($name,$email,$session) {
|
|
11 |
|
12 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
13 |
|
14 |
-
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['
|
15 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
16 |
} else {
|
17 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
@@ -78,8 +78,14 @@ function wplc_update_user_on_page($cid, $status = 5,$session) {
|
|
78 |
$wplc_settings = get_option('WPLC_SETTINGS');
|
79 |
|
80 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
$user_data = array(
|
82 |
-
'ip' => $
|
83 |
'user_agent' => $_SERVER['HTTP_USER_AGENT']
|
84 |
);
|
85 |
} else {
|
@@ -281,7 +287,7 @@ function wplc_list_chats() {
|
|
281 |
if($user_ip == ""){
|
282 |
$user_ip = __('IP Address not recorded', 'wplivechat');
|
283 |
} else {
|
284 |
-
$user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."'>".$user_ip."</a>";
|
285 |
}
|
286 |
|
287 |
if ($result->status == 2) {
|
@@ -473,7 +479,7 @@ function wplc_list_chats_new($post_data) {
|
|
473 |
if($user_ip == ""){
|
474 |
$user_ip = __('IP Address not recorded', 'wplivechat');
|
475 |
} else {
|
476 |
-
$user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."'>".$user_ip."</a>";
|
477 |
}
|
478 |
|
479 |
|
@@ -565,7 +571,7 @@ function wplc_return_user_chat_messages($cid) {
|
|
565 |
if (isset($other['aid'])) {
|
566 |
$user_info = get_userdata(intval($other['aid']));
|
567 |
/* get agent id */
|
568 |
-
$image = "<img src='//www.gravatar.com/avatar/"
|
569 |
} else {
|
570 |
|
571 |
/* get default setting in the notifications tab */
|
@@ -728,7 +734,7 @@ function wplc_return_chat_messages($cid,$transcript = false,$html = true) {
|
|
728 |
if (isset($other['aid'])) {
|
729 |
$user_info = get_userdata(intval($other['aid']));
|
730 |
/* get agent id */
|
731 |
-
$image = "<img src='//www.gravatar.com/avatar/"
|
732 |
} else {
|
733 |
|
734 |
/* get default setting in the notifications tab */
|
@@ -1201,7 +1207,7 @@ function wplc_store_offline_message($name, $email, $message){
|
|
1201 |
$wplc_settings = get_option('WPLC_SETTINGS');
|
1202 |
|
1203 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
1204 |
-
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['
|
1205 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1206 |
} else {
|
1207 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
@@ -1239,7 +1245,7 @@ function wplc_user_initiate_chat($name,$email,$cid = null,$session) {
|
|
1239 |
$wplc_settings = get_option('WPLC_SETTINGS');
|
1240 |
|
1241 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
1242 |
-
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['
|
1243 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1244 |
} else {
|
1245 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
@@ -1606,7 +1612,7 @@ function wplc_is_user_banned_basic(){
|
|
1606 |
if (is_array($banned_ip)) {
|
1607 |
foreach($banned_ip as $ip){
|
1608 |
|
1609 |
-
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['
|
1610 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1611 |
} else {
|
1612 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
11 |
|
12 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
13 |
|
14 |
+
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
|
15 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
16 |
} else {
|
17 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
78 |
$wplc_settings = get_option('WPLC_SETTINGS');
|
79 |
|
80 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
81 |
+
|
82 |
+
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
|
83 |
+
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
84 |
+
} else {
|
85 |
+
$ip_address = $_SERVER['REMOTE_ADDR'];
|
86 |
+
}
|
87 |
$user_data = array(
|
88 |
+
'ip' => $ip_address,
|
89 |
'user_agent' => $_SERVER['HTTP_USER_AGENT']
|
90 |
);
|
91 |
} else {
|
287 |
if($user_ip == ""){
|
288 |
$user_ip = __('IP Address not recorded', 'wplivechat');
|
289 |
} else {
|
290 |
+
$user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."' target='_BLANK'>".$user_ip."</a>";
|
291 |
}
|
292 |
|
293 |
if ($result->status == 2) {
|
479 |
if($user_ip == ""){
|
480 |
$user_ip = __('IP Address not recorded', 'wplivechat');
|
481 |
} else {
|
482 |
+
$user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."' target='_BLANK'>".$user_ip."</a>";
|
483 |
}
|
484 |
|
485 |
|
571 |
if (isset($other['aid'])) {
|
572 |
$user_info = get_userdata(intval($other['aid']));
|
573 |
/* get agent id */
|
574 |
+
$image = "<img src='//www.gravatar.com/avatar/".md5($user_info->user_email)."?s=30' class='wplc-admin-message-avatar' />";
|
575 |
} else {
|
576 |
|
577 |
/* get default setting in the notifications tab */
|
734 |
if (isset($other['aid'])) {
|
735 |
$user_info = get_userdata(intval($other['aid']));
|
736 |
/* get agent id */
|
737 |
+
$image = "<img src='//www.gravatar.com/avatar/".md5($user_info->user_email)."?s=30' class='wplc-admin-message-avatar' />";
|
738 |
} else {
|
739 |
|
740 |
/* get default setting in the notifications tab */
|
1207 |
$wplc_settings = get_option('WPLC_SETTINGS');
|
1208 |
|
1209 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
1210 |
+
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
|
1211 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1212 |
} else {
|
1213 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
1245 |
$wplc_settings = get_option('WPLC_SETTINGS');
|
1246 |
|
1247 |
if(isset($wplc_settings['wplc_record_ip_address']) && $wplc_settings['wplc_record_ip_address'] == 1){
|
1248 |
+
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
|
1249 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1250 |
} else {
|
1251 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
1612 |
if (is_array($banned_ip)) {
|
1613 |
foreach($banned_ip as $ip){
|
1614 |
|
1615 |
+
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
|
1616 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1617 |
} else {
|
1618 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
js/themes/modern.js
CHANGED
@@ -68,6 +68,7 @@ jQuery(document).on( "wplc_open_chat_2", function( e ) {
|
|
68 |
wplc_chat_status = Cookies.get('wplc_chat_status');
|
69 |
if (typeof e.wplc_online !== "undefined" && e.wplc_online === true) {
|
70 |
jQuery("#wp-live-chat-4").show();
|
|
|
71 |
jQuery("#wplc_chatmsg").focus();
|
72 |
}
|
73 |
|
68 |
wplc_chat_status = Cookies.get('wplc_chat_status');
|
69 |
if (typeof e.wplc_online !== "undefined" && e.wplc_online === true) {
|
70 |
jQuery("#wp-live-chat-4").show();
|
71 |
+
jQuery.event.trigger({type: "wplc_animation_done"});
|
72 |
jQuery("#wplc_chatmsg").focus();
|
73 |
}
|
74 |
|
js/wplc_u.js
CHANGED
@@ -46,10 +46,8 @@ jQuery(document).ready(function() {
|
|
46 |
Cookies.set('wplc_chat_status', 5, { expires: 1, path: '/' });
|
47 |
wplc_chat_status = 5;
|
48 |
|
49 |
-
|
50 |
var wplc_run = true;
|
51 |
|
52 |
-
|
53 |
var data = {
|
54 |
action: 'wplc_get_chat_box',
|
55 |
security: wplc_nonce
|
@@ -65,7 +63,13 @@ jQuery(document).ready(function() {
|
|
65 |
|
66 |
jQuery( "body" ).append( response['cbox']);
|
67 |
|
|
|
|
|
|
|
|
|
68 |
|
|
|
|
|
69 |
/* is an agent online? */
|
70 |
if (response['online'] === false) {
|
71 |
wplc_run = false;
|
@@ -86,6 +90,7 @@ jQuery(document).ready(function() {
|
|
86 |
wplcsession:wplc_session_variable,
|
87 |
wplc_extra_data:wplc_extra_data
|
88 |
};
|
|
|
89 |
initial_data = data;
|
90 |
// ajax long polling function
|
91 |
if (wplc_filter_run_override === "0") {
|
@@ -439,6 +444,7 @@ jQuery(document).ready(function() {
|
|
439 |
}
|
440 |
else if(wplc_chat_status == 1){
|
441 |
jQuery("#wp-live-chat-4").show();
|
|
|
442 |
jQuery("#wplc_chatbox").append("The chat has been ended by the operator.<br />");
|
443 |
var height = jQuery('#wplc_chatbox')[0].scrollHeight;
|
444 |
jQuery('#wplc_chatbox').scrollTop(height);
|
46 |
Cookies.set('wplc_chat_status', 5, { expires: 1, path: '/' });
|
47 |
wplc_chat_status = 5;
|
48 |
|
|
|
49 |
var wplc_run = true;
|
50 |
|
|
|
51 |
var data = {
|
52 |
action: 'wplc_get_chat_box',
|
53 |
security: wplc_nonce
|
63 |
|
64 |
jQuery( "body" ).append( response['cbox']);
|
65 |
|
66 |
+
if( typeof wplc_cookie_name == 'undefined' || typeof wplc_cookie_email == 'undefined' ){
|
67 |
+
|
68 |
+
var wplc_cookie_name = jQuery( jQuery.parseHTML( response['cbox'] ) ).find( "#wplc_name" ).val();
|
69 |
+
var wplc_cookie_email = jQuery( jQuery.parseHTML( response['cbox'] ) ).find( "#wplc_email" ).val();
|
70 |
|
71 |
+
}
|
72 |
+
|
73 |
/* is an agent online? */
|
74 |
if (response['online'] === false) {
|
75 |
wplc_run = false;
|
90 |
wplcsession:wplc_session_variable,
|
91 |
wplc_extra_data:wplc_extra_data
|
92 |
};
|
93 |
+
|
94 |
initial_data = data;
|
95 |
// ajax long polling function
|
96 |
if (wplc_filter_run_override === "0") {
|
444 |
}
|
445 |
else if(wplc_chat_status == 1){
|
446 |
jQuery("#wp-live-chat-4").show();
|
447 |
+
jQuery.event.trigger({type: "wplc_animation_done"});
|
448 |
jQuery("#wplc_chatbox").append("The chat has been ended by the operator.<br />");
|
449 |
var height = jQuery('#wplc_chatbox')[0].scrollHeight;
|
450 |
jQuery('#wplc_chatbox').scrollTop(height);
|
js/wplc_u_admin.js
CHANGED
@@ -392,21 +392,32 @@ jQuery(document).ready(function () {
|
|
392 |
}
|
393 |
});
|
394 |
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
});
|
410 |
|
411 |
wplc_call_to_server(data);
|
412 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
}
|
393 |
});
|
394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
});
|
396 |
|
397 |
wplc_call_to_server(data);
|
398 |
+
|
399 |
+
jQuery("body").on("click", ".wplc_delete_message", function(e){
|
400 |
+
|
401 |
+
var message_id = jQuery(this).attr('mid');
|
402 |
+
|
403 |
+
var data = {
|
404 |
+
action: 'delete_offline_message',
|
405 |
+
security: wplc_ajax_nonce,
|
406 |
+
mid: message_id
|
407 |
+
}
|
408 |
+
|
409 |
+
jQuery.post( wplc_ajaxurl, data, function( response ){
|
410 |
+
|
411 |
+
if( response ){
|
412 |
+
|
413 |
+
jQuery('#record_'+message_id).fadeOut(700);
|
414 |
+
|
415 |
+
}
|
416 |
+
|
417 |
+
|
418 |
+
});
|
419 |
+
|
420 |
+
});
|
421 |
+
|
422 |
+
});
|
423 |
+
|
languages/wplivechat-da_DA.po
ADDED
@@ -0,0 +1,2175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2015-10-14 14:17+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-01-21 14:02+0100\n"
|
6 |
+
"Last-Translator: Kasper Jensen <support@teknisk-support.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: da_DK\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.8.6\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress38/wp-content/plugins/wp-live-"
|
17 |
+
"chat-support\n"
|
18 |
+
"X-Poedit-SearchPath-1: C:/wamp/www/wordpress38/wp-content/plugins/wp-live-"
|
19 |
+
"chat-support-pro\n"
|
20 |
+
|
21 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:248
|
22 |
+
msgid "Guest"
|
23 |
+
msgstr "Gæst"
|
24 |
+
|
25 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:320
|
26 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:214
|
27 |
+
msgid "Admin has closed and ended the chat"
|
28 |
+
msgstr "Admin har lukket og sluttede chatten"
|
29 |
+
|
30 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:355
|
31 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:238
|
32 |
+
msgid "There is No Answer. Please Try Again Later"
|
33 |
+
msgstr "Der er Intet svar. Prøv igen senere"
|
34 |
+
|
35 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:50
|
36 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:169
|
37 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:321
|
38 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1671
|
39 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:288
|
40 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:446
|
41 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1904
|
42 |
+
msgid "IP Address not recorded"
|
43 |
+
msgstr "IP-adresse ikke registreret"
|
44 |
+
|
45 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:52
|
46 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:171
|
47 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:323
|
48 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1673
|
49 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:290
|
50 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:448
|
51 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1906
|
52 |
+
msgid "Whois for"
|
53 |
+
msgstr "Whois for"
|
54 |
+
|
55 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:57
|
56 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:329
|
57 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:295
|
58 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
|
59 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1036
|
60 |
+
msgid "Accept Chat"
|
61 |
+
msgstr "Accepter Chat"
|
62 |
+
|
63 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
64 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
65 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
66 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
67 |
+
msgid "Incoming Chat"
|
68 |
+
msgstr "Indgående Chat"
|
69 |
+
|
70 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
71 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
72 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
73 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
74 |
+
msgid "You have an incoming chat."
|
75 |
+
msgstr "Du har en indgående snak."
|
76 |
+
|
77 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
|
78 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
|
79 |
+
msgid "Open Chat"
|
80 |
+
msgstr "Åbn chat"
|
81 |
+
|
82 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
83 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
84 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
85 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
86 |
+
msgid "Chat Active"
|
87 |
+
msgstr "Chat Aktiv"
|
88 |
+
|
89 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
90 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
91 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
92 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
93 |
+
msgid "This chat is active"
|
94 |
+
msgstr "Denne chat er aktiv"
|
95 |
+
|
96 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
|
97 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:156
|
98 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:467
|
99 |
+
msgid "Initiate Chat"
|
100 |
+
msgstr "Indled Chat"
|
101 |
+
|
102 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:72
|
103 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:158
|
104 |
+
msgid "You must be a chat agent to initiate chats"
|
105 |
+
msgstr "Du skal være en chat agent til at indlede chats"
|
106 |
+
|
107 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
|
108 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:488
|
109 |
+
msgid "New"
|
110 |
+
msgstr "Ny"
|
111 |
+
|
112 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:97
|
113 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:490
|
114 |
+
msgid "Returning"
|
115 |
+
msgstr "Vender tilbage"
|
116 |
+
|
117 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
|
118 |
+
msgid "Visitors on site"
|
119 |
+
msgstr "Besøgende på stedet"
|
120 |
+
|
121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:203
|
122 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:373
|
123 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1711
|
124 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:326
|
125 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1929
|
126 |
+
msgid "Site Info"
|
127 |
+
msgstr "Side Info"
|
128 |
+
|
129 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
|
130 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:375
|
131 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1713
|
132 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:328
|
133 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1931
|
134 |
+
msgid "Chat initiated on:"
|
135 |
+
msgstr "Chat indledt på:"
|
136 |
+
|
137 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:209
|
138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:379
|
139 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1717
|
140 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:332
|
141 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1935
|
142 |
+
msgid "Advanced Info"
|
143 |
+
msgstr "Avanceret Info"
|
144 |
+
|
145 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:211
|
146 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:381
|
147 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1719
|
148 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:334
|
149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1937
|
150 |
+
msgid "Browser:"
|
151 |
+
msgstr "BROWSER"
|
152 |
+
|
153 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:212
|
154 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
|
155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1720
|
156 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:335
|
157 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1938
|
158 |
+
msgid "IP Address:"
|
159 |
+
msgstr "IP-adresse"
|
160 |
+
|
161 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:255
|
162 |
+
msgid "No visitors on-line at the moment"
|
163 |
+
msgstr "Ingen besøgende online i øjeblikket"
|
164 |
+
|
165 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:298
|
166 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:271
|
167 |
+
msgid "No chat sessions available at the moment"
|
168 |
+
msgstr "Ingen chat-sessioner til rådighed i øjeblikket"
|
169 |
+
|
170 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:300
|
171 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:273
|
172 |
+
msgid "Active Chats"
|
173 |
+
msgstr "Aktive Chats"
|
174 |
+
|
175 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
|
176 |
+
msgid "You must be a chat agent to answer chats"
|
177 |
+
msgstr "Du skal være en chat agent til at besvare chats"
|
178 |
+
|
179 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:341
|
180 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:301
|
181 |
+
msgid "Open Chat Window"
|
182 |
+
msgstr "Åbn chat vindue"
|
183 |
+
|
184 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
185 |
+
msgid "Chat has been answered by another agent"
|
186 |
+
msgstr "Chat er blevet besvaret af en anden agent"
|
187 |
+
|
188 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:346
|
189 |
+
msgid "Chat answered by another agent"
|
190 |
+
msgstr "Chat besvaret af en anden agent"
|
191 |
+
|
192 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:404
|
193 |
+
msgid "WP Live Chat Support - Offline Message from "
|
194 |
+
msgstr "WP live chat support - Offline Meddelelse fra"
|
195 |
+
|
196 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
197 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:851
|
198 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:734
|
199 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:945
|
200 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:983
|
201 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1194
|
202 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1223
|
203 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1254
|
204 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:184
|
205 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:822
|
206 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1005
|
207 |
+
msgid "Name"
|
208 |
+
msgstr "Navn"
|
209 |
+
|
210 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
211 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:852
|
212 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:735
|
213 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:946
|
214 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:984
|
215 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1195
|
216 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1224
|
217 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1255
|
218 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:823
|
219 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1006
|
220 |
+
msgid "Email"
|
221 |
+
msgstr "e-mail"
|
222 |
+
|
223 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
224 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:853
|
225 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1316
|
226 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:985
|
227 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1225
|
228 |
+
msgid "Message"
|
229 |
+
msgstr "Besked"
|
230 |
+
|
231 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
232 |
+
msgid "Via WP Live Chat Support"
|
233 |
+
msgstr "Via WP live chat support"
|
234 |
+
|
235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:457
|
236 |
+
msgid "Alert: Someone wants to chat with you on "
|
237 |
+
msgstr "Alert: nogen ønsker at chatte med dig på"
|
238 |
+
|
239 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
240 |
+
msgid "Someone wants to chat with you on your website"
|
241 |
+
msgstr "Nogen ønsker at chatte med dig på din hjemmeside"
|
242 |
+
|
243 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
244 |
+
msgid "Log in"
|
245 |
+
msgstr "Log ind"
|
246 |
+
|
247 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:631
|
248 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:647
|
249 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:662
|
250 |
+
msgid "Chat Agent"
|
251 |
+
msgstr "Chat Agent"
|
252 |
+
|
253 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
|
254 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:652
|
255 |
+
msgid "Make this user a chat agent"
|
256 |
+
msgstr "Gør denne bruger en chat agent"
|
257 |
+
|
258 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:666
|
259 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
260 |
+
msgstr "Din brugerrolle ikke tillader dig at gøre dig selv en chat agent."
|
261 |
+
|
262 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:667
|
263 |
+
msgid "Please contact the administrator of this website to change this."
|
264 |
+
msgstr "Kontakt administratoren af denne hjemmeside til at ændre dette."
|
265 |
+
|
266 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:752
|
267 |
+
msgid "Chat Agent Online"
|
268 |
+
msgstr "Chat Agent Online"
|
269 |
+
|
270 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:754
|
271 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:759
|
272 |
+
msgid "Chat Agents Online"
|
273 |
+
msgstr "Chat Agenter Online"
|
274 |
+
|
275 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:850
|
276 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:733
|
277 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1253
|
278 |
+
msgid "Date"
|
279 |
+
msgstr "Dato"
|
280 |
+
|
281 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:867
|
282 |
+
msgid "You have not received any offline messages."
|
283 |
+
msgstr "Du har ikke modtaget nogen offline beskeder."
|
284 |
+
|
285 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1180
|
286 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:788
|
287 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:523
|
288 |
+
msgid "Administrator"
|
289 |
+
msgstr "Administrator"
|
290 |
+
|
291 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1181
|
292 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:794
|
293 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:529
|
294 |
+
msgid "Editor"
|
295 |
+
msgstr "Redaktør"
|
296 |
+
|
297 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1182
|
298 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:800
|
299 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:535
|
300 |
+
msgid "Author"
|
301 |
+
msgstr "Forfatter"
|
302 |
+
|
303 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1183
|
304 |
+
msgid "Contributor"
|
305 |
+
msgstr "bidragsyder"
|
306 |
+
|
307 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1184
|
308 |
+
msgid "Subscriber"
|
309 |
+
msgstr "Abonnent"
|
310 |
+
|
311 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1314
|
312 |
+
msgid "Chat ID"
|
313 |
+
msgstr "Chat id"
|
314 |
+
|
315 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1315
|
316 |
+
msgid "From"
|
317 |
+
msgstr "Fra"
|
318 |
+
|
319 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1317
|
320 |
+
msgid "Timestamp"
|
321 |
+
msgstr "Tidsstempel"
|
322 |
+
|
323 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1318
|
324 |
+
msgid "Origin"
|
325 |
+
msgstr "Oprindelse"
|
326 |
+
|
327 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1323
|
328 |
+
msgid "user"
|
329 |
+
msgstr "bruger"
|
330 |
+
|
331 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1325
|
332 |
+
msgid "agent"
|
333 |
+
msgstr "enhed"
|
334 |
+
|
335 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:48
|
336 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:11
|
337 |
+
msgid "WP Live Chat Support Settings"
|
338 |
+
msgstr "WP live chat support Indstillinger"
|
339 |
+
|
340 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
|
341 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:604
|
342 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1699
|
343 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1714
|
344 |
+
msgid "Dear Pro User"
|
345 |
+
msgstr "Kære Pro Bruger"
|
346 |
+
|
347 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:72
|
348 |
+
msgid ""
|
349 |
+
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
350 |
+
"to do this will result in you no longer receiving updates for this plugin."
|
351 |
+
msgstr ""
|
352 |
+
"Indtast en gyldig API-nøgle på \"Live Chat\" -> \"Indstillinger\" side. Ikke "
|
353 |
+
"at gøre dette vil resultere i du ikke længere at modtage opdateringer af "
|
354 |
+
"denne plugin."
|
355 |
+
|
356 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
357 |
+
msgid "You can obtain a copy of your API key "
|
358 |
+
msgstr "Du kan få en kopi af din API-nøgle"
|
359 |
+
|
360 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
361 |
+
msgid "here"
|
362 |
+
msgstr "her"
|
363 |
+
|
364 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
365 |
+
msgid ""
|
366 |
+
"An account has been created for you while purchasing the plugin. If you have "
|
367 |
+
"lost your password, please reset it "
|
368 |
+
msgstr ""
|
369 |
+
"En konto er blevet oprettet for dig, mens køb af plugin. Hvis du har mistet "
|
370 |
+
"din adgangskode, skal du nulstille den"
|
371 |
+
|
372 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:74
|
373 |
+
msgid ""
|
374 |
+
"If you feel you are getting this message in error, please try refreshing the "
|
375 |
+
"page."
|
376 |
+
msgstr ""
|
377 |
+
"Hvis du føler, at du får denne meddelelse ved en fejl, skal du prøve at "
|
378 |
+
"opdatere siden."
|
379 |
+
|
380 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
|
381 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
382 |
+
msgid "General Settings"
|
383 |
+
msgstr "Generelle indstillinger"
|
384 |
+
|
385 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
|
386 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
387 |
+
msgid "Chat Box"
|
388 |
+
msgstr "Chat Box"
|
389 |
+
|
390 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
391 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
|
392 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2708
|
393 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
|
394 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:288
|
395 |
+
msgid "Offline Messages"
|
396 |
+
msgstr "Offline beskeder"
|
397 |
+
|
398 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:86
|
399 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:485
|
400 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
401 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
|
402 |
+
msgid "Styling"
|
403 |
+
msgstr "Udseende"
|
404 |
+
|
405 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
406 |
+
msgid "Chat Agents"
|
407 |
+
msgstr "Chat Agenter"
|
408 |
+
|
409 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
410 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
411 |
+
msgid "Blocked Visitors"
|
412 |
+
msgstr "Blokerede Besøgende"
|
413 |
+
|
414 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
|
415 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:830
|
416 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
417 |
+
msgid "Chat Experience Ratings"
|
418 |
+
msgstr "Chat Erfarings bedømmelse"
|
419 |
+
|
420 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
421 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
|
422 |
+
msgid "Encryption"
|
423 |
+
msgstr "Kryptering"
|
424 |
+
|
425 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:93
|
426 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
|
427 |
+
msgid "Main Settings"
|
428 |
+
msgstr "Primære Indstillinger"
|
429 |
+
|
430 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
|
431 |
+
msgid "Find out more."
|
432 |
+
msgstr "Læs mere…"
|
433 |
+
|
434 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
|
435 |
+
msgid "Cloud Server"
|
436 |
+
msgstr "Cloud Server"
|
437 |
+
|
438 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
|
439 |
+
msgid "Use our server to host your chat server."
|
440 |
+
msgstr "Brug vores server til at være vært for din chat-server."
|
441 |
+
|
442 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:107
|
443 |
+
msgid "API Key"
|
444 |
+
msgstr "API key"
|
445 |
+
|
446 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
447 |
+
msgid "This API key is "
|
448 |
+
msgstr "Denne API-nøgle er"
|
449 |
+
|
450 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:115
|
451 |
+
msgid "valid"
|
452 |
+
msgstr "gyldigt"
|
453 |
+
|
454 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
455 |
+
msgid "invalid"
|
456 |
+
msgstr "ugyldigt"
|
457 |
+
|
458 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:122
|
459 |
+
msgid ""
|
460 |
+
"A valid API key means that you will be able to get the latest version of the "
|
461 |
+
"plugin as and when it is released, as well as get access to support should "
|
462 |
+
"you require it."
|
463 |
+
msgstr ""
|
464 |
+
"En gyldig API-nøgle betyder, at du vil være i stand til at få den nyeste "
|
465 |
+
"version af plugin, når og hvis det er frigivet, samt få adgang til støtte "
|
466 |
+
"bør du kræver det."
|
467 |
+
|
468 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
|
469 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:37
|
470 |
+
msgid "Chat enabled"
|
471 |
+
msgstr "Chat aktiveret"
|
472 |
+
|
473 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:135
|
474 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
|
475 |
+
msgid "Yes"
|
476 |
+
msgstr "Ja"
|
477 |
+
|
478 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
|
479 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:41
|
480 |
+
msgid "No"
|
481 |
+
msgstr "Nej"
|
482 |
+
|
483 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
484 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
485 |
+
msgid "Choose when I want to be online"
|
486 |
+
msgstr "Vælg, når jeg ønsker at være online"
|
487 |
+
|
488 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
489 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
490 |
+
msgid ""
|
491 |
+
"Checking this will allow you to change your status to Online or Offline on "
|
492 |
+
"the Live Chat page."
|
493 |
+
msgstr ""
|
494 |
+
"Afkrydsning af dette vil give dig mulighed for at ændre din status til "
|
495 |
+
"online eller offline på live chat-side."
|
496 |
+
|
497 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
498 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:61
|
499 |
+
msgid "Hide Chat"
|
500 |
+
msgstr "Skjul Chat"
|
501 |
+
|
502 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
503 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:61
|
504 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
505 |
+
msgstr "Skjuler chatte 24 timer, når brugeren klikker X"
|
506 |
+
|
507 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
508 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
509 |
+
msgid "Require Name And Email"
|
510 |
+
msgstr "Kræv navn og email"
|
511 |
+
|
512 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
513 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
514 |
+
msgid ""
|
515 |
+
"Users will have to enter their Name and Email Address when starting a chat"
|
516 |
+
msgstr ""
|
517 |
+
"Brugere bliver nødt til at indtaste deres navn og e-mail adresse, når du "
|
518 |
+
"starter en chat"
|
519 |
+
|
520 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
521 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
522 |
+
msgid "Input Field Replacement Text"
|
523 |
+
msgstr "Input feltets erstatningsteksten"
|
524 |
+
|
525 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
526 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
527 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
528 |
+
msgstr "Dette er den tekst, der vil vise i stedet for navn og email felter"
|
529 |
+
|
530 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
531 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
532 |
+
msgid "Use Logged In User Details"
|
533 |
+
msgstr "Brug indloggede bruger Detaljer"
|
534 |
+
|
535 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
536 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
537 |
+
msgid ""
|
538 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
539 |
+
"in."
|
540 |
+
msgstr ""
|
541 |
+
"En brugers navn og e-mail adresse vil blive brugt som standard, hvis de er "
|
542 |
+
"logget ind."
|
543 |
+
|
544 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
545 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
546 |
+
msgid "Enable On Mobile Devices"
|
547 |
+
msgstr "Aktiver zoom på mobile enheder"
|
548 |
+
|
549 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
550 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
551 |
+
msgid ""
|
552 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
553 |
+
"devices. (Smartphones and Tablets)"
|
554 |
+
msgstr ""
|
555 |
+
"Deaktivering dette vil betyde, at Chat Box ikke vises på mobile enheder. "
|
556 |
+
"(Smartphones og tablets)"
|
557 |
+
|
558 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
559 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
560 |
+
msgid "Record a visitor's IP Address"
|
561 |
+
msgstr "Optag en besøgendes IP-adresse"
|
562 |
+
|
563 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
564 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
565 |
+
msgid "Disable this to enable anonymity for your visitors"
|
566 |
+
msgstr "Deaktiver denne at aktivere anonymitet for dine besøgende"
|
567 |
+
|
568 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
569 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
570 |
+
msgid "Play a sound when a new message is received"
|
571 |
+
msgstr "Afspil en lyd, når en ny besked modtages"
|
572 |
+
|
573 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
574 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
575 |
+
msgid ""
|
576 |
+
"Disable this to mute the sound that is played when a new chat message is "
|
577 |
+
"received"
|
578 |
+
msgstr ""
|
579 |
+
"Deaktiver denne for at slå lyd, der afspilles, når en ny chat-besked modtages"
|
580 |
+
|
581 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
582 |
+
msgid "Include chat window on the following pages:"
|
583 |
+
msgstr "Medtag chat vindue på de følgende sider:"
|
584 |
+
|
585 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
586 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
587 |
+
msgid ""
|
588 |
+
"Show the chat window on the following pages. Leave blank to show on all. "
|
589 |
+
"(Use comma-separated Page ID's)"
|
590 |
+
msgstr ""
|
591 |
+
"Vis chatvinduet på de følgende sider. Lad stå tomt for at vise på alle. "
|
592 |
+
"(Brug kommasepareret Side ID'er)"
|
593 |
+
|
594 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
595 |
+
msgid "Exclude chat window on the following pages:"
|
596 |
+
msgstr "Udeluk chatvinduet på de følgende sider:"
|
597 |
+
|
598 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
599 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
600 |
+
msgid ""
|
601 |
+
"Do not show the chat window on the following pages. Leave blank to show on "
|
602 |
+
"all. (Use comma-separated Page ID's)"
|
603 |
+
msgstr ""
|
604 |
+
"Vis ikke chatvinduet på de følgende sider. Lad stå tomt for at vise på alle. "
|
605 |
+
"(Brug kommasepareret Side ID'er)"
|
606 |
+
|
607 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
608 |
+
msgid "Allow any user to make themselves a chat agent"
|
609 |
+
msgstr "Tillad alle brugere at gøre sig en chat agent"
|
610 |
+
|
611 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
612 |
+
msgid ""
|
613 |
+
"Checking this will allow any of your users to make themselves a chat agent "
|
614 |
+
"when editing their profile."
|
615 |
+
msgstr ""
|
616 |
+
"Kontrol dette vil give nogen af dine brugere til at give sig en chat agent, "
|
617 |
+
"når du redigerer deres profil."
|
618 |
+
|
619 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:255
|
620 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
|
621 |
+
msgid "Chat Window Settings"
|
622 |
+
msgstr "Chatvinduet Indstillinger"
|
623 |
+
|
624 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:258
|
625 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:163
|
626 |
+
msgid "Chat box alignment"
|
627 |
+
msgstr "Chatfeltet tilpasning"
|
628 |
+
|
629 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:263
|
630 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:166
|
631 |
+
msgid "Bottom left"
|
632 |
+
msgstr "Forneden venstre"
|
633 |
+
|
634 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
635 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:167
|
636 |
+
msgid "Bottom right"
|
637 |
+
msgstr "Forneden højre"
|
638 |
+
|
639 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:269
|
640 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:168
|
641 |
+
msgid "Left"
|
642 |
+
msgstr "Venstre"
|
643 |
+
|
644 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:272
|
645 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:169
|
646 |
+
msgid "Right"
|
647 |
+
msgstr "Højre"
|
648 |
+
|
649 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
650 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:175
|
651 |
+
msgid "Auto Pop-up"
|
652 |
+
msgstr "Automatisk pop-up"
|
653 |
+
|
654 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
655 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:175
|
656 |
+
msgid ""
|
657 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
658 |
+
"email address)."
|
659 |
+
msgstr ""
|
660 |
+
"Udvid chat boksen automatisk (beder brugeren om at indtaste deres navn og e-"
|
661 |
+
"mail-adresse)."
|
662 |
+
|
663 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:289
|
664 |
+
msgid "Name "
|
665 |
+
msgstr "Navn"
|
666 |
+
|
667 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:303
|
668 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
|
669 |
+
msgid "Picture"
|
670 |
+
msgstr "Billede"
|
671 |
+
|
672 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:311
|
673 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
|
674 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
675 |
+
msgid "Upload Image"
|
676 |
+
msgstr "Upload billede"
|
677 |
+
|
678 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:313
|
679 |
+
msgid "Remove Image"
|
680 |
+
msgstr "Fjern billede"
|
681 |
+
|
682 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:314
|
683 |
+
msgid "Recomended Size 40px x 40px"
|
684 |
+
msgstr "Anbefalet Størrelse 40px x 40px"
|
685 |
+
|
686 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:320
|
687 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
|
688 |
+
msgid "Logo"
|
689 |
+
msgstr "Logo"
|
690 |
+
|
691 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:328
|
692 |
+
msgid "Upload Logo"
|
693 |
+
msgstr "Upload Logo"
|
694 |
+
|
695 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:330
|
696 |
+
msgid "Remove Logo"
|
697 |
+
msgstr "Fjern logo"
|
698 |
+
|
699 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:331
|
700 |
+
msgid "Recomended Size 250px x 40px"
|
701 |
+
msgstr "Anbefalet Størrelse 250px x 40px"
|
702 |
+
|
703 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
704 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
|
705 |
+
msgid "Chat delay (seconds)"
|
706 |
+
msgstr "Chat forsinkelse (sekunder)"
|
707 |
+
|
708 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
709 |
+
msgid "How long it takes for your chat window to pop up"
|
710 |
+
msgstr "Hvor lang tid det tager for din chat-vindue til at poppe op"
|
711 |
+
|
712 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
713 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:248
|
714 |
+
msgid "Chat notifications"
|
715 |
+
msgstr "Chat underretninger"
|
716 |
+
|
717 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
718 |
+
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
719 |
+
msgstr ""
|
720 |
+
"Advare mig via e-mail, så snart nogen ønsker at chatte (mens kun online)"
|
721 |
+
|
722 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
723 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
724 |
+
msgid "Display name and avatar in chat"
|
725 |
+
msgstr "Vist navn og avatar i chatten"
|
726 |
+
|
727 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
728 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
729 |
+
msgid "Display the agent and user name above each message in the chat window."
|
730 |
+
msgstr "Vise agent og brugernavnet over hver besked i chatvinduet."
|
731 |
+
|
732 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
733 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
734 |
+
msgid "Only show the chat window to users that are logged in"
|
735 |
+
msgstr "Vis kun chatvinduet til brugere, der er logget ind"
|
736 |
+
|
737 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
738 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
739 |
+
msgid ""
|
740 |
+
"By checking this, only users that are logged in will be able to chat with "
|
741 |
+
"you."
|
742 |
+
msgstr ""
|
743 |
+
"Ved at markere dette, vil kun brugere, der er logget ind kan chatte med dig."
|
744 |
+
|
745 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
746 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
747 |
+
msgid "Do not allow users to send offline messages"
|
748 |
+
msgstr "Må ikke muligt for brugerne at sende offline beskeder"
|
749 |
+
|
750 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
751 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
752 |
+
msgid ""
|
753 |
+
"The chat window will be hidden when it is offline. Users will not be able to "
|
754 |
+
"send offline messages to you"
|
755 |
+
msgstr ""
|
756 |
+
"Chatten vindue vil være skjult, når den er offline. Brugerne vil ikke være i "
|
757 |
+
"stand til at sende offline beskeder til dig"
|
758 |
+
|
759 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
760 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
|
761 |
+
msgid "Email Address"
|
762 |
+
msgstr "E-mail adresse"
|
763 |
+
|
764 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
765 |
+
msgid ""
|
766 |
+
"Email address where offline messages are delivered to. Use comma separated "
|
767 |
+
"email addresses to send to more than one email address"
|
768 |
+
msgstr ""
|
769 |
+
"E-mail-adresse, hvor offline meddelelser leveres til. Brug kommasepareret e-"
|
770 |
+
"mail adresser til at sende til mere end én e-mail-adresse"
|
771 |
+
|
772 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:412
|
773 |
+
msgid "Sending Method"
|
774 |
+
msgstr "Sender Metode"
|
775 |
+
|
776 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:413
|
777 |
+
msgid "WP Mail"
|
778 |
+
msgstr "WP Mail"
|
779 |
+
|
780 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:414
|
781 |
+
msgid "PHP Mailer"
|
782 |
+
msgstr "PHP Mailer"
|
783 |
+
|
784 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:430
|
785 |
+
msgid "Host"
|
786 |
+
msgstr "Værtsorganisme"
|
787 |
+
|
788 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:438
|
789 |
+
msgid "Port"
|
790 |
+
msgstr "Port"
|
791 |
+
|
792 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:446
|
793 |
+
msgid "Username"
|
794 |
+
msgstr "Brugernavn"
|
795 |
+
|
796 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:454
|
797 |
+
msgid "Password"
|
798 |
+
msgstr "Adgangskode"
|
799 |
+
|
800 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:463
|
801 |
+
msgid "Offline Chat Box Title"
|
802 |
+
msgstr "Offline Chat Box Titel"
|
803 |
+
|
804 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:471
|
805 |
+
msgid "Offline Text Fields"
|
806 |
+
msgstr "Offline Tekst Felter"
|
807 |
+
|
808 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:504
|
809 |
+
msgid "Choose a theme"
|
810 |
+
msgstr "Vælg et tema"
|
811 |
+
|
812 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
813 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:512
|
814 |
+
msgid "Theme 1"
|
815 |
+
msgstr "Tema 1"
|
816 |
+
|
817 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:515
|
818 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
819 |
+
msgid "Theme 2"
|
820 |
+
msgstr "Tema 2"
|
821 |
+
|
822 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:521
|
823 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:524
|
824 |
+
msgid "Theme 3"
|
825 |
+
msgstr "Tema 3"
|
826 |
+
|
827 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:527
|
828 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:530
|
829 |
+
msgid "Theme 4"
|
830 |
+
msgstr "Tema (4)"
|
831 |
+
|
832 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:533
|
833 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:536
|
834 |
+
msgid "Theme 5"
|
835 |
+
msgstr "Tema 5"
|
836 |
+
|
837 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:539
|
838 |
+
msgid "Theme 6"
|
839 |
+
msgstr "Tema 6"
|
840 |
+
|
841 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:542
|
842 |
+
msgid "Custom. Enter Colour Values Below"
|
843 |
+
msgstr "Skik. Indtast Farve Værdier under"
|
844 |
+
|
845 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
846 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
847 |
+
msgid "Chat box fill color"
|
848 |
+
msgstr "Chatfeltet fyldfarve"
|
849 |
+
|
850 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:574
|
851 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:368
|
852 |
+
msgid "Chat box font color"
|
853 |
+
msgstr "Chatfeltet font farve"
|
854 |
+
|
855 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:581
|
856 |
+
msgid "I'm using a localization plugin"
|
857 |
+
msgstr "Jeg bruger en lokalisering plugin"
|
858 |
+
|
859 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:584
|
860 |
+
msgid "documentation"
|
861 |
+
msgstr "dokumentation"
|
862 |
+
|
863 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:589
|
864 |
+
msgid ""
|
865 |
+
"You will only be able to edit the strings shown in the chat window of the "
|
866 |
+
"code now. <br/> This has been done to accommodate as many localization "
|
867 |
+
"plugins as possible. <br/> For more information on how to change these "
|
868 |
+
"strings, please consult the "
|
869 |
+
msgstr ""
|
870 |
+
"Du vil kun være i stand til at redigere strengene er vist i chatvinduet af "
|
871 |
+
"koden nu. <br/> Dette er blevet gjort for at rumme så mange lokalisering "
|
872 |
+
"plugins som muligt. <br/> For mere information om, hvordan du ændrer disse "
|
873 |
+
"strenge, henvises til"
|
874 |
+
|
875 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:594
|
876 |
+
msgid "First Section Text"
|
877 |
+
msgstr "Første afsnit Tekst"
|
878 |
+
|
879 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:601
|
880 |
+
msgid "Intro Text"
|
881 |
+
msgstr "Intro tekst"
|
882 |
+
|
883 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:607
|
884 |
+
msgid "Second Section Text"
|
885 |
+
msgstr "forstærkningstog"
|
886 |
+
|
887 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:614
|
888 |
+
msgid "Reactivate Chat Section Text"
|
889 |
+
msgstr "Genaktiver Chat Sektion tekst"
|
890 |
+
|
891 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:622
|
892 |
+
msgid "User chat welcome"
|
893 |
+
msgstr "Bruger chat velkommen"
|
894 |
+
|
895 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:628
|
896 |
+
msgid "Other text"
|
897 |
+
msgstr "Andre tekst"
|
898 |
+
|
899 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:630
|
900 |
+
msgid "This text is shown above the user chat input field"
|
901 |
+
msgstr "Denne tekst vises over feltet brugeren chat input"
|
902 |
+
|
903 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:662
|
904 |
+
msgid ""
|
905 |
+
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
906 |
+
"update your plugin to allow for animations to function"
|
907 |
+
msgstr ""
|
908 |
+
"Du bruger en forældet version af WP live chat support Basic. Opdater dit "
|
909 |
+
"plugin for at give mulighed for animationer til at fungere"
|
910 |
+
|
911 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:666
|
912 |
+
msgid "Choose an animation"
|
913 |
+
msgstr "Vælg en animation"
|
914 |
+
|
915 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:674
|
916 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:439
|
917 |
+
msgid "Slide Up"
|
918 |
+
msgstr "Glid op"
|
919 |
+
|
920 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:680
|
921 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:443
|
922 |
+
msgid "Slide From The Side"
|
923 |
+
msgstr "Slide fra siden"
|
924 |
+
|
925 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:686
|
926 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
927 |
+
msgid "Fade In"
|
928 |
+
msgstr "optone"
|
929 |
+
|
930 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:692
|
931 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
932 |
+
msgid "No Animation"
|
933 |
+
msgstr "Ingen Animation"
|
934 |
+
|
935 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:750
|
936 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:495
|
937 |
+
msgid "Current Users that are Chat Agents"
|
938 |
+
msgstr "Nuværende brugere, der er chat Agenter"
|
939 |
+
|
940 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:761
|
941 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:503
|
942 |
+
msgid "Online"
|
943 |
+
msgstr "Online"
|
944 |
+
|
945 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:771
|
946 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:679
|
947 |
+
msgid "Remove"
|
948 |
+
msgstr "Fjern"
|
949 |
+
|
950 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:780
|
951 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:514
|
952 |
+
msgid "Add New Agent"
|
953 |
+
msgstr "Tilføj ny agent"
|
954 |
+
|
955 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:782
|
956 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2805
|
957 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:516
|
958 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
959 |
+
msgid "Select"
|
960 |
+
msgstr "Vælg"
|
961 |
+
|
962 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:804
|
963 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:539
|
964 |
+
msgid "Add Agent"
|
965 |
+
msgstr "Tilføj agent"
|
966 |
+
|
967 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:810
|
968 |
+
msgid ""
|
969 |
+
"Should you wish to add a user that has a role less than 'Author', please go "
|
970 |
+
"to the <a href='./users.php'>Users</a> page, select the relevant user, click "
|
971 |
+
"Edit and scroll to the bottom of the page and enable the 'Chat Agent' "
|
972 |
+
"checkbox."
|
973 |
+
msgstr ""
|
974 |
+
"Hvis du ønsker at tilføje en bruger, der har en rolle mindre end 'Author', "
|
975 |
+
"skal du gå til <a href='./users.php'>Brugere</a> skal du vælge den relevante "
|
976 |
+
"bruger, skal du klikke på Rediger og rulle til bunden af siden, og gøre det "
|
977 |
+
"muligt for \"Chat Agent\" afkrydsningsfeltet."
|
978 |
+
|
979 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:811
|
980 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
981 |
+
msgstr "Hvis der ikke er chat agenter online, vil chatten vises som offline"
|
982 |
+
|
983 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:815
|
984 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:551
|
985 |
+
msgid "Blocked Visitors - Based on IP Address"
|
986 |
+
msgstr "Blokerede Besøgende - Baseret på IP-adresse"
|
987 |
+
|
988 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:816
|
989 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:552
|
990 |
+
msgid "Enter each IP Address you would like to block on a new line"
|
991 |
+
msgstr "Indtast hver IP-adresse, du ønsker at blokere på en ny linje"
|
992 |
+
|
993 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
|
994 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:563
|
995 |
+
msgid ""
|
996 |
+
"Blocking a user's IP Address here will hide the chat window from them, "
|
997 |
+
"preventing them from chatting with you. Each IP Address must be on a new line"
|
998 |
+
msgstr ""
|
999 |
+
"Blokering en brugers IP-adresse her, vil skjule chatvinduet fra dem, "
|
1000 |
+
"forhindrer dem i at chatte med dig. Hver IP-adresse skal være på en ny linje"
|
1001 |
+
|
1002 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
1003 |
+
msgid ""
|
1004 |
+
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
1005 |
+
msgstr ""
|
1006 |
+
"er kun tilgængelige i WP live chat support Chat Experience Ratings tilføjelse"
|
1007 |
+
|
1008 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:840
|
1009 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:566
|
1010 |
+
msgid "Chat Encryption"
|
1011 |
+
msgstr "Chat Kryptering"
|
1012 |
+
|
1013 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1014 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
1015 |
+
msgid "Enable Encryption"
|
1016 |
+
msgstr "Aktiver kryptering"
|
1017 |
+
|
1018 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1019 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
1020 |
+
msgid ""
|
1021 |
+
"All messages will be encrypted when being sent to and from the user and "
|
1022 |
+
"agent."
|
1023 |
+
msgstr ""
|
1024 |
+
"Alle meddelelser skal sendes krypteret, når de sendes til og fra brugeren og "
|
1025 |
+
"agent."
|
1026 |
+
|
1027 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:851
|
1028 |
+
msgid ""
|
1029 |
+
"Once enabled, all messages sent will be encrypted. This cannot be undone."
|
1030 |
+
msgstr ""
|
1031 |
+
"Når aktiveret, vil alle beskeder sendt krypteres. Dette kan ikke fortrydes."
|
1032 |
+
|
1033 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:857
|
1034 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:583
|
1035 |
+
msgid "Save Settings"
|
1036 |
+
msgstr "Gem opsætning"
|
1037 |
+
|
1038 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:588
|
1039 |
+
msgid "Dear User"
|
1040 |
+
msgstr "Kære Bruger"
|
1041 |
+
|
1042 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1043 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
1044 |
+
msgstr "Du bruger en forældet version af WP live chat support Basic. Be om"
|
1045 |
+
|
1046 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1047 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1048 |
+
msgid "update to at least version"
|
1049 |
+
msgstr "opdatere til mindst version"
|
1050 |
+
|
1051 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1052 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1053 |
+
msgid "to ensure all functionality is in working order"
|
1054 |
+
msgstr "at sikre al funktionalitet er i orden"
|
1055 |
+
|
1056 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:590
|
1057 |
+
msgid ""
|
1058 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1059 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
1060 |
+
"user experience for both yourself and your visitors."
|
1061 |
+
msgstr ""
|
1062 |
+
"Du er live chat boks på din hjemmeside er blevet midlertidigt deaktiveret, "
|
1063 |
+
"indtil den grundlæggende plugin er blevet opdateret. Dette er for at sikre "
|
1064 |
+
"en smidig og problemfri brugeroplevelse for både dig selv og dine besøgende."
|
1065 |
+
|
1066 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:591
|
1067 |
+
msgid ""
|
1068 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
1069 |
+
"href='./plugins.php'>here</a>."
|
1070 |
+
msgstr ""
|
1071 |
+
"Du kan opdatere din plugin <a href='./update-core.php'>her</a> eller <a "
|
1072 |
+
"href='./plugins.php'>her.</a>"
|
1073 |
+
|
1074 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:592
|
1075 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1703
|
1076 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1723
|
1077 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
1078 |
+
msgstr "Hvis du har problemer med at opdatere plugin, kan du kontakte"
|
1079 |
+
|
1080 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:605
|
1081 |
+
msgid ""
|
1082 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
1083 |
+
"download the latest copy from"
|
1084 |
+
msgstr ""
|
1085 |
+
"WP live chat support Pro kræver WP live chat support til at fungere. Du kan "
|
1086 |
+
"hente den nyeste kopi fra"
|
1087 |
+
|
1088 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:617
|
1089 |
+
msgid "Admin"
|
1090 |
+
msgstr "Administrator"
|
1091 |
+
|
1092 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:621
|
1093 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:854
|
1094 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1103
|
1095 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:377
|
1096 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:781
|
1097 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:962
|
1098 |
+
msgid "Questions?"
|
1099 |
+
msgstr "Spørgsmål?"
|
1100 |
+
|
1101 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:622
|
1102 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:855
|
1103 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1104
|
1104 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1105 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:781
|
1106 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:962
|
1107 |
+
msgid "Chat with us"
|
1108 |
+
msgstr "Chat med os"
|
1109 |
+
|
1110 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:623
|
1111 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
|
1112 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1105
|
1113 |
+
msgid "Start live chat"
|
1114 |
+
msgstr "Start chat"
|
1115 |
+
|
1116 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:624
|
1117 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:858
|
1118 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1107
|
1119 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:384
|
1120 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:840
|
1121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1024
|
1122 |
+
msgid "Start Chat"
|
1123 |
+
msgstr "Start chat"
|
1124 |
+
|
1125 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:625
|
1126 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:859
|
1127 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1108
|
1128 |
+
msgid "Connecting. Please be patient..."
|
1129 |
+
msgstr "Tilslutning. Vær tålmodig..."
|
1130 |
+
|
1131 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:626
|
1132 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:861
|
1133 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1110
|
1134 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:393
|
1135 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:846
|
1136 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1030
|
1137 |
+
msgid "Reactivating your previous chat..."
|
1138 |
+
msgstr "Genaktivering din tidligere chat ..."
|
1139 |
+
|
1140 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:627
|
1141 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:863
|
1142 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1112
|
1143 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:310
|
1144 |
+
msgid "Chat offline. Leave a message"
|
1145 |
+
msgstr "Chat offline. Efterlad en besked"
|
1146 |
+
|
1147 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:628
|
1148 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:865
|
1149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1114
|
1150 |
+
msgid "Hello. Please input your details so that I may help you."
|
1151 |
+
msgstr "Hej. Indtast venligst dine oplysninger, så jeg kan hjælpe dig."
|
1152 |
+
|
1153 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:629
|
1154 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:867
|
1155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:868
|
1156 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1116
|
1157 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1117
|
1158 |
+
msgid ""
|
1159 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
1160 |
+
"shortly."
|
1161 |
+
msgstr ""
|
1162 |
+
"Vi er i øjeblikket offline. Indtal en besked, og vi vil vende tilbage til "
|
1163 |
+
"dig snarest."
|
1164 |
+
|
1165 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:630
|
1166 |
+
msgid "Sending message..."
|
1167 |
+
msgstr "Sender besked"
|
1168 |
+
|
1169 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:631
|
1170 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:869
|
1171 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
|
1172 |
+
msgid "Thank you for your message. We will be in contact soon."
|
1173 |
+
msgstr "Tak for din besked. Vi vil være i kontakt snart."
|
1174 |
+
|
1175 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:632
|
1176 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:871
|
1177 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1120
|
1178 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:851
|
1179 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1035
|
1180 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1947
|
1181 |
+
msgid "Press ENTER to send your message"
|
1182 |
+
msgstr "Tryk på ENTER for at sende din besked"
|
1183 |
+
|
1184 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:633
|
1185 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:873
|
1186 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1122
|
1187 |
+
msgid "Welcome. How may I help you?"
|
1188 |
+
msgstr "Velkomst. Hvordan kan jeg hjælpe dig?"
|
1189 |
+
|
1190 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:673
|
1191 |
+
msgid "Rating Unavailable"
|
1192 |
+
msgstr "Bedømmelse Ikke tilgængelig"
|
1193 |
+
|
1194 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:677
|
1195 |
+
msgid "You are currently accepting chats"
|
1196 |
+
msgstr "Du er i øjeblikket accepterer chats"
|
1197 |
+
|
1198 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:678
|
1199 |
+
msgid "You are not accepting chats"
|
1200 |
+
msgstr "Du er ikke accepterer chats"
|
1201 |
+
|
1202 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:727
|
1203 |
+
msgid "Delete History"
|
1204 |
+
msgstr "Slet Historie"
|
1205 |
+
|
1206 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:736
|
1207 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1256
|
1208 |
+
msgid "URL"
|
1209 |
+
msgstr "Webadresse"
|
1210 |
+
|
1211 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:737
|
1212 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1569
|
1213 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1823
|
1214 |
+
msgid "Status"
|
1215 |
+
msgstr "Status"
|
1216 |
+
|
1217 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:738
|
1218 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1570
|
1219 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1824
|
1220 |
+
msgid "Action"
|
1221 |
+
msgstr "Handling"
|
1222 |
+
|
1223 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:744
|
1224 |
+
msgid "No chats available at the moment"
|
1225 |
+
msgstr "Ingen chats rådighed i øjeblikket"
|
1226 |
+
|
1227 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
1228 |
+
msgid "View Chat History"
|
1229 |
+
msgstr "Chat-historik"
|
1230 |
+
|
1231 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
1232 |
+
msgid "Download Chat History"
|
1233 |
+
msgstr "Hent Chat History"
|
1234 |
+
|
1235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:875
|
1236 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1124
|
1237 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1304
|
1238 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2468
|
1239 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1240 |
+
msgstr "Klik 'Start Chat' for at starte en chat med en agent"
|
1241 |
+
|
1242 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:896
|
1243 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1146
|
1244 |
+
msgid "Minimize Chat Window"
|
1245 |
+
msgstr "Minimer Chat vindue"
|
1246 |
+
|
1247 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:897
|
1248 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1147
|
1249 |
+
msgid "Close Chat Window"
|
1250 |
+
msgstr "luk vindue"
|
1251 |
+
|
1252 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:997
|
1253 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1235
|
1254 |
+
msgid "Send message"
|
1255 |
+
msgstr "Send besked"
|
1256 |
+
|
1257 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1023
|
1258 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1261
|
1259 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:855
|
1260 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1039
|
1261 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1961
|
1262 |
+
msgid "Send"
|
1263 |
+
msgstr "Send"
|
1264 |
+
|
1265 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1480
|
1266 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2511
|
1267 |
+
msgid "Your settings have been saved."
|
1268 |
+
msgstr "Dine indstillinger er blevet gemt."
|
1269 |
+
|
1270 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1516
|
1271 |
+
msgid "Chat sessions"
|
1272 |
+
msgstr "Chat-sessioner"
|
1273 |
+
|
1274 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1518
|
1275 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1794
|
1276 |
+
msgid ""
|
1277 |
+
"Please note: This window must be open in order to receive new chat "
|
1278 |
+
"notifications."
|
1279 |
+
msgstr ""
|
1280 |
+
"Bemærk: Dette vindue skal være åben for at modtage nye chat meddelelser."
|
1281 |
+
|
1282 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1522
|
1283 |
+
msgid ""
|
1284 |
+
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1285 |
+
"chat to visitors"
|
1286 |
+
msgstr ""
|
1287 |
+
"Du er ikke en chat agent. Vær dig selv en chat agent, før du prøver at "
|
1288 |
+
"snakke med de besøgende"
|
1289 |
+
|
1290 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1550
|
1291 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1804
|
1292 |
+
msgid "Visitors online"
|
1293 |
+
msgstr "Besøgende online"
|
1294 |
+
|
1295 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1555
|
1296 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1809
|
1297 |
+
msgid "Agent(s) online"
|
1298 |
+
msgstr "Agent (er) online"
|
1299 |
+
|
1300 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1565
|
1301 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1819
|
1302 |
+
msgid "Visitor"
|
1303 |
+
msgstr "besøgende"
|
1304 |
+
|
1305 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1566
|
1306 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1820
|
1307 |
+
msgid "Time"
|
1308 |
+
msgstr "Tid"
|
1309 |
+
|
1310 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
|
1311 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1821
|
1312 |
+
msgid "Type"
|
1313 |
+
msgstr "Type"
|
1314 |
+
|
1315 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
|
1316 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1822
|
1317 |
+
msgid "Data"
|
1318 |
+
msgstr "Data"
|
1319 |
+
|
1320 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1666
|
1321 |
+
msgid "Unknown"
|
1322 |
+
msgstr "Ukendt"
|
1323 |
+
|
1324 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1682
|
1325 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1912
|
1326 |
+
msgid "End chat"
|
1327 |
+
msgstr "Slut chat"
|
1328 |
+
|
1329 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1687
|
1330 |
+
msgid "Attempting to open the chat window... Please be patient."
|
1331 |
+
msgstr "Forsøg på at åbne chat-vinduet ... Vær tålmodig."
|
1332 |
+
|
1333 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1798
|
1334 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2757
|
1335 |
+
msgid "This chat has already been answered. Please close the chat window"
|
1336 |
+
msgstr "Denne chat er allerede blevet besvaret. Luk chatvinduet"
|
1337 |
+
|
1338 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1873
|
1339 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2082
|
1340 |
+
msgid "User has opened the chat window"
|
1341 |
+
msgstr "Bruger har åbnet chatvinduet"
|
1342 |
+
|
1343 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1878
|
1344 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
|
1345 |
+
msgid "User has minimized the chat window"
|
1346 |
+
msgstr "Bruger har minimeret chatvinduet"
|
1347 |
+
|
1348 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1883
|
1349 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2092
|
1350 |
+
msgid "User has maximized the chat window"
|
1351 |
+
msgstr "Bruger har maksimeret chatvinduet"
|
1352 |
+
|
1353 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1888
|
1354 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2097
|
1355 |
+
msgid "User has closed and ended the chat"
|
1356 |
+
msgstr "Bruger har lukket og sluttede chatten"
|
1357 |
+
|
1358 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2477
|
1359 |
+
msgid ""
|
1360 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
1361 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1362 |
+
msgstr ""
|
1363 |
+
"Der opstod en uventet HTTP-fejl under API-anmodningen. </p><p> <a href=“?” "
|
1364 |
+
"onclick=“document.location.reload(); return false;”>Prøv igen</a>"
|
1365 |
+
|
1366 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2482
|
1367 |
+
msgid "An unknown error occurred"
|
1368 |
+
msgstr "En ukendt fejl opstod"
|
1369 |
+
|
1370 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1371 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1372 |
+
msgid "Add-ons"
|
1373 |
+
msgstr "Add-ons"
|
1374 |
+
|
1375 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1376 |
+
msgid "Supplimentary Plugins"
|
1377 |
+
msgstr "Basale plugin"
|
1378 |
+
|
1379 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1380 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1381 |
+
msgid "Pro add-on"
|
1382 |
+
msgstr "Pro add-on"
|
1383 |
+
|
1384 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1385 |
+
msgid "Get this extension"
|
1386 |
+
msgstr "Få denne udvidelse"
|
1387 |
+
|
1388 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2703
|
1389 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:446
|
1390 |
+
msgid "Live Chat"
|
1391 |
+
msgstr "Live chat"
|
1392 |
+
|
1393 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2704
|
1394 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:447
|
1395 |
+
msgid "Settings"
|
1396 |
+
msgstr "Indstillinger"
|
1397 |
+
|
1398 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2705
|
1399 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2729
|
1400 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2740
|
1401 |
+
msgid "Quick Responses"
|
1402 |
+
msgstr "Hurtige svar"
|
1403 |
+
|
1404 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2706
|
1405 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:448
|
1406 |
+
msgid "History"
|
1407 |
+
msgstr "Historik"
|
1408 |
+
|
1409 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2707
|
1410 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:449
|
1411 |
+
msgid "Missed Chats"
|
1412 |
+
msgstr "Mistede Chats"
|
1413 |
+
|
1414 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2709
|
1415 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1416 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:450
|
1417 |
+
msgid "Feedback"
|
1418 |
+
msgstr "Feedback"
|
1419 |
+
|
1420 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2711
|
1421 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:452
|
1422 |
+
msgid "Extensions"
|
1423 |
+
msgstr "Udvidelser"
|
1424 |
+
|
1425 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2716
|
1426 |
+
msgid "Error Log"
|
1427 |
+
msgstr "Fejl Log"
|
1428 |
+
|
1429 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2719
|
1430 |
+
msgid "Statistics"
|
1431 |
+
msgstr "Statistik"
|
1432 |
+
|
1433 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2722
|
1434 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:451
|
1435 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2764
|
1436 |
+
msgid "Support"
|
1437 |
+
msgstr "Support"
|
1438 |
+
|
1439 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2730
|
1440 |
+
msgid "Quick Response"
|
1441 |
+
msgstr "Hurtig responstid"
|
1442 |
+
|
1443 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2731
|
1444 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2734
|
1445 |
+
msgid "New Quick Response"
|
1446 |
+
msgstr "Ny Quick Response"
|
1447 |
+
|
1448 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2732
|
1449 |
+
msgid "Add New Quick Response"
|
1450 |
+
msgstr "Tilføj ny Quick Response"
|
1451 |
+
|
1452 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2733
|
1453 |
+
msgid "Edit Quick Response"
|
1454 |
+
msgstr "Rediger Quick Response"
|
1455 |
+
|
1456 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2735
|
1457 |
+
msgid "All Quick Responses"
|
1458 |
+
msgstr "Alle hurtige svar"
|
1459 |
+
|
1460 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2736
|
1461 |
+
msgid "View Quick Responses"
|
1462 |
+
msgstr "Se hurtige svar"
|
1463 |
+
|
1464 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2737
|
1465 |
+
msgid "Search Quick Responses"
|
1466 |
+
msgstr "Søg hurtige svar"
|
1467 |
+
|
1468 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2738
|
1469 |
+
msgid "No Quick Responses found"
|
1470 |
+
msgstr "Ingen hurtige svar fundet"
|
1471 |
+
|
1472 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2739
|
1473 |
+
msgid "No Quick Responses found in the Trash"
|
1474 |
+
msgstr "Ingen hurtige svar findes i papirkurven"
|
1475 |
+
|
1476 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2744
|
1477 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
1478 |
+
msgstr "Hurtige svar til WP live chat support Pro"
|
1479 |
+
|
1480 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2798
|
1481 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2802
|
1482 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1483 |
+
msgid "Assign Quick Response"
|
1484 |
+
msgstr "Tildel Quick Response"
|
1485 |
+
|
1486 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2811
|
1487 |
+
msgid "What is this?"
|
1488 |
+
msgstr "Hvad er det?"
|
1489 |
+
|
1490 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:878
|
1491 |
+
msgid "complete"
|
1492 |
+
msgstr "afleveret"
|
1493 |
+
|
1494 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:881
|
1495 |
+
msgid "pending"
|
1496 |
+
msgstr "Verserende"
|
1497 |
+
|
1498 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:884
|
1499 |
+
msgid "active"
|
1500 |
+
msgstr "aktiv"
|
1501 |
+
|
1502 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:887
|
1503 |
+
msgid "deleted"
|
1504 |
+
msgstr "Slettede"
|
1505 |
+
|
1506 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:890
|
1507 |
+
msgid "browsing"
|
1508 |
+
msgstr "Visning"
|
1509 |
+
|
1510 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:893
|
1511 |
+
msgid "requesting chat"
|
1512 |
+
msgstr "anmoder om chat"
|
1513 |
+
|
1514 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:896
|
1515 |
+
msgid "Chat Ended - User still browsing"
|
1516 |
+
msgstr "Chat Sluttet - Bruger stadig aktiv på side"
|
1517 |
+
|
1518 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:899
|
1519 |
+
msgid "User is browsing but doesn't want to chat"
|
1520 |
+
msgstr "Brugeren er aktiv på siden, men ønsker ikke at chatte"
|
1521 |
+
|
1522 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1036
|
1523 |
+
msgid "Get Pro Add-on to accept more chats"
|
1524 |
+
msgstr "Få Pro Add-on til at acceptere flere chats"
|
1525 |
+
|
1526 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1283
|
1527 |
+
msgid "You have not missed any chat requests."
|
1528 |
+
msgstr "Du har ikke savnet nogen chat anmodninger."
|
1529 |
+
|
1530 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1531 |
+
msgid "WP Live Chat Support Feedback"
|
1532 |
+
msgstr "WP live chat support Feedback"
|
1533 |
+
|
1534 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
1535 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
1536 |
+
msgstr "Vi vil meget gerne høre dine kommentarer og / eller forslag"
|
1537 |
+
|
1538 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
1539 |
+
msgid "Your Name"
|
1540 |
+
msgstr "Dit navn"
|
1541 |
+
|
1542 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
1543 |
+
msgid "Your Email"
|
1544 |
+
msgstr "Din e-mail"
|
1545 |
+
|
1546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1547 |
+
msgid "Your Website"
|
1548 |
+
msgstr "Hjemmeside"
|
1549 |
+
|
1550 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1551 |
+
msgid "Send Feedback"
|
1552 |
+
msgstr "Send feedback"
|
1553 |
+
|
1554 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:29
|
1555 |
+
msgid "Agents"
|
1556 |
+
msgstr "Agenter"
|
1557 |
+
|
1558 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:52
|
1559 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
|
1560 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
1561 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:146
|
1562 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
|
1563 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
1564 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:222
|
1565 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
|
1566 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:255
|
1567 |
+
msgid "available in the"
|
1568 |
+
msgstr "Tilgængelig som"
|
1569 |
+
|
1570 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
1571 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
1572 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:132
|
1573 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
1574 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:191
|
1575 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
|
1576 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:223
|
1577 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
1578 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:256
|
1579 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:299
|
1580 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:313
|
1581 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:397
|
1582 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:574
|
1583 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1584 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
1585 |
+
msgid "Pro Add-on"
|
1586 |
+
msgstr "Pro Add-on"
|
1587 |
+
|
1588 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:54
|
1589 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:69
|
1590 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:133
|
1591 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:148
|
1592 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:192
|
1593 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
|
1594 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:224
|
1595 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:240
|
1596 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:257
|
1597 |
+
msgid "only"
|
1598 |
+
msgstr "kun"
|
1599 |
+
|
1600 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
1601 |
+
msgid "Include chat window on the following pages"
|
1602 |
+
msgstr "Medtag chat vindue på de følgende sider"
|
1603 |
+
|
1604 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
1605 |
+
msgid "Exclude chat window on the following pages"
|
1606 |
+
msgstr "Udeluk chatvinduet på de følgende sider"
|
1607 |
+
|
1608 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
|
1609 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
1610 |
+
msgstr "Advare mig via e-mail, så snart nogen ønsker at chatte"
|
1611 |
+
|
1612 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:298
|
1613 |
+
msgid "Get offline messages with the "
|
1614 |
+
msgstr "Få offline meddelelser med"
|
1615 |
+
|
1616 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:307
|
1617 |
+
msgid "Offline text"
|
1618 |
+
msgstr "Offline tekst"
|
1619 |
+
|
1620 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:312
|
1621 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:396
|
1622 |
+
msgid "Edit these text fields using the "
|
1623 |
+
msgstr "Redigere disse tekstfelter ved hjælp af"
|
1624 |
+
|
1625 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1626 |
+
msgid "Choose a colour scheme. Only available in the"
|
1627 |
+
msgstr "Vælg et farveskema. Kun tilgængelig i"
|
1628 |
+
|
1629 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
1630 |
+
msgid "Colour Scheme 1"
|
1631 |
+
msgstr "Farver"
|
1632 |
+
|
1633 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:351
|
1634 |
+
msgid "Colour Scheme 2"
|
1635 |
+
msgstr "Farver"
|
1636 |
+
|
1637 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:352
|
1638 |
+
msgid "Colour Scheme 3"
|
1639 |
+
msgstr "Farver"
|
1640 |
+
|
1641 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:353
|
1642 |
+
msgid "Colour Scheme 4"
|
1643 |
+
msgstr "Farver"
|
1644 |
+
|
1645 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
|
1646 |
+
msgid "Colour Scheme 5"
|
1647 |
+
msgstr "Farver"
|
1648 |
+
|
1649 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
1650 |
+
msgid "Colour Scheme 6"
|
1651 |
+
msgstr "Farver"
|
1652 |
+
|
1653 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:375
|
1654 |
+
msgid "First section text"
|
1655 |
+
msgstr "Første sektion tekst"
|
1656 |
+
|
1657 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:382
|
1658 |
+
msgid "Second section text"
|
1659 |
+
msgstr "forstærkningstog"
|
1660 |
+
|
1661 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:385
|
1662 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:843
|
1663 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1027
|
1664 |
+
msgid "Connecting you to a sales person. Please be patient."
|
1665 |
+
msgstr "Forbinder dig til et salg person. Vær tålmodig."
|
1666 |
+
|
1667 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:391
|
1668 |
+
msgid "Reactivate chat section text"
|
1669 |
+
msgstr "Genaktiver chat sektion tekst"
|
1670 |
+
|
1671 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:431
|
1672 |
+
msgid "Choose an animation. Only available in the"
|
1673 |
+
msgstr "Vælg en animation. Kun tilgængelig i"
|
1674 |
+
|
1675 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:432
|
1676 |
+
msgid "Pro"
|
1677 |
+
msgstr "Ordsprogenes Bog"
|
1678 |
+
|
1679 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1680 |
+
msgid "Add as many agents as you need with the "
|
1681 |
+
msgstr "Tilføj så mange agenter som du har brug med"
|
1682 |
+
|
1683 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1684 |
+
msgid "Pro version for only $19.95 once off."
|
1685 |
+
msgstr "Pro version for kun $ 19,95 en gang off."
|
1686 |
+
|
1687 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:573
|
1688 |
+
msgid "Encrypt your chat messages in the "
|
1689 |
+
msgstr "Kryptere dine chat-beskeder i"
|
1690 |
+
|
1691 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1692 |
+
msgid "Welcome to "
|
1693 |
+
msgstr "Velkommen til"
|
1694 |
+
|
1695 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1696 |
+
msgid "Version 5"
|
1697 |
+
msgstr "Version 5"
|
1698 |
+
|
1699 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1700 |
+
msgid "Provide Instant Live Chat Support!"
|
1701 |
+
msgstr "Giv øjeblikkelig live chat support!"
|
1702 |
+
|
1703 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1704 |
+
msgid "How did you find us?"
|
1705 |
+
msgstr "Hvordan fandt du os?"
|
1706 |
+
|
1707 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1708 |
+
msgid "WordPress.org plugin repository "
|
1709 |
+
msgstr "WordPress opbevaringssted"
|
1710 |
+
|
1711 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
1712 |
+
msgid "Search Term"
|
1713 |
+
msgstr "Søg efter"
|
1714 |
+
|
1715 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
1716 |
+
msgid "Google or other search Engine"
|
1717 |
+
msgstr "Google eller anden søgemaskine"
|
1718 |
+
|
1719 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1720 |
+
msgid "Friend recommendation"
|
1721 |
+
msgstr "Venne anbefaling"
|
1722 |
+
|
1723 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1724 |
+
msgid "Other"
|
1725 |
+
msgstr "Andet"
|
1726 |
+
|
1727 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
1728 |
+
msgid "Please Explain"
|
1729 |
+
msgstr "Forklar venligst"
|
1730 |
+
|
1731 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
1732 |
+
msgid "Submit"
|
1733 |
+
msgstr "Gennemfør"
|
1734 |
+
|
1735 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1736 |
+
msgid "Skip"
|
1737 |
+
msgstr "Spring over"
|
1738 |
+
|
1739 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:409
|
1740 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2235
|
1741 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1742 |
+
msgstr "Klik \\ 'Start Chat \\' for at starte en chat med en agent"
|
1743 |
+
|
1744 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:788
|
1745 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:969
|
1746 |
+
msgid "Start Live Chat"
|
1747 |
+
msgstr "Start chat"
|
1748 |
+
|
1749 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1247
|
1750 |
+
msgid "New chat received"
|
1751 |
+
msgstr "Ny chat modtaget"
|
1752 |
+
|
1753 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1249
|
1754 |
+
msgid ""
|
1755 |
+
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
1756 |
+
"chat"
|
1757 |
+
msgstr ""
|
1758 |
+
"En ny chat er blevet modtaget. Gå venligst \"Live Chat 'for at acceptere "
|
1759 |
+
"chatten"
|
1760 |
+
|
1761 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1762 |
+
msgid ""
|
1763 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1764 |
+
"strong>. Please"
|
1765 |
+
msgstr ""
|
1766 |
+
"Du bruger en forældet version af <strong>WP live chat support Pro.</strong> "
|
1767 |
+
"Be om"
|
1768 |
+
|
1769 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1701
|
1770 |
+
msgid ""
|
1771 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1772 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1773 |
+
"experience for both yourself and your visitors."
|
1774 |
+
msgstr ""
|
1775 |
+
"Du er live chat boks på din hjemmeside er blevet midlertidigt deaktiveret "
|
1776 |
+
"indtil Pro plugin er blevet opdateret. Dette er for at sikre en smidig og "
|
1777 |
+
"problemfri brugeroplevelse for både dig selv og dine besøgende."
|
1778 |
+
|
1779 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1702
|
1780 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1722
|
1781 |
+
msgid ""
|
1782 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1783 |
+
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1784 |
+
"version/' target='_BLANK'>here</a>."
|
1785 |
+
msgstr ""
|
1786 |
+
"Du kan opdatere din plugin <a href='./update-core.php'>her,</a> <a href='./"
|
1787 |
+
"plugins.php'>her</a> eller <a href='http://wp-livechat.com/get-updated-"
|
1788 |
+
"version/' target='_BLANK'>her.</a>"
|
1789 |
+
|
1790 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1715
|
1791 |
+
msgid ""
|
1792 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1793 |
+
"strong>."
|
1794 |
+
msgstr ""
|
1795 |
+
"Du bruger en forældet version af <strong>WP live chat support Pro.</strong>"
|
1796 |
+
|
1797 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1717
|
1798 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1799 |
+
msgstr "Opdater til den nyeste version af WP live chat support Pro"
|
1800 |
+
|
1801 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1718
|
1802 |
+
msgid "Version 5.0.1"
|
1803 |
+
msgstr "Version 5.0.1"
|
1804 |
+
|
1805 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1719
|
1806 |
+
msgid "to ensure everything is working correctly."
|
1807 |
+
msgstr "at sikre, at alt fungerer korrekt."
|
1808 |
+
|
1809 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1750
|
1810 |
+
msgid "Congratulations"
|
1811 |
+
msgstr "Tillykke"
|
1812 |
+
|
1813 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1751
|
1814 |
+
msgid "You are now accepting live chat requests on your site."
|
1815 |
+
msgstr "Du er nu accepterer live chat anmodninger på dit websted."
|
1816 |
+
|
1817 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1752
|
1818 |
+
msgid "The live chat box has automatically been enabled on your website."
|
1819 |
+
msgstr "Den live chat boks er automatisk blevet aktiveret på din hjemmeside."
|
1820 |
+
|
1821 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1753
|
1822 |
+
msgid "Chat notifications will start appearing once visitors send a request."
|
1823 |
+
msgstr "Chat anmeldelser vil blive vist, når de besøgende sende en anmodning."
|
1824 |
+
|
1825 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1754
|
1826 |
+
msgid ""
|
1827 |
+
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
1828 |
+
"chat box settings here."
|
1829 |
+
msgstr ""
|
1830 |
+
"Du kan <a href='?page=wplivechat-menu-settings' target='_BLANK'>ændre her "
|
1831 |
+
"dine chat box indstillinger.</a>"
|
1832 |
+
|
1833 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1834 |
+
msgid "Experiencing issues?"
|
1835 |
+
msgstr "Oplever du problemer?"
|
1836 |
+
|
1837 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1838 |
+
msgid "Visit our troubleshooting section."
|
1839 |
+
msgstr "Besøg vores fejlfinding sektion."
|
1840 |
+
|
1841 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1757
|
1842 |
+
msgid "Hide"
|
1843 |
+
msgstr "Skjul"
|
1844 |
+
|
1845 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1791
|
1846 |
+
msgid "Chat Dashboard"
|
1847 |
+
msgstr "Chat Dashboard"
|
1848 |
+
|
1849 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1831
|
1850 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1851 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
1852 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1853 |
+
msgstr "Med Pro tilføjelse af WP live chat support, kan du"
|
1854 |
+
|
1855 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1832
|
1856 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1857 |
+
msgid "see who's online and initiate chats"
|
1858 |
+
msgstr "se hvem der er online og indlede chats"
|
1859 |
+
|
1860 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1833
|
1861 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1862 |
+
msgid "initiate chats"
|
1863 |
+
msgstr "indled chats"
|
1864 |
+
|
1865 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1834
|
1866 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1867 |
+
msgid "with your online visitors with the click of a button."
|
1868 |
+
msgstr "med dine online besøgende med et klik på en knap."
|
1869 |
+
|
1870 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1835
|
1871 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1837
|
1872 |
+
msgid "Buy the Pro add-on now."
|
1873 |
+
msgstr "Køb Pro add-on nu."
|
1874 |
+
|
1875 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1898
|
1876 |
+
msgid "Previous"
|
1877 |
+
msgstr "Foregående"
|
1878 |
+
|
1879 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1900
|
1880 |
+
msgid "Active"
|
1881 |
+
msgstr "Aktiv"
|
1882 |
+
|
1883 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1909
|
1884 |
+
msgid "Chat with"
|
1885 |
+
msgstr "Chat med..."
|
1886 |
+
|
1887 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1888 |
+
msgid "Add Quick Responses to your Live Chat"
|
1889 |
+
msgstr "Føj hurtige svar til din live chat"
|
1890 |
+
|
1891 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1892 |
+
msgid "Pro version only"
|
1893 |
+
msgstr "Kun pro version"
|
1894 |
+
|
1895 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1959
|
1896 |
+
msgid "type here..."
|
1897 |
+
msgstr "Skriv her …"
|
1898 |
+
|
1899 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2364
|
1900 |
+
msgid "WP Live Chat History"
|
1901 |
+
msgstr "WP live chat Historie"
|
1902 |
+
|
1903 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1904 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
1905 |
+
msgid "This option is only available in the "
|
1906 |
+
msgstr "Denne indstilling er kun tilgængelig i"
|
1907 |
+
|
1908 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2377
|
1909 |
+
msgid "WP Live Chat Missed Chats"
|
1910 |
+
msgstr "WP live chat Mistede Chats"
|
1911 |
+
|
1912 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2385
|
1913 |
+
msgid "WP Live Chat Offline Messages"
|
1914 |
+
msgstr "WP live chat Offline Beskeder"
|
1915 |
+
|
1916 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2390
|
1917 |
+
msgid ""
|
1918 |
+
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1919 |
+
"recording any offline messages."
|
1920 |
+
msgstr ""
|
1921 |
+
"Opdater til den nyeste version af WP live chat support Pro for at starte "
|
1922 |
+
"optagelsen eventuelle offline beskeder."
|
1923 |
+
|
1924 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2526
|
1925 |
+
msgid "Thank You for your feedback!"
|
1926 |
+
msgstr "Mange tak for din feedback"
|
1927 |
+
|
1928 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2530
|
1929 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2543
|
1930 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1931 |
+
msgstr "Tak for din feedback. Vi vil være i kontakt snart"
|
1932 |
+
|
1933 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2546
|
1934 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1935 |
+
msgstr ""
|
1936 |
+
"Der var problemer med at sende din feedback. Du skal logge din feedback på"
|
1937 |
+
|
1938 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2580
|
1939 |
+
msgid ""
|
1940 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
1941 |
+
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1942 |
+
"contact your host to get this function enabled."
|
1943 |
+
msgstr ""
|
1944 |
+
"WPLC: set_time_limit () er ikke aktiveret på denne server. Du kan opleve "
|
1945 |
+
"problemer, mens du bruger WP live chat support som følge af dette. Venligst "
|
1946 |
+
"komme i kontakt din host for at få denne funktion aktiveret."
|
1947 |
+
|
1948 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2586
|
1949 |
+
msgid ""
|
1950 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
1951 |
+
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1952 |
+
"get safe mode disabled."
|
1953 |
+
msgstr ""
|
1954 |
+
"WPLC: fejlsikret tilstand er aktiveret på denne server. Du kan opleve "
|
1955 |
+
"problemer, mens du bruger WP live chat support som følge af dette. Kontakt "
|
1956 |
+
"venligst din vært til at komme i fejlsikret tilstand deaktiveret."
|
1957 |
+
|
1958 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1959 |
+
msgid "Suggested Plugins"
|
1960 |
+
msgstr "Foreslåede Plugins"
|
1961 |
+
|
1962 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2619
|
1963 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2620
|
1964 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2621
|
1965 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1966 |
+
msgid "Sola Support Tickets"
|
1967 |
+
msgstr "Sola Support Tickets"
|
1968 |
+
|
1969 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2624
|
1970 |
+
msgid ""
|
1971 |
+
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
1972 |
+
"desk quickly and easily with Sola Support Tickets."
|
1973 |
+
msgstr ""
|
1974 |
+
"Den nemmeste at bruge Help Desk & Support Ticket plugin. Opret en støtte "
|
1975 |
+
"helpdesk hurtigt og nemt med Sola Support Billetter."
|
1976 |
+
|
1977 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1978 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1979 |
+
msgid "Get this Plugin"
|
1980 |
+
msgstr "Få denne plugin"
|
1981 |
+
|
1982 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2630
|
1983 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2631
|
1984 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2632
|
1985 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1986 |
+
msgid "Nifty Newsletters"
|
1987 |
+
msgstr "Nifty Nyhedsbreve"
|
1988 |
+
|
1989 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2635
|
1990 |
+
msgid ""
|
1991 |
+
"Create and send newsletters, automatic post notifications and autoresponders "
|
1992 |
+
"that are modern and beautiful with Nifty Newsletters."
|
1993 |
+
msgstr ""
|
1994 |
+
"Opret og send nyhedsbreve, automatiske indlæg notifikationer og autosvar, "
|
1995 |
+
"der er moderne og smukke med Nifty nyhedsbreve."
|
1996 |
+
|
1997 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2669
|
1998 |
+
msgid "Price:"
|
1999 |
+
msgstr "Priser:"
|
2000 |
+
|
2001 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2670
|
2002 |
+
msgid "All"
|
2003 |
+
msgstr "Alle"
|
2004 |
+
|
2005 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2671
|
2006 |
+
msgid "Free"
|
2007 |
+
msgstr "Gratis"
|
2008 |
+
|
2009 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2672
|
2010 |
+
msgid "Paid"
|
2011 |
+
msgstr "Betalt"
|
2012 |
+
|
2013 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2675
|
2014 |
+
msgid "For:"
|
2015 |
+
msgstr "I stedet for :"
|
2016 |
+
|
2017 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2676
|
2018 |
+
msgid "Both"
|
2019 |
+
msgstr "Begge"
|
2020 |
+
|
2021 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2677
|
2022 |
+
msgid "Free version"
|
2023 |
+
msgstr "Gratis version"
|
2024 |
+
|
2025 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2678
|
2026 |
+
msgid "Pro version"
|
2027 |
+
msgstr "Pro version"
|
2028 |
+
|
2029 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2706
|
2030 |
+
msgid "Already installed"
|
2031 |
+
msgstr "Allerede installeret"
|
2032 |
+
|
2033 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2732
|
2034 |
+
msgid "WP Live Chat Support"
|
2035 |
+
msgstr "WP live chat support"
|
2036 |
+
|
2037 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2735
|
2038 |
+
msgid "Documentation"
|
2039 |
+
msgstr "Dokumentation"
|
2040 |
+
|
2041 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2737
|
2042 |
+
msgid ""
|
2043 |
+
"Getting started? Read through some of these articles to help you along your "
|
2044 |
+
"way."
|
2045 |
+
msgstr ""
|
2046 |
+
"Kom godt i gang? Læs gennem nogle af disse artikler for at hjælpe dig på din "
|
2047 |
+
"vej."
|
2048 |
+
|
2049 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2738
|
2050 |
+
msgid "Documentation:"
|
2051 |
+
msgstr "Dokumentation:"
|
2052 |
+
|
2053 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2740
|
2054 |
+
msgid "Minimum System Requirements"
|
2055 |
+
msgstr "Mindste systemkrav"
|
2056 |
+
|
2057 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2741
|
2058 |
+
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
2059 |
+
msgstr ""
|
2060 |
+
"Behøver jeg at være logget ind i instrumentbrættet til at chatte med "
|
2061 |
+
"besøgende?"
|
2062 |
+
|
2063 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2742
|
2064 |
+
msgid "What are Quick Responses?"
|
2065 |
+
msgstr "Hvad er hurtige svar?"
|
2066 |
+
|
2067 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2743
|
2068 |
+
msgid "Can I use this plugin on my multi-site?"
|
2069 |
+
msgstr "Kan jeg bruge dette plugin på min multi-site?"
|
2070 |
+
|
2071 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2744
|
2072 |
+
msgid "How do I disable APC Object Cache?"
|
2073 |
+
msgstr "Hvordan deaktiverer jeg APC Object Cache?"
|
2074 |
+
|
2075 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2745
|
2076 |
+
msgid "Do you have a mobile app?"
|
2077 |
+
msgstr "Har du en mobil app?"
|
2078 |
+
|
2079 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2746
|
2080 |
+
msgid "How do I check for JavaScript errors on my site?"
|
2081 |
+
msgstr "Hvordan kan jeg kontrollere, om JavaScript-fejl på min hjemmeside?"
|
2082 |
+
|
2083 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2750
|
2084 |
+
msgid "Troubleshooting"
|
2085 |
+
msgstr "Fejlfinding"
|
2086 |
+
|
2087 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2752
|
2088 |
+
msgid ""
|
2089 |
+
"WP Live Chat Support has a diverse and wide range of features which may, "
|
2090 |
+
"from time to time, run into conflicts with the thousands of themes and other "
|
2091 |
+
"plugins on the market."
|
2092 |
+
msgstr ""
|
2093 |
+
"WP live chat support har en alsidig og bred vifte af funktioner, der kan, "
|
2094 |
+
"fra tid til anden, løbe ind konflikter med de tusindvis af temaer og andre "
|
2095 |
+
"plugins på markedet."
|
2096 |
+
|
2097 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2753
|
2098 |
+
msgid "Common issues:"
|
2099 |
+
msgstr "Almindelige problemer:"
|
2100 |
+
|
2101 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2755
|
2102 |
+
msgid "The chat box doesnt show up"
|
2103 |
+
msgstr "Chatten dukke ikke op"
|
2104 |
+
|
2105 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2756
|
2106 |
+
msgid "The chat window disappears when I logout or go offline"
|
2107 |
+
msgstr "Chatvinduet forsvinder, når jeg logger af eller gå offline"
|
2108 |
+
|
2109 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2758
|
2110 |
+
msgid "Messages only show when I refresh the chat window"
|
2111 |
+
msgstr "Beskeder viser kun, når jeg opdatere chatvinduet"
|
2112 |
+
|
2113 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2759
|
2114 |
+
msgid "I'm not getting any notifications of a new chat"
|
2115 |
+
msgstr "Jeg får ikke nogen meddelelser om en ny chat"
|
2116 |
+
|
2117 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2760
|
2118 |
+
msgid "The chat window never goes offline"
|
2119 |
+
msgstr "Chatvinduet aldrig går offline"
|
2120 |
+
|
2121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2766
|
2122 |
+
msgid "Still need help? Use one of these links below."
|
2123 |
+
msgstr "Stadig brug for hjælp? Brug en af disse links nedenfor."
|
2124 |
+
|
2125 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2768
|
2126 |
+
msgid "Support forum"
|
2127 |
+
msgstr "Support forum."
|
2128 |
+
|
2129 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2769
|
2130 |
+
msgid "Contact us"
|
2131 |
+
msgstr "Kontakt os"
|
2132 |
+
|
2133 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2134 |
+
msgid "Initiate Chats"
|
2135 |
+
msgstr "Indled Chats"
|
2136 |
+
|
2137 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2139 |
+
msgid "Buy the Pro add-on now (once off payment)."
|
2140 |
+
msgstr "Køb Pro add-on nu (en gangs betaling)."
|
2141 |
+
|
2142 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2143 |
+
msgid "Multiple Chats"
|
2144 |
+
msgstr "Flere Chats"
|
2145 |
+
|
2146 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2147 |
+
msgid "accept and handle multiple chats."
|
2148 |
+
msgstr "acceptere og håndtere flere chats."
|
2149 |
+
|
2150 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2151 |
+
msgid "Add unlimited agents"
|
2152 |
+
msgstr "Tilføj ubegrænset agenter"
|
2153 |
+
|
2154 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2155 |
+
msgid " with the Pro add-on of WP Live Chat Support"
|
2156 |
+
msgstr "med Pro tilføjelse af WP live chat support"
|
2157 |
+
|
2158 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2159 |
+
msgid "(once off payment)."
|
2160 |
+
msgstr "(en gang engangsbetaling)."
|
2161 |
+
|
2162 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2800
|
2163 |
+
#, php-format
|
2164 |
+
msgid ""
|
2165 |
+
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</"
|
2166 |
+
"a>! Please <a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s"
|
2167 |
+
"\" target=\"_blank\">WordPress.org</a>"
|
2168 |
+
msgstr ""
|
2169 |
+
"Tak fordi du bruger <a href=\"%1$s\" target=\"_blank\">WP live chat support!"
|
2170 |
+
"</a> Venligst <a href=\"%2$s\" target=\"_blank\">Bedøm os</a> på <a href="
|
2171 |
+
"\"%2$s\" target=\"_blank\">WordPress.org</a>"
|
2172 |
+
|
2173 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2805
|
2174 |
+
msgid "WP Live Chat Support is a product of"
|
2175 |
+
msgstr "WP live chat support er et produkt af"
|
languages/wplivechat-de_DE.mo
CHANGED
Binary file
|
languages/wplivechat-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Live Chat Support v4.2.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Zoran Horvat <zoran.horvat@outlook.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -17,499 +17,502 @@ msgstr ""
|
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
-
"X-Poedit-SearchPath-0: C:\\wamp\\www\\
|
21 |
"live-chat-support\n"
|
22 |
-
"X-Poedit-SearchPath-1: C:\\wamp\\www\\
|
23 |
"live-chat-support-pro\n"
|
24 |
|
25 |
-
#: C:\wamp\www\
|
26 |
msgid "Guest"
|
27 |
msgstr ""
|
28 |
|
29 |
# @ wplivechat
|
30 |
-
#: C:\wamp\www\
|
31 |
-
#: C:\wamp\www\
|
32 |
msgid "Admin has closed and ended the chat"
|
33 |
msgstr "Der Administrator hat den Chat geschlossen und beendet"
|
34 |
|
35 |
# @ wplivechat
|
36 |
-
#: C:\wamp\www\
|
37 |
-
#: C:\wamp\www\
|
38 |
msgid "There is No Answer. Please Try Again Later"
|
39 |
msgstr "Keine Antwort. Bitte versuchen Sie es später erneut."
|
40 |
|
41 |
# @ wplivechat
|
42 |
-
#: C:\wamp\www\
|
43 |
-
#: C:\wamp\www\
|
44 |
-
#: C:\wamp\www\
|
45 |
-
#: C:\wamp\www\
|
46 |
-
#: C:\wamp\www\
|
47 |
-
#: C:\wamp\www\
|
48 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1904
|
49 |
msgid "IP Address not recorded"
|
50 |
msgstr "IP Adresse nicht erfasst"
|
51 |
|
52 |
# @ wplivechat
|
53 |
-
#: C:\wamp\www\
|
54 |
-
#: C:\wamp\www\
|
55 |
-
#: C:\wamp\www\
|
56 |
-
#: C:\wamp\www\
|
57 |
-
#: C:\wamp\www\
|
58 |
-
#: C:\wamp\www\
|
59 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1906
|
60 |
msgid "Whois for"
|
61 |
msgstr "Whois für"
|
62 |
|
63 |
# @ wplivechat
|
64 |
-
#: C:\wamp\www\
|
65 |
-
#: C:\wamp\www\
|
66 |
-
#: C:\wamp\www\
|
67 |
-
#: C:\wamp\www\
|
68 |
-
#: C:\wamp\www\
|
69 |
msgid "Accept Chat"
|
70 |
msgstr "Chat annehmen"
|
71 |
|
72 |
# @ wplivechat
|
73 |
-
#: C:\wamp\www\
|
74 |
-
#: C:\wamp\www\
|
75 |
-
#: C:\wamp\www\
|
76 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
77 |
msgid "Incoming Chat"
|
78 |
msgstr "Chat beginnen"
|
79 |
|
80 |
# @ wplivechat
|
81 |
-
#: C:\wamp\www\
|
82 |
-
#: C:\wamp\www\
|
83 |
-
#: C:\wamp\www\
|
84 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
85 |
msgid "You have an incoming chat."
|
86 |
msgstr "Sie haben einen eingehenden Chat."
|
87 |
|
88 |
# @ wplivechat
|
89 |
-
#: C:\wamp\www\
|
90 |
-
#: C:\wamp\www\
|
91 |
-
#, fuzzy
|
92 |
msgid "Open Chat"
|
93 |
msgstr "Chat-Fenster öffnen"
|
94 |
|
95 |
# @ wplivechat
|
96 |
-
#: C:\wamp\www\
|
97 |
-
#: C:\wamp\www\
|
98 |
-
#: C:\wamp\www\
|
99 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
100 |
msgid "Chat Active"
|
101 |
msgstr "Aktiver Chat"
|
102 |
|
103 |
# @ wplivechat
|
104 |
-
#: C:\wamp\www\
|
105 |
-
#: C:\wamp\www\
|
106 |
-
#: C:\wamp\www\
|
107 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
108 |
msgid "This chat is active"
|
109 |
msgstr "Dieser Chat ist aktiv"
|
110 |
|
111 |
# @ wplivechat
|
112 |
-
#: C:\wamp\www\
|
113 |
-
#: C:\wamp\www\
|
114 |
-
#: C:\wamp\www\
|
115 |
-
|
116 |
msgid "Initiate Chat"
|
117 |
msgstr "Chat starten"
|
118 |
|
119 |
-
#: C:\wamp\www\
|
120 |
-
#: C:\wamp\www\
|
121 |
msgid "You must be a chat agent to initiate chats"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: C:\wamp\www\
|
125 |
-
#: C:\wamp\www\
|
126 |
msgid "New"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: C:\wamp\www\
|
130 |
-
#: C:\wamp\www\
|
131 |
msgid "Returning"
|
132 |
msgstr ""
|
133 |
|
134 |
# @ wplivechat
|
135 |
-
#: C:\wamp\www\
|
136 |
msgid "Visitors on site"
|
137 |
msgstr "Besucher auf der Seite"
|
138 |
|
139 |
# @ wplivechat
|
140 |
-
#: C:\wamp\www\
|
141 |
-
#: C:\wamp\www\
|
142 |
-
#: C:\wamp\www\
|
143 |
-
#: C:\wamp\www\
|
144 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1929
|
145 |
msgid "Site Info"
|
146 |
msgstr "Seiteninformation"
|
147 |
|
148 |
# @ wplivechat
|
149 |
-
#: C:\wamp\www\
|
150 |
-
#: C:\wamp\www\
|
151 |
-
#: C:\wamp\www\
|
152 |
-
#: C:\wamp\www\
|
153 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1931
|
154 |
msgid "Chat initiated on:"
|
155 |
msgstr "Chat-Benachrichtigungen"
|
156 |
|
157 |
# @ wplivechat
|
158 |
-
#: C:\wamp\www\
|
159 |
-
#: C:\wamp\www\
|
160 |
-
#: C:\wamp\www\
|
161 |
-
#: C:\wamp\www\
|
162 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1935
|
163 |
msgid "Advanced Info"
|
164 |
msgstr "Erweiterte Information"
|
165 |
|
166 |
# @ wplivechat
|
167 |
-
#: C:\wamp\www\
|
168 |
-
#: C:\wamp\www\
|
169 |
-
#: C:\wamp\www\
|
170 |
-
#: C:\wamp\www\
|
171 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1937
|
172 |
msgid "Browser:"
|
173 |
msgstr "Browser:"
|
174 |
|
175 |
# @ wplivechat
|
176 |
-
#: C:\wamp\www\
|
177 |
-
#: C:\wamp\www\
|
178 |
-
#: C:\wamp\www\
|
179 |
-
#: C:\wamp\www\
|
180 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1938
|
181 |
msgid "IP Address:"
|
182 |
msgstr "IP Adresse:"
|
183 |
|
184 |
# @ wplivechat
|
185 |
-
#: C:\wamp\www\
|
186 |
-
#, fuzzy
|
187 |
msgid "No visitors on-line at the moment"
|
188 |
msgstr "Es sind derzeit keine Chat-Sitzungen verfügbar"
|
189 |
|
190 |
# @ wplivechat
|
191 |
-
#: C:\wamp\www\
|
192 |
-
#: C:\wamp\www\
|
193 |
msgid "No chat sessions available at the moment"
|
194 |
msgstr "Es sind derzeit keine Chat-Sitzungen verfügbar"
|
195 |
|
196 |
# @ wplivechat
|
197 |
-
#: C:\wamp\www\
|
198 |
-
#: C:\wamp\www\
|
199 |
msgid "Active Chats"
|
200 |
msgstr "Live-Chat"
|
201 |
|
202 |
-
#: C:\wamp\www\
|
203 |
msgid "You must be a chat agent to answer chats"
|
204 |
msgstr ""
|
205 |
|
206 |
# @ wplivechat
|
207 |
-
#: C:\wamp\www\
|
208 |
-
#: C:\wamp\www\
|
209 |
msgid "Open Chat Window"
|
210 |
msgstr "Chat-Fenster öffnen"
|
211 |
|
212 |
-
#: C:\wamp\www\
|
213 |
msgid "Chat has been answered by another agent"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: C:\wamp\www\
|
217 |
msgid "Chat answered by another agent"
|
218 |
msgstr ""
|
219 |
|
220 |
# @ wplivechat
|
221 |
-
#: C:\wamp\www\
|
222 |
-
|
223 |
msgid "WP Live Chat Support - Offline Message from "
|
224 |
msgstr "WP Live Chat Support - Offline-Nachricht von"
|
225 |
|
226 |
# @ wplivechat
|
227 |
-
#: C:\wamp\www\
|
228 |
-
#: C:\wamp\www\
|
229 |
-
#: C:\wamp\www\
|
230 |
-
#: C:\wamp\www\
|
231 |
-
#: C:\wamp\www\
|
232 |
-
#: C:\wamp\www\
|
233 |
-
#: C:\wamp\www\
|
234 |
-
#: C:\wamp\www\
|
235 |
-
#: C:\wamp\www\
|
236 |
-
#: C:\wamp\www\
|
237 |
-
#: C:\wamp\www\
|
238 |
msgid "Name"
|
239 |
msgstr "Name"
|
240 |
|
241 |
# @ wplivechat
|
242 |
-
#: C:\wamp\www\
|
243 |
-
#: C:\wamp\www\
|
244 |
-
#: C:\wamp\www\
|
245 |
-
#: C:\wamp\www\
|
246 |
-
#: C:\wamp\www\
|
247 |
-
#: C:\wamp\www\
|
248 |
-
#: C:\wamp\www\
|
249 |
-
#: C:\wamp\www\
|
250 |
-
#: C:\wamp\www\
|
251 |
-
#: C:\wamp\www\
|
252 |
msgid "Email"
|
253 |
msgstr "E-Mail"
|
254 |
|
255 |
# @ wplivechat
|
256 |
-
#: C:\wamp\www\
|
257 |
-
#: C:\wamp\www\
|
258 |
-
#: C:\wamp\www\
|
259 |
-
#: C:\wamp\www\
|
260 |
-
#: C:\wamp\www\
|
261 |
-
|
|
|
262 |
msgid "Message"
|
263 |
msgstr "Offline-Nachrichten"
|
264 |
|
265 |
# @ wplivechat
|
266 |
-
#: C:\wamp\www\
|
267 |
-
|
268 |
msgid "Via WP Live Chat Support"
|
269 |
msgstr "WP Live Chat Support"
|
270 |
|
271 |
-
#: C:\wamp\www\
|
272 |
msgid "Alert: Someone wants to chat with you on "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: C:\wamp\www\
|
276 |
msgid "Someone wants to chat with you on your website"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\wamp\www\
|
280 |
msgid "Log in"
|
281 |
msgstr ""
|
282 |
|
283 |
# @ wplivechat
|
284 |
-
#: C:\wamp\www\
|
285 |
-
#: C:\wamp\www\
|
286 |
-
#: C:\wamp\www\
|
287 |
-
|
|
|
|
|
288 |
msgid "Chat Agent"
|
289 |
msgstr "Aktiver Chat"
|
290 |
|
291 |
-
#: C:\wamp\www\
|
292 |
-
#: C:\wamp\www\
|
|
|
|
|
293 |
msgid "Make this user a chat agent"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: C:\wamp\www\
|
|
|
297 |
msgid "Your user role does not allow you to make yourself a chat agent."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: C:\wamp\www\
|
|
|
301 |
msgid "Please contact the administrator of this website to change this."
|
302 |
msgstr ""
|
303 |
|
304 |
# @ wplivechat
|
305 |
-
#: C:\wamp\www\
|
306 |
-
|
307 |
msgid "Chat Agent Online"
|
308 |
msgstr "Aktiver Chat"
|
309 |
|
310 |
# @ wplivechat
|
311 |
-
#: C:\wamp\www\
|
312 |
-
#: C:\wamp\www\
|
313 |
-
|
|
|
314 |
msgid "Chat Agents Online"
|
315 |
msgstr "Aktiver Chat"
|
316 |
|
317 |
# @ wplivechat
|
318 |
-
#: C:\wamp\www\
|
319 |
-
#: C:\wamp\www\
|
320 |
-
#: C:\wamp\www\
|
|
|
321 |
msgid "Date"
|
322 |
msgstr "Datum"
|
323 |
|
324 |
# @ wplivechat
|
325 |
-
#: C:\wamp\www\
|
326 |
-
|
327 |
msgid "You have not received any offline messages."
|
328 |
msgstr "Sie haben keine Chat-Anfragen verpasst."
|
329 |
|
330 |
-
#: C:\wamp\www\
|
331 |
-
#: C:\wamp\www\
|
332 |
-
#: C:\wamp\www\
|
|
|
333 |
msgid "Administrator"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: C:\wamp\www\
|
337 |
-
#: C:\wamp\www\
|
338 |
-
#: C:\wamp\www\
|
|
|
339 |
msgid "Editor"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: C:\wamp\www\
|
343 |
-
#: C:\wamp\www\
|
344 |
-
#: C:\wamp\www\
|
|
|
345 |
msgid "Author"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: C:\wamp\www\
|
349 |
msgid "Contributor"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: C:\wamp\www\
|
353 |
msgid "Subscriber"
|
354 |
msgstr ""
|
355 |
|
356 |
# @ wplivechat
|
357 |
-
#: C:\wamp\www\
|
358 |
-
|
359 |
msgid "Chat ID"
|
360 |
msgstr "Chat-Box"
|
361 |
|
362 |
-
#: C:\wamp\www\
|
|
|
363 |
msgid "From"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: C:\wamp\www\
|
|
|
367 |
msgid "Timestamp"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: C:\wamp\www\
|
|
|
371 |
msgid "Origin"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: C:\wamp\www\
|
|
|
375 |
msgid "user"
|
376 |
msgstr ""
|
377 |
|
378 |
# @ wplivechat
|
379 |
-
#: C:\wamp\www\
|
380 |
-
|
381 |
msgid "agent"
|
382 |
msgstr "Agenten"
|
383 |
|
384 |
# @ wplivechat
|
385 |
-
#: C:\wamp\www\
|
386 |
-
#: C:\wamp\www\
|
387 |
msgid "WP Live Chat Support Settings"
|
388 |
msgstr "WP Live Chat Support Einstellungen"
|
389 |
|
390 |
# @ wplivechat
|
391 |
-
#: C:\wamp\www\
|
392 |
-
#: C:\wamp\www\
|
393 |
-
#: C:\wamp\www\
|
394 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1714
|
395 |
msgid "Dear Pro User"
|
396 |
msgstr "Lieber Pro Benutzer,"
|
397 |
|
398 |
-
#: C:\wamp\www\
|
399 |
msgid ""
|
400 |
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
401 |
"to do this will result in you no longer receiving updates for this plugin."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: C:\wamp\www\
|
405 |
msgid "You can obtain a copy of your API key "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: C:\wamp\www\
|
409 |
msgid "here"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: C:\wamp\www\
|
413 |
msgid ""
|
414 |
"An account has been created for you while purchasing the plugin. If you have "
|
415 |
"lost your password, please reset it "
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: C:\wamp\www\
|
419 |
msgid ""
|
420 |
"If you feel you are getting this message in error, please try refreshing the "
|
421 |
"page."
|
422 |
msgstr ""
|
423 |
|
424 |
# @ wplivechat
|
425 |
-
#: C:\wamp\www\
|
426 |
-
#: C:\wamp\www\
|
427 |
msgid "General Settings"
|
428 |
msgstr "Generelle Einstellungen"
|
429 |
|
430 |
# @ wplivechat
|
431 |
-
#: C:\wamp\www\
|
432 |
-
#: C:\wamp\www\
|
433 |
msgid "Chat Box"
|
434 |
msgstr "Chat-Box"
|
435 |
|
436 |
# @ wplivechat
|
437 |
-
#: C:\wamp\www\
|
438 |
-
#: C:\wamp\www\
|
439 |
-
#: C:\wamp\www\
|
440 |
-
#: C:\wamp\www\
|
441 |
-
#: C:\wamp\www\
|
|
|
442 |
msgid "Offline Messages"
|
443 |
msgstr "Offline-Nachrichten"
|
444 |
|
445 |
# @ wplivechat
|
446 |
-
#: C:\wamp\www\
|
447 |
-
#: C:\wamp\www\
|
448 |
-
#: C:\wamp\www\
|
449 |
-
#: C:\wamp\www\
|
450 |
msgid "Styling"
|
451 |
msgstr "Styling"
|
452 |
|
453 |
# @ wplivechat
|
454 |
-
#: C:\wamp\www\
|
455 |
-
#, fuzzy
|
456 |
msgid "Chat Agents"
|
457 |
msgstr "Agenten"
|
458 |
|
459 |
# @ wplivechat
|
460 |
-
#: C:\wamp\www\
|
461 |
-
#: C:\wamp\www\
|
462 |
msgid "Blocked Visitors"
|
463 |
msgstr "Blockierte Besucher"
|
464 |
|
465 |
# @ wplivechat
|
466 |
-
#: C:\wamp\www\
|
467 |
-
#: C:\wamp\www\
|
468 |
-
#: C:\wamp\www\
|
469 |
-
#, fuzzy
|
470 |
msgid "Chat Experience Ratings"
|
471 |
msgstr "Chat-Fenster Einstellungen"
|
472 |
|
473 |
-
#: C:\wamp\www\
|
474 |
-
#: C:\wamp\www\
|
475 |
msgid "Encryption"
|
476 |
msgstr ""
|
477 |
|
478 |
# @ wplivechat
|
479 |
-
#: C:\wamp\www\
|
480 |
-
#: C:\wamp\www\
|
481 |
msgid "Main Settings"
|
482 |
msgstr "Haupeinstellungen"
|
483 |
|
484 |
-
#: C:\wamp\www\
|
485 |
msgid "Find out more."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: C:\wamp\www\
|
|
|
489 |
msgid "Cloud Server"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: C:\wamp\www\
|
493 |
msgid "Use our server to host your chat server."
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: C:\wamp\www\
|
|
|
497 |
msgid "API Key"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: C:\wamp\www\
|
501 |
msgid "This API key is "
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: C:\wamp\www\
|
505 |
msgid "valid"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: C:\wamp\www\
|
509 |
msgid "invalid"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: C:\wamp\www\
|
513 |
msgid ""
|
514 |
"A valid API key means that you will be able to get the latest version of the "
|
515 |
"plugin as and when it is released, as well as get access to support should "
|
@@ -517,33 +520,32 @@ msgid ""
|
|
517 |
msgstr ""
|
518 |
|
519 |
# @ wplivechat
|
520 |
-
#: C:\wamp\www\
|
521 |
-
#: C:\wamp\www\
|
522 |
msgid "Chat enabled"
|
523 |
msgstr "Chat freigegeben"
|
524 |
|
525 |
# @ wplivechat
|
526 |
-
#: C:\wamp\www\
|
527 |
-
#: C:\wamp\www\
|
528 |
msgid "Yes"
|
529 |
msgstr "Ja"
|
530 |
|
531 |
# @ wplivechat
|
532 |
-
#: C:\wamp\www\
|
533 |
-
#: C:\wamp\www\
|
534 |
msgid "No"
|
535 |
msgstr "Nein"
|
536 |
|
537 |
# @ wplivechat
|
538 |
-
#: C:\wamp\www\
|
539 |
-
#: C:\wamp\www\
|
540 |
msgid "Choose when I want to be online"
|
541 |
msgstr "Auswählen wann ich online sein werde"
|
542 |
|
543 |
# @ wplivechat
|
544 |
-
#: C:\wamp\www\
|
545 |
-
#: C:\wamp\www\
|
546 |
-
#, fuzzy
|
547 |
msgid ""
|
548 |
"Checking this will allow you to change your status to Online or Offline on "
|
549 |
"the Live Chat page."
|
@@ -552,26 +554,26 @@ msgstr ""
|
|
552 |
"der Seite „Live Chat“ setzen."
|
553 |
|
554 |
# @ wplivechat
|
555 |
-
#: C:\wamp\www\
|
556 |
-
#: C:\wamp\www\
|
557 |
msgid "Hide Chat"
|
558 |
msgstr "Chat verstecken"
|
559 |
|
560 |
# @ wplivechat
|
561 |
-
#: C:\wamp\www\
|
562 |
-
#: C:\wamp\www\
|
563 |
msgid "Hides chat for 24hrs when user clicks X"
|
564 |
msgstr "Chat für 24 Stunden verstecken, wenn der Benutzer auf [X] klickt"
|
565 |
|
566 |
# @ wplivechat
|
567 |
-
#: C:\wamp\www\
|
568 |
-
#: C:\wamp\www\
|
569 |
msgid "Require Name And Email"
|
570 |
msgstr "Name und E-Mail benötigt"
|
571 |
|
572 |
# @ wplivechat
|
573 |
-
#: C:\wamp\www\
|
574 |
-
#: C:\wamp\www\
|
575 |
msgid ""
|
576 |
"Users will have to enter their Name and Email Address when starting a chat"
|
577 |
msgstr ""
|
@@ -579,28 +581,28 @@ msgstr ""
|
|
579 |
"eingeben"
|
580 |
|
581 |
# @ wplivechat
|
582 |
-
#: C:\wamp\www\
|
583 |
-
#: C:\wamp\www\
|
584 |
msgid "Input Field Replacement Text"
|
585 |
msgstr "Eingabefeld Ersetzungstext"
|
586 |
|
587 |
# @ wplivechat
|
588 |
-
#: C:\wamp\www\
|
589 |
-
#: C:\wamp\www\
|
590 |
msgid "This is the text that will show in place of the Name And Email fields"
|
591 |
msgstr ""
|
592 |
"Dies ist der Text, der an Stelle des Namens und des E-Mail-Feldes angezeigt "
|
593 |
"wird"
|
594 |
|
595 |
# @ wplivechat
|
596 |
-
#: C:\wamp\www\
|
597 |
-
#: C:\wamp\www\
|
598 |
msgid "Use Logged In User Details"
|
599 |
msgstr "Verwenden der Benutzer-Details des angemeldeten Nutzers"
|
600 |
|
601 |
# @ wplivechat
|
602 |
-
#: C:\wamp\www\
|
603 |
-
#: C:\wamp\www\
|
604 |
msgid ""
|
605 |
"A user's Name and Email Address will be used by default if they are logged "
|
606 |
"in."
|
@@ -609,14 +611,14 @@ msgstr ""
|
|
609 |
"angemeldet sind."
|
610 |
|
611 |
# @ wplivechat
|
612 |
-
#: C:\wamp\www\
|
613 |
-
#: C:\wamp\www\
|
614 |
msgid "Enable On Mobile Devices"
|
615 |
msgstr "Aktiviert auf mobilen Geräten:"
|
616 |
|
617 |
# @ wplivechat
|
618 |
-
#: C:\wamp\www\
|
619 |
-
#: C:\wamp\www\
|
620 |
msgid ""
|
621 |
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
622 |
"devices. (Smartphones and Tablets)"
|
@@ -625,39 +627,41 @@ msgstr ""
|
|
625 |
"wird. (Smartphones und Tablets)"
|
626 |
|
627 |
# @ wplivechat
|
628 |
-
#: C:\wamp\www\
|
629 |
-
#: C:\wamp\www\
|
630 |
msgid "Record a visitor's IP Address"
|
631 |
msgstr "IP Adresse des Besuchers aufzeichnen"
|
632 |
|
633 |
# @ wplivechat
|
634 |
-
#: C:\wamp\www\
|
635 |
-
#: C:\wamp\www\
|
636 |
msgid "Disable this to enable anonymity for your visitors"
|
637 |
msgstr ""
|
638 |
"Deaktivieren Sie diese Einstellung, um die Anonymität für Ihre Besucher zu "
|
639 |
"gewährleisten"
|
640 |
|
641 |
-
#: C:\wamp\www\
|
642 |
-
#: C:\wamp\www\
|
643 |
msgid "Play a sound when a new message is received"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: C:\wamp\www\
|
647 |
-
#: C:\wamp\www\
|
648 |
msgid ""
|
649 |
"Disable this to mute the sound that is played when a new chat message is "
|
650 |
"received"
|
651 |
msgstr ""
|
652 |
|
653 |
# @ wplivechat
|
654 |
-
#: C:\wamp\www\
|
|
|
655 |
msgid "Include chat window on the following pages:"
|
656 |
msgstr "Chat-Fenster auf den folgenden Seiten hinzufügen:"
|
657 |
|
658 |
# @ wplivechat
|
659 |
-
#: C:\wamp\www\
|
660 |
-
#: C:\wamp\www\
|
|
|
661 |
msgid ""
|
662 |
"Show the chat window on the following pages. Leave blank to show on all. "
|
663 |
"(Use comma-separated Page ID's)"
|
@@ -667,13 +671,15 @@ msgstr ""
|
|
667 |
"Seiten ID´s)"
|
668 |
|
669 |
# @ wplivechat
|
670 |
-
#: C:\wamp\www\
|
|
|
671 |
msgid "Exclude chat window on the following pages:"
|
672 |
msgstr "Das Chat-Fenster auf den folgenden Seiten ausschließen:"
|
673 |
|
674 |
# @ wplivechat
|
675 |
-
#: C:\wamp\www\
|
676 |
-
#: C:\wamp\www\
|
|
|
677 |
msgid ""
|
678 |
"Do not show the chat window on the following pages. Leave blank to show on "
|
679 |
"all. (Use comma-separated Page ID's)"
|
@@ -682,61 +688,61 @@ msgstr ""
|
|
682 |
"Leer lassen, um es auf allen Seiten zu zeigen. (Verwenden Sie Komma "
|
683 |
"getrennte Seiten ID´s)"
|
684 |
|
685 |
-
#: C:\wamp\www\
|
686 |
msgid "Allow any user to make themselves a chat agent"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: C:\wamp\www\
|
690 |
msgid ""
|
691 |
"Checking this will allow any of your users to make themselves a chat agent "
|
692 |
"when editing their profile."
|
693 |
msgstr ""
|
694 |
|
695 |
# @ wplivechat
|
696 |
-
#: C:\wamp\www\
|
697 |
-
#: C:\wamp\www\
|
698 |
msgid "Chat Window Settings"
|
699 |
msgstr "Chat-Fenster Einstellungen"
|
700 |
|
701 |
# @ wplivechat
|
702 |
-
#: C:\wamp\www\
|
703 |
-
#: C:\wamp\www\
|
704 |
msgid "Chat box alignment"
|
705 |
msgstr "Chat-Box Ausrichtung"
|
706 |
|
707 |
# @ wplivechat
|
708 |
-
#: C:\wamp\www\
|
709 |
-
#: C:\wamp\www\
|
710 |
msgid "Bottom left"
|
711 |
msgstr "Unten links"
|
712 |
|
713 |
# @ wplivechat
|
714 |
-
#: C:\wamp\www\
|
715 |
-
#: C:\wamp\www\
|
716 |
msgid "Bottom right"
|
717 |
msgstr "Unten rechts"
|
718 |
|
719 |
# @ wplivechat
|
720 |
-
#: C:\wamp\www\
|
721 |
-
#: C:\wamp\www\
|
722 |
msgid "Left"
|
723 |
msgstr "Links"
|
724 |
|
725 |
# @ wplivechat
|
726 |
-
#: C:\wamp\www\
|
727 |
-
#: C:\wamp\www\
|
728 |
msgid "Right"
|
729 |
msgstr "Rechts"
|
730 |
|
731 |
# @ wplivechat
|
732 |
-
#: C:\wamp\www\
|
733 |
-
#: C:\wamp\www\
|
734 |
msgid "Auto Pop-up"
|
735 |
msgstr "Auto Pop-up:"
|
736 |
|
737 |
# @ wplivechat
|
738 |
-
#: C:\wamp\www\
|
739 |
-
#: C:\wamp\www\
|
740 |
msgid ""
|
741 |
"Expand the chat box automatically (prompts the user to enter their name and "
|
742 |
"email address)."
|
@@ -745,97 +751,106 @@ msgstr ""
|
|
745 |
"seinen Namen und E-Mail-Adresse einzugeben)."
|
746 |
|
747 |
# @ wplivechat
|
748 |
-
#: C:\wamp\www\
|
749 |
-
|
750 |
msgid "Name "
|
751 |
msgstr "Name"
|
752 |
|
753 |
# @ wplivechat
|
754 |
-
#: C:\wamp\www\
|
755 |
-
#: C:\wamp\www\
|
|
|
756 |
msgid "Picture"
|
757 |
msgstr "Bild"
|
758 |
|
759 |
# @ wplivechat
|
760 |
-
#: C:\wamp\www\
|
761 |
-
#: C:\wamp\www\
|
762 |
-
#: C:\wamp\www\
|
|
|
763 |
msgid "Upload Image"
|
764 |
msgstr "Bild hochladen"
|
765 |
|
766 |
-
#: C:\wamp\www\
|
|
|
767 |
msgid "Remove Image"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: C:\wamp\www\
|
771 |
msgid "Recomended Size 40px x 40px"
|
772 |
msgstr ""
|
773 |
|
774 |
# @ wplivechat
|
775 |
-
#: C:\wamp\www\
|
776 |
-
#: C:\wamp\www\
|
|
|
777 |
msgid "Logo"
|
778 |
msgstr "Logo"
|
779 |
|
780 |
# @ wplivechat
|
781 |
-
#: C:\wamp\www\
|
782 |
-
|
783 |
msgid "Upload Logo"
|
784 |
msgstr "Bild hochladen"
|
785 |
|
786 |
-
#: C:\wamp\www\
|
|
|
787 |
msgid "Remove Logo"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: C:\wamp\www\
|
|
|
791 |
msgid "Recomended Size 250px x 40px"
|
792 |
msgstr ""
|
793 |
|
794 |
# @ wplivechat
|
795 |
-
#: C:\wamp\www\
|
796 |
-
#: C:\wamp\www\
|
|
|
797 |
msgid "Chat delay (seconds)"
|
798 |
msgstr "Chat-Verzögerung (Sekunden)"
|
799 |
|
800 |
-
#: C:\wamp\www\
|
|
|
801 |
msgid "How long it takes for your chat window to pop up"
|
802 |
msgstr ""
|
803 |
|
804 |
# @ wplivechat
|
805 |
-
#: C:\wamp\www\
|
806 |
-
#: C:\wamp\www\
|
|
|
807 |
msgid "Chat notifications"
|
808 |
msgstr "Chat-Benachrichtigungen"
|
809 |
|
810 |
# @ wplivechat
|
811 |
-
#: C:\wamp\www\
|
812 |
-
|
813 |
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
814 |
msgstr "Verständige Sie mich per E-Mail sobald jemand chatten möchte"
|
815 |
|
816 |
# @ wplivechat
|
817 |
-
#: C:\wamp\www\
|
818 |
-
#: C:\wamp\www\
|
819 |
msgid "Display name and avatar in chat"
|
820 |
msgstr "Anzeige des Namens und des Avatars im Chat:"
|
821 |
|
822 |
# @ wplivechat
|
823 |
-
#: C:\wamp\www\
|
824 |
-
#: C:\wamp\www\
|
825 |
msgid "Display the agent and user name above each message in the chat window."
|
826 |
msgstr ""
|
827 |
"Zeigen Sie im Chat-Fenster den Agenten und den Benutzernamen über jeder "
|
828 |
"Nachricht."
|
829 |
|
830 |
# @ wplivechat
|
831 |
-
#: C:\wamp\www\
|
832 |
-
#: C:\wamp\www\
|
833 |
msgid "Only show the chat window to users that are logged in"
|
834 |
msgstr "Das Chat-Fenster wird nur Benutzern angezeigt, die angemeldet sind:"
|
835 |
|
836 |
# @ wplivechat
|
837 |
-
#: C:\wamp\www\
|
838 |
-
#: C:\wamp\www\
|
839 |
msgid ""
|
840 |
"By checking this, only users that are logged in will be able to chat with "
|
841 |
"you."
|
@@ -844,14 +859,14 @@ msgstr ""
|
|
844 |
"der Lage sein, mit Ihnen zu chatten."
|
845 |
|
846 |
# @ wplivechat
|
847 |
-
#: C:\wamp\www\
|
848 |
-
#: C:\wamp\www\
|
849 |
msgid "Do not allow users to send offline messages"
|
850 |
msgstr "Benutzer können keine Offline-Nachrichten senden:"
|
851 |
|
852 |
# @ wplivechat
|
853 |
-
#: C:\wamp\www\
|
854 |
-
#: C:\wamp\www\
|
855 |
msgid ""
|
856 |
"The chat window will be hidden when it is offline. Users will not be able to "
|
857 |
"send offline messages to you"
|
@@ -860,117 +875,124 @@ msgstr ""
|
|
860 |
"werden nicht in der Lage sein, Offline-Nachrichten an Sie zu schicken"
|
861 |
|
862 |
# @ wplivechat
|
863 |
-
#: C:\wamp\www\
|
864 |
-
#: C:\wamp\www\
|
865 |
msgid "Email Address"
|
866 |
msgstr "E-Mail Adresse"
|
867 |
|
868 |
-
#: C:\wamp\www\
|
|
|
869 |
msgid ""
|
870 |
"Email address where offline messages are delivered to. Use comma separated "
|
871 |
"email addresses to send to more than one email address"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: C:\wamp\www\
|
|
|
875 |
msgid "Sending Method"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: C:\wamp\www\
|
|
|
879 |
msgid "WP Mail"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: C:\wamp\www\
|
|
|
883 |
msgid "PHP Mailer"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: C:\wamp\www\
|
|
|
887 |
msgid "Host"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: C:\wamp\www\
|
|
|
891 |
msgid "Port"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: C:\wamp\www\
|
|
|
895 |
msgid "Username"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: C:\wamp\www\
|
|
|
899 |
msgid "Password"
|
900 |
msgstr ""
|
901 |
|
902 |
# @ wplivechat
|
903 |
-
#: C:\wamp\www\
|
904 |
-
|
905 |
msgid "Offline Chat Box Title"
|
906 |
msgstr "Offline-Text"
|
907 |
|
908 |
# @ wplivechat
|
909 |
-
#: C:\wamp\www\
|
910 |
-
|
911 |
msgid "Offline Text Fields"
|
912 |
msgstr "Offline-Text"
|
913 |
|
914 |
-
#: C:\wamp\www\
|
|
|
915 |
msgid "Choose a theme"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: C:\wamp\www\
|
919 |
-
#: C:\wamp\www\
|
920 |
msgid "Theme 1"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: C:\wamp\www\
|
924 |
-
#: C:\wamp\www\
|
925 |
msgid "Theme 2"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: C:\wamp\www\
|
929 |
-
#: C:\wamp\www\
|
930 |
msgid "Theme 3"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: C:\wamp\www\
|
934 |
-
#: C:\wamp\www\
|
935 |
msgid "Theme 4"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: C:\wamp\www\
|
939 |
-
#: C:\wamp\www\
|
940 |
msgid "Theme 5"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: C:\wamp\www\
|
944 |
msgid "Theme 6"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: C:\wamp\www\
|
948 |
msgid "Custom. Enter Colour Values Below"
|
949 |
msgstr ""
|
950 |
|
951 |
# @ wplivechat
|
952 |
-
#: C:\wamp\www\
|
953 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
954 |
msgid "Chat box fill color"
|
955 |
msgstr "Chat-Box Füllfarbe"
|
956 |
|
957 |
# @ wplivechat
|
958 |
-
#: C:\wamp\www\
|
959 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:368
|
960 |
msgid "Chat box font color"
|
961 |
msgstr "Chat-Box Textfarbe"
|
962 |
|
963 |
-
#: C:\wamp\www\
|
|
|
964 |
msgid "I'm using a localization plugin"
|
965 |
msgstr ""
|
966 |
|
967 |
# @ wplivechat
|
968 |
-
#: C:\wamp\www\
|
969 |
-
#, fuzzy
|
970 |
msgid "documentation"
|
971 |
msgstr "Dokumentation"
|
972 |
|
973 |
-
#: C:\wamp\www\
|
974 |
msgid ""
|
975 |
"You will only be able to edit the strings shown in the chat window of the "
|
976 |
"code now. <br/> This has been done to accommodate as many localization "
|
@@ -979,44 +1001,46 @@ msgid ""
|
|
979 |
msgstr ""
|
980 |
|
981 |
# @ wplivechat
|
982 |
-
#: C:\wamp\www\
|
983 |
-
|
984 |
msgid "First Section Text"
|
985 |
msgstr "Text erste Sektion"
|
986 |
|
987 |
-
#: C:\wamp\www\
|
|
|
988 |
msgid "Intro Text"
|
989 |
msgstr ""
|
990 |
|
991 |
# @ wplivechat
|
992 |
-
#: C:\wamp\www\
|
993 |
-
|
994 |
msgid "Second Section Text"
|
995 |
msgstr "Text zweite Sektion"
|
996 |
|
997 |
# @ wplivechat
|
998 |
-
#: C:\wamp\www\
|
999 |
-
|
1000 |
msgid "Reactivate Chat Section Text"
|
1001 |
msgstr "Text für reaktivierten Chat"
|
1002 |
|
1003 |
-
#: C:\wamp\www\
|
|
|
1004 |
msgid "User chat welcome"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
# @ wplivechat
|
1008 |
-
#: C:\wamp\www\
|
1009 |
-
|
1010 |
msgid "Other text"
|
1011 |
msgstr "Weitere"
|
1012 |
|
1013 |
-
#: C:\wamp\www\
|
|
|
1014 |
msgid "This text is shown above the user chat input field"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
# @ wplivechat
|
1018 |
-
#: C:\wamp\www\
|
1019 |
-
#, fuzzy
|
1020 |
msgid ""
|
1021 |
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
1022 |
"update your plugin to allow for animations to function"
|
@@ -1025,71 +1049,78 @@ msgstr ""
|
|
1025 |
"Pro<strong>."
|
1026 |
|
1027 |
# @ sola_t
|
1028 |
-
#: C:\wamp\www\
|
1029 |
-
|
1030 |
msgid "Choose an animation"
|
1031 |
msgstr "Wählen Sie eine Animation (nur Pro)"
|
1032 |
|
1033 |
# @ wplivechat
|
1034 |
-
#: C:\wamp\www\
|
1035 |
-
#: C:\wamp\www\
|
1036 |
msgid "Slide Up"
|
1037 |
msgstr "Hochsliden"
|
1038 |
|
1039 |
# @ wplivechat
|
1040 |
-
#: C:\wamp\www\
|
1041 |
-
#: C:\wamp\www\
|
1042 |
msgid "Slide From The Side"
|
1043 |
msgstr "Slide von der Seite"
|
1044 |
|
1045 |
# @ wplivechat
|
1046 |
-
#: C:\wamp\www\
|
1047 |
-
#: C:\wamp\www\
|
1048 |
msgid "Fade In"
|
1049 |
msgstr "Einblenden"
|
1050 |
|
1051 |
# @ wplivechat
|
1052 |
-
#: C:\wamp\www\
|
1053 |
-
#: C:\wamp\www\
|
1054 |
msgid "No Animation"
|
1055 |
msgstr "Keine Animation"
|
1056 |
|
1057 |
-
#: C:\wamp\www\
|
1058 |
-
#: C:\wamp\www\
|
|
|
1059 |
msgid "Current Users that are Chat Agents"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: C:\wamp\www\
|
1063 |
-
#: C:\wamp\www\
|
|
|
1064 |
msgid "Online"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: C:\wamp\www\
|
1068 |
-
#: C:\wamp\www\
|
|
|
|
|
1069 |
msgid "Remove"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: C:\wamp\www\
|
1073 |
-
#: C:\wamp\www\
|
|
|
1074 |
msgid "Add New Agent"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
# @ wplivechat
|
1078 |
-
#: C:\wamp\www\
|
1079 |
-
#: C:\wamp\www\
|
1080 |
-
#: C:\wamp\www\
|
1081 |
-
#: C:\wamp\www\
|
|
|
1082 |
msgid "Select"
|
1083 |
msgstr "Auswählen"
|
1084 |
|
1085 |
# @ wplivechat
|
1086 |
-
#: C:\wamp\www\
|
1087 |
-
#: C:\wamp\www\
|
1088 |
-
|
1089 |
msgid "Add Agent"
|
1090 |
msgstr "Agenten"
|
1091 |
|
1092 |
-
#: C:\wamp\www\
|
|
|
1093 |
msgid ""
|
1094 |
"Should you wish to add a user that has a role less than 'Author', please go "
|
1095 |
"to the <a href='./users.php'>Users</a> page, select the relevant user, click "
|
@@ -1097,27 +1128,28 @@ msgid ""
|
|
1097 |
"checkbox."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: C:\wamp\www\
|
|
|
1101 |
msgid "If there are no chat agents online, the chat will show as offline"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
# @ wplivechat
|
1105 |
-
#: C:\wamp\www\
|
1106 |
-
#: C:\wamp\www\
|
1107 |
msgid "Blocked Visitors - Based on IP Address"
|
1108 |
msgstr "Blockierte Besucher - basierend auf der IP-Adresse"
|
1109 |
|
1110 |
# @ wplivechat
|
1111 |
-
#: C:\wamp\www\
|
1112 |
-
#: C:\wamp\www\
|
1113 |
msgid "Enter each IP Address you would like to block on a new line"
|
1114 |
msgstr ""
|
1115 |
"Geben Sie jede IP-Adresse ein, die Sie in einer neuen Zeile blockieren "
|
1116 |
"möchten"
|
1117 |
|
1118 |
# @ wplivechat
|
1119 |
-
#: C:\wamp\www\
|
1120 |
-
#: C:\wamp\www\
|
1121 |
msgid ""
|
1122 |
"Blocking a user's IP Address here will hide the chat window from them, "
|
1123 |
"preventing them from chatting with you. Each IP Address must be on a new line"
|
@@ -1127,923 +1159,697 @@ msgstr ""
|
|
1127 |
"Adresse muss in einer neuen Zeile sein."
|
1128 |
|
1129 |
# @ wplivechat
|
1130 |
-
#: C:\wamp\www\
|
1131 |
-
#, fuzzy
|
1132 |
msgid ""
|
1133 |
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
1134 |
msgstr "Installation der WP Live Chat Support Pro Add-ons"
|
1135 |
|
1136 |
# @ wplivechat
|
1137 |
-
#: C:\wamp\www\
|
1138 |
-
#: C:\wamp\www\
|
1139 |
-
#, fuzzy
|
1140 |
msgid "Chat Encryption"
|
1141 |
msgstr "Chat-Benachrichtigungen"
|
1142 |
|
1143 |
-
#: C:\wamp\www\
|
1144 |
-
#: C:\wamp\www\
|
1145 |
msgid "Enable Encryption"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: C:\wamp\www\
|
1149 |
-
#: C:\wamp\www\
|
1150 |
msgid ""
|
1151 |
"All messages will be encrypted when being sent to and from the user and "
|
1152 |
"agent."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: C:\wamp\www\
|
|
|
1156 |
msgid ""
|
1157 |
"Once enabled, all messages sent will be encrypted. This cannot be undone."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
# @ wplivechat
|
1161 |
-
#: C:\wamp\www\
|
1162 |
-
#: C:\wamp\www\
|
1163 |
msgid "Save Settings"
|
1164 |
msgstr "Einstellungen speichern"
|
1165 |
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
# @ wplivechat
|
1173 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1174 |
-
#, fuzzy
|
1175 |
-
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
1176 |
msgstr ""
|
1177 |
-
"Sie verwenden eine veraltete Version von <strong>WP Live Chat Support "
|
1178 |
-
"Pro<strong>. Bitte"
|
1179 |
|
1180 |
# @ wplivechat
|
1181 |
-
#: C:\wamp\www\
|
1182 |
-
|
1183 |
-
|
1184 |
-
msgstr "aktualisieren Sie auf die neueste Version"
|
1185 |
|
1186 |
# @ wplivechat
|
1187 |
-
#: C:\wamp\www\
|
1188 |
-
#: C:\wamp\www\
|
1189 |
-
|
1190 |
-
|
|
|
1191 |
|
1192 |
# @ wplivechat
|
1193 |
-
#: C:\wamp\www\
|
1194 |
-
|
1195 |
-
|
1196 |
-
"You're live chat box on your website has been temporarily disabled until the "
|
1197 |
-
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
1198 |
-
"user experience for both yourself and your visitors."
|
1199 |
-
msgstr ""
|
1200 |
-
"Ihr Live-Chat auf Ihrer Seite wurde vorübergehend deaktiviert, bis das Pro-"
|
1201 |
-
"Plugin aktualisiert wird. Dies geschieht, um einen reibungslose und "
|
1202 |
-
"stressfreie Nutzererfahrung für sich und Ihre Besucher sicherzustellen."
|
1203 |
|
1204 |
# @ wplivechat
|
1205 |
-
#: C:\wamp\www\
|
1206 |
-
|
1207 |
-
msgid ""
|
1208 |
-
"
|
1209 |
-
"href='./plugins.php'>here</a>."
|
1210 |
-
msgstr ""
|
1211 |
-
"Sie können das Plugin aktualisieren <a href='./update-core.php'>hier</a>, <a "
|
1212 |
-
"href='./plugins.php'>hier</a> oder <a href='http://wp-livechat.com/get-"
|
1213 |
-
"updated-version/' target='_BLANK'>hier</a>."
|
1214 |
|
1215 |
# @ wplivechat
|
1216 |
-
#: C:\wamp\www\
|
1217 |
-
|
1218 |
-
|
1219 |
-
msgid "If you are having difficulty updating the plugin, please contact"
|
1220 |
-
msgstr ""
|
1221 |
-
"Wenn Sie Schwierigkeiten haben das Plugin zu aktualisieren, kontaktieren Sie "
|
1222 |
-
"uns bitte unter"
|
1223 |
|
1224 |
-
|
1225 |
-
|
1226 |
-
"
|
1227 |
-
"
|
1228 |
-
msgstr ""
|
1229 |
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
|
|
1233 |
|
1234 |
# @ wplivechat
|
1235 |
-
#: C:\wamp\www\
|
1236 |
-
|
1237 |
-
|
1238 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:377
|
1239 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:781
|
1240 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:962
|
1241 |
-
msgid "Questions?"
|
1242 |
-
msgstr "Fragen?"
|
1243 |
|
1244 |
# @ wplivechat
|
1245 |
-
#: C:\wamp\www\
|
1246 |
-
|
1247 |
-
|
1248 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1249 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:781
|
1250 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:962
|
1251 |
-
msgid "Chat with us"
|
1252 |
-
msgstr "Chatten Sie mit uns!"
|
1253 |
|
1254 |
# @ wplivechat
|
1255 |
-
#: C:\wamp\www\
|
1256 |
-
|
1257 |
-
|
1258 |
-
#, fuzzy
|
1259 |
-
msgid "Start live chat"
|
1260 |
-
msgstr "Live-Chat starten"
|
1261 |
|
1262 |
# @ wplivechat
|
1263 |
-
#: C:\wamp\www\
|
1264 |
-
|
1265 |
-
|
1266 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:384
|
1267 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:840
|
1268 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1024
|
1269 |
-
msgid "Start Chat"
|
1270 |
-
msgstr "Chat starten"
|
1271 |
|
1272 |
# @ wplivechat
|
1273 |
-
#: C:\wamp\www\
|
1274 |
-
|
1275 |
-
|
1276 |
-
#, fuzzy
|
1277 |
-
msgid "Connecting. Please be patient..."
|
1278 |
-
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
1279 |
|
1280 |
# @ wplivechat
|
1281 |
-
#: C:\wamp\www\
|
1282 |
-
#: C:\wamp\www\
|
1283 |
-
#: C:\wamp\www\
|
1284 |
-
|
1285 |
-
|
1286 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1030
|
1287 |
-
msgid "Reactivating your previous chat..."
|
1288 |
-
msgstr "Der vorherige Chat wird reaktiviert..."
|
1289 |
|
1290 |
# @ wplivechat
|
1291 |
-
#: C:\wamp\www\
|
1292 |
-
|
1293 |
-
|
1294 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:310
|
1295 |
-
msgid "Chat offline. Leave a message"
|
1296 |
-
msgstr "Chat-Offline. Hinterlassen Sie eine Nachricht"
|
1297 |
|
1298 |
-
#: C:\wamp\www\
|
1299 |
-
|
1300 |
-
|
1301 |
-
msgid "Hello. Please input your details so that I may help you."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: C:\wamp\www\
|
1305 |
-
|
1306 |
-
|
1307 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1116
|
1308 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1117
|
1309 |
-
msgid ""
|
1310 |
-
"We are currently offline. Please leave a message and we'll get back to you "
|
1311 |
-
"shortly."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: C:\wamp\www\
|
1315 |
-
msgid "
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
|
1319 |
-
|
1320 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:869
|
1321 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
|
1322 |
-
#, fuzzy
|
1323 |
-
msgid "Thank you for your message. We will be in contact soon."
|
1324 |
-
msgstr "Danke für Ihr Feedback. Wir melden uns bald"
|
1325 |
-
|
1326 |
-
# @ wplivechat
|
1327 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:632
|
1328 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:871
|
1329 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1120
|
1330 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:851
|
1331 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1035
|
1332 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1947
|
1333 |
-
msgid "Press ENTER to send your message"
|
1334 |
-
msgstr "ENTER drücken um die Nachricht zu senden"
|
1335 |
-
|
1336 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:633
|
1337 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:873
|
1338 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1122
|
1339 |
-
msgid "Welcome. How may I help you?"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: C:\wamp\www\
|
1343 |
-
msgid "
|
1344 |
msgstr ""
|
1345 |
|
1346 |
# @ wplivechat
|
1347 |
-
#: C:\wamp\www\
|
1348 |
-
#, fuzzy
|
1349 |
msgid "You are currently accepting chats"
|
1350 |
msgstr "Sie haben einen eingehenden Chat."
|
1351 |
|
1352 |
# @ wplivechat
|
1353 |
-
#: C:\wamp\www\
|
1354 |
-
#, fuzzy
|
1355 |
msgid "You are not accepting chats"
|
1356 |
msgstr "Sie haben einen eingehenden Chat."
|
1357 |
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
|
|
1363 |
|
1364 |
# @ wplivechat
|
1365 |
-
#: C:\wamp\www\
|
1366 |
-
|
1367 |
-
|
1368 |
-
msgstr "URL"
|
1369 |
|
1370 |
-
#: C:\wamp\www\
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
msgstr ""
|
1375 |
|
1376 |
# @ wplivechat
|
1377 |
-
#: C:\wamp\www\
|
1378 |
-
|
1379 |
-
|
1380 |
-
#, fuzzy
|
1381 |
-
msgid "Action"
|
1382 |
-
msgstr "Aktiv"
|
1383 |
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
msgstr "
|
1389 |
|
1390 |
# @ wplivechat
|
1391 |
-
#: C:\wamp\www\
|
1392 |
-
|
1393 |
-
|
1394 |
-
msgstr "WP Live Chat Historie"
|
1395 |
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
msgstr "
|
1401 |
|
1402 |
# @ wplivechat
|
1403 |
-
#: C:\wamp\www\
|
1404 |
-
|
1405 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1304
|
1406 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2468
|
1407 |
-
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1408 |
msgstr ""
|
1409 |
-
"
|
1410 |
-
"
|
1411 |
|
1412 |
-
|
1413 |
-
#: C:\wamp\www\
|
1414 |
-
|
1415 |
-
|
1416 |
-
msgid "Minimize Chat Window"
|
1417 |
-
msgstr "Chat-Fenster öffnen"
|
1418 |
|
1419 |
# @ wplivechat
|
1420 |
-
#: C:\wamp\www\
|
1421 |
-
|
1422 |
-
|
1423 |
-
msgid "Close Chat Window"
|
1424 |
-
msgstr "Chat-Fenster öffnen"
|
1425 |
|
1426 |
-
#: C:\wamp\www\
|
1427 |
-
#: C:\wamp\www\
|
1428 |
-
|
|
|
|
|
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
# @ wplivechat
|
1432 |
-
#: C:\wamp\www\
|
1433 |
-
|
1434 |
-
|
1435 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1039
|
1436 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1961
|
1437 |
-
msgid "Send"
|
1438 |
-
msgstr "Senden"
|
1439 |
|
1440 |
# @ wplivechat
|
1441 |
-
#: C:\wamp\www\
|
1442 |
-
|
1443 |
-
|
1444 |
-
msgstr "Ihre Einstellungen wurden gespeichert."
|
1445 |
|
1446 |
# @ wplivechat
|
1447 |
-
#: C:\wamp\www\
|
1448 |
-
msgid "
|
1449 |
-
msgstr "
|
1450 |
|
1451 |
# @ wplivechat
|
1452 |
-
#: C:\wamp\www\
|
1453 |
-
|
1454 |
-
|
1455 |
-
"Please note: This window must be open in order to receive new chat "
|
1456 |
-
"notifications."
|
1457 |
-
msgstr ""
|
1458 |
-
"Bitte beachten: Dieses Fenster muss geöffnet bleiben um Chat-"
|
1459 |
-
"Benachrichtigungen zu empfangen."
|
1460 |
-
|
1461 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1522
|
1462 |
-
msgid ""
|
1463 |
-
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1464 |
-
"chat to visitors"
|
1465 |
-
msgstr ""
|
1466 |
|
1467 |
# @ wplivechat
|
1468 |
-
#: C:\wamp\www\
|
1469 |
-
|
1470 |
-
|
1471 |
-
msgid "Visitors online"
|
1472 |
-
msgstr "Besucher auf der Seite"
|
1473 |
-
|
1474 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1555
|
1475 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1809
|
1476 |
-
msgid "Agent(s) online"
|
1477 |
-
msgstr ""
|
1478 |
|
1479 |
# @ wplivechat
|
1480 |
-
#: C:\wamp\www\
|
1481 |
-
|
1482 |
-
|
1483 |
-
msgid "Visitor"
|
1484 |
-
msgstr "Besucher auf der Seite"
|
1485 |
-
|
1486 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1566
|
1487 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1820
|
1488 |
-
msgid "Time"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
|
1492 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1821
|
1493 |
-
msgid "Type"
|
1494 |
-
msgstr ""
|
1495 |
-
|
1496 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
|
1497 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1822
|
1498 |
-
msgid "Data"
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1666
|
1502 |
-
msgid "Unknown"
|
1503 |
-
msgstr ""
|
1504 |
|
1505 |
# @ wplivechat
|
1506 |
-
#: C:\wamp\www\
|
1507 |
-
|
1508 |
-
|
1509 |
-
msgstr "Chat beenden"
|
1510 |
|
1511 |
# @ wplivechat
|
1512 |
-
#: C:\wamp\www\
|
1513 |
-
|
1514 |
-
|
1515 |
-
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
1516 |
|
1517 |
# @ wplivechat
|
1518 |
-
#: C:\wamp\www\
|
1519 |
-
|
1520 |
-
|
1521 |
-
msgstr ""
|
1522 |
-
"Dieser Chat wurde bereits beantwortet. Bitte schließen Sie dieses Chat-"
|
1523 |
-
"Fenster."
|
1524 |
|
1525 |
# @ wplivechat
|
1526 |
-
#: C:\wamp\www\
|
1527 |
-
#: C:\wamp\www\
|
1528 |
-
msgid "
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
# @ wplivechat
|
1532 |
-
#: C:\wamp\www\
|
1533 |
-
|
1534 |
-
|
1535 |
-
msgstr "Benutzer hat das Chat-Fenster minimiert"
|
1536 |
|
1537 |
# @ wplivechat
|
1538 |
-
#: C:\wamp\www\
|
1539 |
-
#: C:\wamp\www\
|
1540 |
-
|
1541 |
-
|
|
|
|
|
|
|
|
|
1542 |
|
1543 |
# @ wplivechat
|
1544 |
-
#: C:\wamp\www\
|
1545 |
-
#: C:\wamp\www\
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
#: C:\wamp\www\
|
1550 |
-
msgid ""
|
1551 |
-
"
|
1552 |
-
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1553 |
-
msgstr ""
|
1554 |
-
|
1555 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2482
|
1556 |
-
msgid "An unknown error occurred"
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
# @ wplivechat
|
1560 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1561 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1562 |
-
#, fuzzy
|
1563 |
-
msgid "Add-ons"
|
1564 |
-
msgstr "Pro Add-on"
|
1565 |
-
|
1566 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1567 |
-
msgid "Supplimentary Plugins"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
# @ wplivechat
|
1571 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1572 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1573 |
-
msgid "Pro add-on"
|
1574 |
-
msgstr "Pro Add-on"
|
1575 |
-
|
1576 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1577 |
-
msgid "Get this extension"
|
1578 |
-
msgstr ""
|
1579 |
-
|
1580 |
-
# @ wplivechat
|
1581 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2703
|
1582 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:446
|
1583 |
-
msgid "Live Chat"
|
1584 |
-
msgstr "Live-Chat"
|
1585 |
-
|
1586 |
-
# @ wplivechat
|
1587 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2704
|
1588 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:447
|
1589 |
-
msgid "Settings"
|
1590 |
-
msgstr "Einstellungen"
|
1591 |
-
|
1592 |
-
# @ wplivechat
|
1593 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2705
|
1594 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2729
|
1595 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2740
|
1596 |
-
#, fuzzy
|
1597 |
-
msgid "Quick Responses"
|
1598 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1599 |
-
|
1600 |
-
# @ wplivechat
|
1601 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2706
|
1602 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:448
|
1603 |
-
msgid "History"
|
1604 |
-
msgstr "Historie"
|
1605 |
-
|
1606 |
-
# @ wplivechat
|
1607 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2707
|
1608 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:449
|
1609 |
-
msgid "Missed Chats"
|
1610 |
-
msgstr "Verpasste Chats"
|
1611 |
-
|
1612 |
-
# @ wplivechat
|
1613 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2709
|
1614 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1615 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:450
|
1616 |
-
msgid "Feedback"
|
1617 |
-
msgstr "Feedback"
|
1618 |
-
|
1619 |
-
# @ wplivechat
|
1620 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2711
|
1621 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:452
|
1622 |
-
#, fuzzy
|
1623 |
-
msgid "Extensions"
|
1624 |
-
msgstr "Chat-Sitzung"
|
1625 |
-
|
1626 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2716
|
1627 |
-
msgid "Error Log"
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2719
|
1631 |
-
msgid "Statistics"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
# @ wplivechat
|
1635 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2722
|
1636 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:451
|
1637 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2764
|
1638 |
-
msgid "Support"
|
1639 |
-
msgstr "Support"
|
1640 |
-
|
1641 |
-
# @ wplivechat
|
1642 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2730
|
1643 |
-
#, fuzzy
|
1644 |
-
msgid "Quick Response"
|
1645 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1646 |
-
|
1647 |
-
# @ wplivechat
|
1648 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2731
|
1649 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2734
|
1650 |
-
#, fuzzy
|
1651 |
-
msgid "New Quick Response"
|
1652 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1653 |
-
|
1654 |
-
# @ wplivechat
|
1655 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2732
|
1656 |
-
#, fuzzy
|
1657 |
-
msgid "Add New Quick Response"
|
1658 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1659 |
-
|
1660 |
-
# @ wplivechat
|
1661 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2733
|
1662 |
-
#, fuzzy
|
1663 |
-
msgid "Edit Quick Response"
|
1664 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1665 |
-
|
1666 |
-
# @ wplivechat
|
1667 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2735
|
1668 |
-
#, fuzzy
|
1669 |
-
msgid "All Quick Responses"
|
1670 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1671 |
-
|
1672 |
-
# @ wplivechat
|
1673 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2736
|
1674 |
-
#, fuzzy
|
1675 |
-
msgid "View Quick Responses"
|
1676 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1677 |
-
|
1678 |
-
# @ wplivechat
|
1679 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2737
|
1680 |
-
#, fuzzy
|
1681 |
-
msgid "Search Quick Responses"
|
1682 |
-
msgstr "Was sind die schnellen Antworten?"
|
1683 |
-
|
1684 |
-
# @ wplivechat
|
1685 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2738
|
1686 |
-
#, fuzzy
|
1687 |
-
msgid "No Quick Responses found"
|
1688 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1689 |
-
|
1690 |
-
# @ wplivechat
|
1691 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2739
|
1692 |
-
#, fuzzy
|
1693 |
-
msgid "No Quick Responses found in the Trash"
|
1694 |
-
msgstr "Fügen Sie blitzschnelle Antworten zu Ihrem Live-Chat"
|
1695 |
-
|
1696 |
-
# @ wplivechat
|
1697 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2744
|
1698 |
-
#, fuzzy
|
1699 |
-
msgid "Quick Responses for WP Live Chat Support Pro"
|
1700 |
-
msgstr "Fügen Sie blitzschnelle Antworten zu Ihrem Live-Chat"
|
1701 |
-
|
1702 |
-
# @ wplivechat
|
1703 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2798
|
1704 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2802
|
1705 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1706 |
-
msgid "Assign Quick Response"
|
1707 |
-
msgstr "Blitzschnelle Antwort zuweisen"
|
1708 |
-
|
1709 |
-
# @ wplivechat
|
1710 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2811
|
1711 |
-
#, fuzzy
|
1712 |
-
msgid "What is this?"
|
1713 |
-
msgstr "Chatten Sie mit uns!"
|
1714 |
-
|
1715 |
-
# @ wplivechat
|
1716 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:878
|
1717 |
-
msgid "complete"
|
1718 |
-
msgstr "Beendet"
|
1719 |
-
|
1720 |
-
# @ wplivechat
|
1721 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:881
|
1722 |
-
msgid "pending"
|
1723 |
-
msgstr "in Warteschleife"
|
1724 |
|
1725 |
# @ wplivechat
|
1726 |
-
#: C:\wamp\www\
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
# @ wplivechat
|
1731 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:887
|
1732 |
-
msgid "deleted"
|
1733 |
-
msgstr "Gelöscht"
|
1734 |
-
|
1735 |
-
# @ wplivechat
|
1736 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:890
|
1737 |
-
msgid "browsing"
|
1738 |
-
msgstr "surft"
|
1739 |
|
1740 |
# @ wplivechat
|
1741 |
-
#: C:\wamp\www\
|
1742 |
-
|
1743 |
-
|
|
|
|
|
|
|
|
|
1744 |
|
1745 |
# @ wplivechat
|
1746 |
-
#: C:\wamp\www\
|
1747 |
-
|
1748 |
-
|
|
|
1749 |
|
1750 |
# @ wplivechat
|
1751 |
-
#: C:\wamp\www\
|
1752 |
-
|
1753 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1754 |
|
1755 |
# @ wplivechat
|
1756 |
-
#: C:\wamp\www\
|
1757 |
-
|
1758 |
-
|
|
|
|
|
|
|
|
|
|
|
1759 |
|
1760 |
# @ wplivechat
|
1761 |
-
#: C:\wamp\www\
|
1762 |
-
|
1763 |
-
|
|
|
|
|
|
|
1764 |
|
1765 |
# @ wplivechat
|
1766 |
-
#: C:\wamp\www\
|
1767 |
msgid "WP Live Chat Support Feedback"
|
1768 |
msgstr "WP Live Chat Support Feedback"
|
1769 |
|
1770 |
# @ wplivechat
|
1771 |
-
#: C:\wamp\www\
|
1772 |
msgid "We'd love to hear your comments and/or suggestions"
|
1773 |
msgstr ""
|
1774 |
"Wir würden uns freuen Kommentare und/oder Vorschläge von Ihnen zu bekommen"
|
1775 |
|
1776 |
# @ wplivechat
|
1777 |
-
#: C:\wamp\www\
|
1778 |
msgid "Your Name"
|
1779 |
msgstr "Ihr Name:"
|
1780 |
|
1781 |
# @ wplivechat
|
1782 |
-
#: C:\wamp\www\
|
1783 |
msgid "Your Email"
|
1784 |
msgstr "Ihre E-Mail:"
|
1785 |
|
1786 |
# @ wplivechat
|
1787 |
-
#: C:\wamp\www\
|
1788 |
msgid "Your Website"
|
1789 |
msgstr "Ihre Website:"
|
1790 |
|
1791 |
# @ wplivechat
|
1792 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
1793 |
msgid "Send Feedback"
|
1794 |
msgstr "Feedback senden"
|
1795 |
|
1796 |
# @ wplivechat
|
1797 |
-
#: C:\wamp\www\
|
1798 |
msgid "Agents"
|
1799 |
msgstr "Agenten"
|
1800 |
|
1801 |
# @ wplivechat
|
1802 |
-
#: C:\wamp\www\
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
#: C:\wamp\www\
|
1808 |
-
#: C:\wamp\www\
|
1809 |
-
#: C:\wamp\www\
|
1810 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
1811 |
msgid "available in the"
|
1812 |
msgstr "verfügbar in"
|
1813 |
|
1814 |
# @ wplivechat
|
1815 |
-
#: C:\wamp\www\
|
1816 |
-
#: C:\wamp\www\
|
1817 |
-
#: C:\wamp\www\
|
1818 |
-
#: C:\wamp\www\
|
1819 |
-
#: C:\wamp\www\
|
1820 |
-
#: C:\wamp\www\
|
1821 |
-
#: C:\wamp\www\
|
1822 |
-
#: C:\wamp\www\
|
1823 |
-
#: C:\wamp\www\
|
1824 |
-
#: C:\wamp\www\
|
1825 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:313
|
1826 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:397
|
1827 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:574
|
1828 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1829 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
1830 |
msgid "Pro Add-on"
|
1831 |
msgstr "Pro Add-on"
|
1832 |
|
1833 |
# @ wplivechat
|
1834 |
-
#: C:\wamp\www\
|
1835 |
-
#: C:\wamp\www\
|
1836 |
-
#: C:\wamp\www\
|
1837 |
-
#: C:\wamp\www\
|
1838 |
-
#: C:\wamp\www\
|
1839 |
-
#: C:\wamp\www\
|
1840 |
-
#: C:\wamp\www\
|
1841 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:240
|
1842 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:257
|
1843 |
msgid "only"
|
1844 |
msgstr "nur"
|
1845 |
|
1846 |
# @ wplivechat
|
1847 |
-
#: C:\wamp\www\
|
1848 |
-
#, fuzzy
|
1849 |
-
msgid "Include chat window on the following pages"
|
1850 |
-
msgstr "Chat-Fenster auf den folgenden Seiten hinzufügen:"
|
1851 |
-
|
1852 |
-
# @ wplivechat
|
1853 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
1854 |
-
#, fuzzy
|
1855 |
msgid "Exclude chat window on the following pages"
|
1856 |
msgstr "Das Chat-Fenster auf den folgenden Seiten ausschließen:"
|
1857 |
|
1858 |
# @ wplivechat
|
1859 |
-
#: C:\wamp\www\
|
1860 |
msgid "Alert me via email as soon as someone wants to chat"
|
1861 |
msgstr "Verständige Sie mich per E-Mail sobald jemand chatten möchte"
|
1862 |
|
1863 |
-
|
1864 |
-
#: C:\wamp\www\
|
1865 |
-
msgid "
|
1866 |
-
msgstr "
|
1867 |
-
|
1868 |
-
# @ wplivechat
|
1869 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:307
|
1870 |
-
msgid "Offline text"
|
1871 |
-
msgstr "Offline-Text"
|
1872 |
-
|
1873 |
-
# @ wplivechat
|
1874 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:312
|
1875 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:396
|
1876 |
-
msgid "Edit these text fields using the "
|
1877 |
-
msgstr "Bearbeiten Sie diese Textfelder mittels"
|
1878 |
|
1879 |
-
|
1880 |
-
#: C:\wamp\www\
|
1881 |
-
msgid "
|
1882 |
-
msgstr "
|
1883 |
|
1884 |
# @ wplivechat
|
1885 |
-
#: C:\wamp\www\
|
1886 |
-
msgid "Colour Scheme
|
1887 |
msgstr "Farbschema 1"
|
1888 |
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
msgstr "Farbschema 2"
|
1893 |
-
|
1894 |
-
# @ wplivechat
|
1895 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:352
|
1896 |
-
msgid "Colour Scheme 3"
|
1897 |
-
msgstr "Farbschema 3"
|
1898 |
-
|
1899 |
-
# @ wplivechat
|
1900 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:353
|
1901 |
-
msgid "Colour Scheme 4"
|
1902 |
-
msgstr "Farbschema 4"
|
1903 |
-
|
1904 |
-
# @ wplivechat
|
1905 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
|
1906 |
-
msgid "Colour Scheme 5"
|
1907 |
-
msgstr "Farbschema 5"
|
1908 |
-
|
1909 |
-
# @ wplivechat
|
1910 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
1911 |
-
msgid "Colour Scheme 6"
|
1912 |
-
msgstr "Farbschema 6"
|
1913 |
|
1914 |
# @ wplivechat
|
1915 |
-
#: C:\wamp\www\
|
1916 |
-
msgid "
|
1917 |
-
msgstr "
|
1918 |
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
msgstr "Text zweite Sektion"
|
1923 |
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1027
|
1928 |
-
msgid "Connecting you to a sales person. Please be patient."
|
1929 |
-
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
1930 |
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
msgstr "Text für reaktivierten Chat"
|
1935 |
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
msgid "Choose an animation. Only available in the"
|
1940 |
-
msgstr "Diese Option ist verfügbar in der"
|
1941 |
|
1942 |
-
#: C:\wamp\www\
|
1943 |
-
msgid "
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: C:\wamp\www\
|
1947 |
-
msgid "
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
msgstr "
|
1955 |
|
1956 |
-
#: C:\wamp\www\
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
# @ wplivechat
|
1961 |
-
#: C:\wamp\www\
|
1962 |
msgid "Welcome to "
|
1963 |
msgstr "Willkommen zu"
|
1964 |
|
1965 |
# @ wplivechat
|
1966 |
-
#: C:\wamp\www\
|
1967 |
-
|
1968 |
-
msgid "Version 5"
|
1969 |
msgstr "Version 4"
|
1970 |
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
msgstr "Via WP Live Chat Support"
|
1975 |
|
1976 |
# @ wplivechat
|
1977 |
-
#: C:\wamp\www\
|
1978 |
msgid "How did you find us?"
|
1979 |
msgstr "Wie sind Sie auf uns aufmerksam geworden?"
|
1980 |
|
1981 |
# @ wplivechat
|
1982 |
-
#: C:\wamp\www\
|
1983 |
msgid "WordPress.org plugin repository "
|
1984 |
msgstr "WordPress.org Plugin Verzeichnis "
|
1985 |
|
1986 |
# @ wplivechat
|
1987 |
-
#: C:\wamp\www\
|
1988 |
msgid "Search Term"
|
1989 |
msgstr "Suchbegriff"
|
1990 |
|
1991 |
# @ wplivechat
|
1992 |
-
#: C:\wamp\www\
|
1993 |
msgid "Google or other search Engine"
|
1994 |
msgstr "Google oder eine andere Suchmaschine"
|
1995 |
|
1996 |
# @ wplivechat
|
1997 |
-
#: C:\wamp\www\
|
1998 |
msgid "Friend recommendation"
|
1999 |
msgstr "Empfehlung eines Freundes"
|
2000 |
|
2001 |
# @ wplivechat
|
2002 |
-
#: C:\wamp\www\
|
2003 |
msgid "Other"
|
2004 |
msgstr "Weitere"
|
2005 |
|
2006 |
# @ wplivechat
|
2007 |
-
#: C:\wamp\www\
|
2008 |
msgid "Please Explain"
|
2009 |
msgstr "Bitte erläutern"
|
2010 |
|
2011 |
# @ wplivechat
|
2012 |
-
#: C:\wamp\www\
|
2013 |
msgid "Submit"
|
2014 |
msgstr "Senden"
|
2015 |
|
2016 |
# @ wplivechat
|
2017 |
-
#: C:\wamp\www\
|
2018 |
msgid "Skip"
|
2019 |
msgstr "Überspringen"
|
2020 |
|
2021 |
# @ wplivechat
|
2022 |
-
#: C:\wamp\www\
|
2023 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024 |
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
2025 |
msgstr ""
|
2026 |
-
"Bitte klicken Sie \\'Start Chat\\', um einen Chat mit einem Agenten zu "
|
2027 |
-
"initiieren"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2028 |
|
2029 |
# @ wplivechat
|
2030 |
-
#: C:\wamp\www\
|
2031 |
-
#: C:\wamp\www\
|
2032 |
-
msgid "
|
2033 |
-
msgstr "
|
2034 |
|
2035 |
-
#: C:\wamp\www\
|
2036 |
msgid "New chat received"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: C:\wamp\www\
|
2040 |
msgid ""
|
2041 |
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
2042 |
"chat"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
# @ wplivechat
|
2046 |
-
#: C:\wamp\www\
|
2047 |
msgid ""
|
2048 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
2049 |
"strong>. Please"
|
@@ -2052,7 +1858,17 @@ msgstr ""
|
|
2052 |
"Pro<strong>. Bitte"
|
2053 |
|
2054 |
# @ wplivechat
|
2055 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2056 |
msgid ""
|
2057 |
"You're live chat box on your website has been temporarily disabled until the "
|
2058 |
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
@@ -2063,11 +1879,11 @@ msgstr ""
|
|
2063 |
"stressfreie Nutzererfahrung für sich und Ihre Besucher sicherzustellen."
|
2064 |
|
2065 |
# @ wplivechat
|
2066 |
-
#: C:\wamp\www\
|
2067 |
-
#: C:\wamp\www\
|
2068 |
msgid ""
|
2069 |
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
2070 |
-
"plugins.php'>here</a> or <a href='
|
2071 |
"version/' target='_BLANK'>here</a>."
|
2072 |
msgstr ""
|
2073 |
"Sie können das Plugin aktualisieren <a href='./update-core.php'>hier</a>, <a "
|
@@ -2075,7 +1891,15 @@ msgstr ""
|
|
2075 |
"updated-version/' target='_BLANK'>hier</a>."
|
2076 |
|
2077 |
# @ wplivechat
|
2078 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2079 |
msgid ""
|
2080 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
2081 |
"strong>."
|
@@ -2084,154 +1908,244 @@ msgstr ""
|
|
2084 |
"Pro<strong>."
|
2085 |
|
2086 |
# @ wplivechat
|
2087 |
-
#: C:\wamp\www\
|
2088 |
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
2089 |
msgstr "Bitte auf die aktuellste WP Live Chat Support Pro aktualisieren"
|
2090 |
|
2091 |
# @ wplivechat
|
2092 |
-
#: C:\wamp\www\
|
2093 |
-
#, fuzzy
|
2094 |
msgid "Version 5.0.1"
|
2095 |
msgstr "Version 4.4.5"
|
2096 |
|
2097 |
# @ wplivechat
|
2098 |
-
#: C:\wamp\www\
|
2099 |
-
#, fuzzy
|
2100 |
msgid "to ensure everything is working correctly."
|
2101 |
msgstr "um sicherzustellen, dass alle Funktionen zuverlässig arbeiten"
|
2102 |
|
2103 |
-
#: C:\wamp\www\
|
2104 |
msgid "Congratulations"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
# @ wplivechat
|
2108 |
-
#: C:\wamp\www\
|
2109 |
-
#, fuzzy
|
2110 |
msgid "You are now accepting live chat requests on your site."
|
2111 |
msgstr "Sie haben keine Chat-Anfragen verpasst."
|
2112 |
|
2113 |
-
#: C:\wamp\www\
|
2114 |
msgid "The live chat box has automatically been enabled on your website."
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: C:\wamp\www\
|
2118 |
msgid "Chat notifications will start appearing once visitors send a request."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: C:\wamp\www\
|
2122 |
msgid ""
|
2123 |
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
2124 |
"chat box settings here."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: C:\wamp\www\
|
2128 |
msgid "Experiencing issues?"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: C:\wamp\www\
|
2132 |
msgid "Visit our troubleshooting section."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
# @ wplivechat
|
2136 |
-
#: C:\wamp\www\
|
2137 |
-
#, fuzzy
|
2138 |
msgid "Hide"
|
2139 |
msgstr "Chat verstecken"
|
2140 |
|
2141 |
# @ wplivechat
|
2142 |
-
#: C:\wamp\www\
|
2143 |
-
|
2144 |
-
|
2145 |
-
msgstr "Chat freigegeben"
|
2146 |
-
|
2147 |
-
# @ wplivechat
|
2148 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1831
|
2149 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2150 |
-
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2151 |
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
2152 |
msgstr "Mit dem Pro add-on von WP Live Chat Support können Sie"
|
2153 |
|
2154 |
# @ wplivechat
|
2155 |
-
#: C:\wamp\www\
|
2156 |
-
#: C:\wamp\www\
|
2157 |
msgid "see who's online and initiate chats"
|
2158 |
msgstr "sehen, wer online ist und chats initiieren"
|
2159 |
|
2160 |
# @ wplivechat
|
2161 |
-
#: C:\wamp\www\
|
2162 |
-
#: C:\wamp\www\
|
2163 |
-
#, fuzzy
|
2164 |
msgid "initiate chats"
|
2165 |
msgstr "Live-Chat"
|
2166 |
|
2167 |
# @ wplivechat
|
2168 |
-
#: C:\wamp\www\
|
2169 |
-
#: C:\wamp\www\
|
2170 |
msgid "with your online visitors with the click of a button."
|
2171 |
msgstr "mit Ihren Besuchern über einen Knopfdruck starten"
|
2172 |
|
2173 |
# @ wplivechat
|
2174 |
-
#: C:\wamp\www\
|
2175 |
-
#: C:\wamp\www\
|
2176 |
-
#, fuzzy
|
2177 |
msgid "Buy the Pro add-on now."
|
2178 |
msgstr ""
|
2179 |
"Kaufen Sie das Pro add-on jetzt für nur $19,95. Kostenlose Updates für "
|
2180 |
"IMMER. "
|
2181 |
|
2182 |
# @ wplivechat
|
2183 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2184 |
msgid "Previous"
|
2185 |
msgstr "Vorherig"
|
2186 |
|
2187 |
# @ wplivechat
|
2188 |
-
#: C:\wamp\www\
|
2189 |
msgid "Active"
|
2190 |
msgstr "Aktiv"
|
2191 |
|
2192 |
# @ wplivechat
|
2193 |
-
#: C:\wamp\www\
|
2194 |
msgid "Chat with"
|
2195 |
msgstr "Chatten mit"
|
2196 |
|
2197 |
# @ wplivechat
|
2198 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2199 |
msgid "Add Quick Responses to your Live Chat"
|
2200 |
msgstr "Fügen Sie blitzschnelle Antworten zu Ihrem Live-Chat"
|
2201 |
|
2202 |
# @ wplivechat
|
2203 |
-
#: C:\wamp\www\
|
2204 |
msgid "Pro version only"
|
2205 |
msgstr "Nur Pro-Version"
|
2206 |
|
2207 |
# @ wplivechat
|
2208 |
-
#: C:\wamp\www\
|
2209 |
msgid "type here..."
|
2210 |
msgstr "antworten Sie hier ..."
|
2211 |
|
2212 |
# @ wplivechat
|
2213 |
-
#: C:\wamp\www\
|
2214 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2215 |
msgstr "WP Live Chat Historie"
|
2216 |
|
2217 |
# @ wplivechat
|
2218 |
-
#: C:\wamp\www\
|
2219 |
-
|
2220 |
-
|
2221 |
-
msgstr "Diese Option ist verfügbar in der"
|
2222 |
|
2223 |
# @ wplivechat
|
2224 |
-
#: C:\wamp\www\
|
2225 |
-
msgid "WP Live Chat
|
2226 |
msgstr "WP Live Chat Historie"
|
2227 |
|
2228 |
# @ wplivechat
|
2229 |
-
#: C:\wamp\www\
|
2230 |
-
msgid "WP Live Chat
|
2231 |
-
msgstr "WP Live Chat
|
2232 |
|
2233 |
# @ wplivechat
|
2234 |
-
#: C:\wamp\www\
|
2235 |
msgid ""
|
2236 |
"Please update to the latest version of WP Live Chat Support Pro to start "
|
2237 |
"recording any offline messages."
|
@@ -2240,25 +2154,47 @@ msgstr ""
|
|
2240 |
"Pro um offline Nachrichten angezeigt zu bekommen."
|
2241 |
|
2242 |
# @ wplivechat
|
2243 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2244 |
msgid "Thank You for your feedback!"
|
2245 |
msgstr "Danke für Ihr Feedback!"
|
2246 |
|
2247 |
# @ wplc
|
2248 |
-
#: C:\wamp\www\
|
2249 |
-
#: C:\wamp\www\
|
2250 |
msgid "Thank you for your feedback. We will be in touch soon"
|
2251 |
msgstr "Danke für Ihr Feedback. Wir melden uns bald"
|
2252 |
|
2253 |
# @ wplc
|
2254 |
-
#: C:\wamp\www\
|
2255 |
msgid "There was a problem sending your feedback. Please log your feedback on "
|
2256 |
msgstr ""
|
2257 |
"Es gab ein Problem beim senden Ihres Feedbacks. Bitte tragen Sie Ihr "
|
2258 |
"Feedback ein unter"
|
2259 |
|
2260 |
# @ wplivechat
|
2261 |
-
#: C:\wamp\www\
|
2262 |
msgid ""
|
2263 |
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
2264 |
"issues while using WP Live Chat Support as a result of this. Please get in "
|
@@ -2270,7 +2206,7 @@ msgstr ""
|
|
2270 |
"aktiviert zu bekommen."
|
2271 |
|
2272 |
# @ wplivechat
|
2273 |
-
#: C:\wamp\www\
|
2274 |
msgid ""
|
2275 |
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
2276 |
"using WP Live Chat Support as a result of this. Please contact your host to "
|
@@ -2280,93 +2216,91 @@ msgstr ""
|
|
2280 |
"der Verwendung von WP Live Chat Support als Folge davon auftreten. Bitte "
|
2281 |
"kontaktieren Sie Ihr Hoster um den abgesicherten Modus zu deaktivieren."
|
2282 |
|
2283 |
-
#: C:\wamp\www\
|
2284 |
msgid "Suggested Plugins"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: C:\wamp\www\
|
2288 |
-
#: C:\wamp\www\
|
2289 |
-
#: C:\wamp\www\
|
2290 |
-
#: C:\wamp\www\
|
2291 |
msgid "Sola Support Tickets"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: C:\wamp\www\
|
2295 |
msgid ""
|
2296 |
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
2297 |
"desk quickly and easily with Sola Support Tickets."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: C:\wamp\www\
|
2301 |
-
#: C:\wamp\www\
|
2302 |
msgid "Get this Plugin"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: C:\wamp\www\
|
2306 |
-
#: C:\wamp\www\
|
2307 |
-
#: C:\wamp\www\
|
2308 |
-
#: C:\wamp\www\
|
2309 |
msgid "Nifty Newsletters"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: C:\wamp\www\
|
2313 |
msgid ""
|
2314 |
"Create and send newsletters, automatic post notifications and autoresponders "
|
2315 |
"that are modern and beautiful with Nifty Newsletters."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: C:\wamp\www\
|
2319 |
msgid "Price:"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: C:\wamp\www\
|
2323 |
msgid "All"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: C:\wamp\www\
|
2327 |
msgid "Free"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: C:\wamp\www\
|
2331 |
msgid "Paid"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: C:\wamp\www\
|
2335 |
msgid "For:"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: C:\wamp\www\
|
2339 |
msgid "Both"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
# @ wplivechat
|
2343 |
-
#: C:\wamp\www\
|
2344 |
-
#, fuzzy
|
2345 |
msgid "Free version"
|
2346 |
msgstr "Nur Pro-Version"
|
2347 |
|
2348 |
# @ wplivechat
|
2349 |
-
#: C:\wamp\www\
|
2350 |
-
#, fuzzy
|
2351 |
msgid "Pro version"
|
2352 |
msgstr "Nur Pro-Version"
|
2353 |
|
2354 |
-
#: C:\wamp\www\
|
2355 |
msgid "Already installed"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
# @ wplivechat
|
2359 |
-
#: C:\wamp\www\
|
2360 |
msgid "WP Live Chat Support"
|
2361 |
msgstr "WP Live Chat Support"
|
2362 |
|
2363 |
# @ wplivechat
|
2364 |
-
#: C:\wamp\www\
|
2365 |
msgid "Documentation"
|
2366 |
msgstr "Dokumentation"
|
2367 |
|
2368 |
# @ wplivechat
|
2369 |
-
#: C:\wamp\www\
|
2370 |
msgid ""
|
2371 |
"Getting started? Read through some of these articles to help you along your "
|
2372 |
"way."
|
@@ -2375,53 +2309,52 @@ msgstr ""
|
|
2375 |
"helfen."
|
2376 |
|
2377 |
# @ wplivechat
|
2378 |
-
#: C:\wamp\www\
|
2379 |
msgid "Documentation:"
|
2380 |
msgstr "Dokumentation:"
|
2381 |
|
2382 |
# @ wplivechat
|
2383 |
-
#: C:\wamp\www\
|
2384 |
msgid "Minimum System Requirements"
|
2385 |
msgstr "Mindest-Systemanforderungen"
|
2386 |
|
2387 |
# @ wplivechat
|
2388 |
-
#: C:\wamp\www\
|
2389 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
2390 |
msgstr "Muss ich im Dashboard angemeldet sein um mit Besuchern zu chatten?"
|
2391 |
|
2392 |
# @ wplivechat
|
2393 |
-
#: C:\wamp\www\
|
2394 |
msgid "What are Quick Responses?"
|
2395 |
msgstr "Was sind die schnellen Antworten?"
|
2396 |
|
2397 |
# @ wplivechat
|
2398 |
-
#: C:\wamp\www\
|
2399 |
msgid "Can I use this plugin on my multi-site?"
|
2400 |
msgstr "Kann ich dieses Plugin auf meiner Multi-Website verwenden?"
|
2401 |
|
2402 |
# @ wplivechat
|
2403 |
-
#: C:\wamp\www\
|
2404 |
msgid "How do I disable APC Object Cache?"
|
2405 |
msgstr "Wie deaktiviere ich den APC-Object-Cache?"
|
2406 |
|
2407 |
# @ wplivechat
|
2408 |
-
#: C:\wamp\www\
|
2409 |
msgid "Do you have a mobile app?"
|
2410 |
msgstr "Haben Sie eine mobile App?"
|
2411 |
|
2412 |
# @ wplivechat
|
2413 |
-
#: C:\wamp\www\
|
2414 |
msgid "How do I check for JavaScript errors on my site?"
|
2415 |
msgstr "Wie überprüfe ich auf JavaScript-Fehler auf meiner Website?"
|
2416 |
|
2417 |
# @ wplivechat
|
2418 |
-
#: C:\wamp\www\
|
2419 |
msgid "Troubleshooting"
|
2420 |
msgstr "Fehlerbehebung"
|
2421 |
|
2422 |
# @ wplivechat
|
2423 |
-
#: C:\wamp\www\
|
2424 |
-
#, fuzzy
|
2425 |
msgid ""
|
2426 |
"WP Live Chat Support has a diverse and wide range of features which may, "
|
2427 |
"from time to time, run into conflicts with the thousands of themes and other "
|
@@ -2432,91 +2365,94 @@ msgstr ""
|
|
2432 |
"und andere Plugins auf den Markt auslösen könnten."
|
2433 |
|
2434 |
# @ wplivechat
|
2435 |
-
#: C:\wamp\www\
|
2436 |
msgid "Common issues:"
|
2437 |
msgstr "Häufig auftretende Probleme:"
|
2438 |
|
2439 |
# @ wplivechat
|
2440 |
-
#: C:\wamp\www\
|
2441 |
msgid "The chat box doesnt show up"
|
2442 |
msgstr "Das Chat-Fenster erscheint nicht"
|
2443 |
|
2444 |
# @ wplivechat
|
2445 |
-
#: C:\wamp\www\
|
2446 |
msgid "The chat window disappears when I logout or go offline"
|
2447 |
msgstr "Das Chatfenster verschwindet wenn ich mich auslogge oder offline gehe"
|
2448 |
|
2449 |
# @ wplivechat
|
2450 |
-
#: C:\wamp\www\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2451 |
msgid "Messages only show when I refresh the chat window"
|
2452 |
msgstr ""
|
2453 |
"Nachrichten werden nur angezeigt, wenn ich das Chatfenster aktualisiere"
|
2454 |
|
2455 |
# @ wplivechat
|
2456 |
-
#: C:\wamp\www\
|
2457 |
msgid "I'm not getting any notifications of a new chat"
|
2458 |
msgstr "Ich erhalte keine Benachrichtigungen über einem neuen Chat"
|
2459 |
|
2460 |
# @ wplivechat
|
2461 |
-
#: C:\wamp\www\
|
2462 |
msgid "The chat window never goes offline"
|
2463 |
msgstr "Das Chat-Fenster geht nie offline"
|
2464 |
|
2465 |
# @ wplivechat
|
2466 |
-
#: C:\wamp\www\
|
2467 |
msgid "Still need help? Use one of these links below."
|
2468 |
msgstr "Brauchen Sie noch Hilfe? Verwenden Sie einen dieser Links unten."
|
2469 |
|
2470 |
# @ wplivechat
|
2471 |
-
#: C:\wamp\www\
|
2472 |
-
msgid "Support
|
2473 |
-
msgstr "Support
|
2474 |
|
2475 |
# @ wplivechat
|
2476 |
-
#: C:\wamp\www\
|
2477 |
msgid "Contact us"
|
2478 |
msgstr "Kontaktieren Sie uns"
|
2479 |
|
2480 |
# @ wplivechat
|
2481 |
-
#: C:\wamp\www\
|
2482 |
-
#, fuzzy
|
2483 |
msgid "Initiate Chats"
|
2484 |
msgstr "Live-Chat"
|
2485 |
|
2486 |
# @ wplivechat
|
2487 |
-
#: C:\wamp\www\
|
2488 |
-
#: C:\wamp\www\
|
2489 |
-
#, fuzzy
|
2490 |
msgid "Buy the Pro add-on now (once off payment)."
|
2491 |
msgstr ""
|
2492 |
"Kaufen Sie das Pro add-on jetzt für nur $19,95. Kostenlose Updates für "
|
2493 |
"IMMER. "
|
2494 |
|
2495 |
# @ wplivechat
|
2496 |
-
#: C:\wamp\www\
|
2497 |
-
#, fuzzy
|
2498 |
msgid "Multiple Chats"
|
2499 |
msgstr "Mehrere Agenten"
|
2500 |
|
2501 |
-
#: C:\wamp\www\
|
2502 |
msgid "accept and handle multiple chats."
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: C:\wamp\www\
|
2506 |
msgid "Add unlimited agents"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
# @ wplivechat
|
2510 |
-
#: C:\wamp\www\
|
2511 |
-
#, fuzzy
|
2512 |
msgid " with the Pro add-on of WP Live Chat Support"
|
2513 |
msgstr "Mit dem Pro add-on von WP Live Chat Support können Sie"
|
2514 |
|
2515 |
-
#: C:\wamp\www\
|
2516 |
msgid "(once off payment)."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: C:\wamp\www\
|
2520 |
#, php-format
|
2521 |
msgid ""
|
2522 |
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</"
|
@@ -2525,11 +2461,210 @@ msgid ""
|
|
2525 |
msgstr ""
|
2526 |
|
2527 |
# @ wplivechat
|
2528 |
-
#: C:\wamp\www\
|
2529 |
-
#, fuzzy
|
2530 |
msgid "WP Live Chat Support is a product of"
|
2531 |
msgstr "WP Live Chat Support"
|
2532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2533 |
# @ wplivechat
|
2534 |
#, fuzzy
|
2535 |
#~ msgid "Get it now for only $19.95"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Live Chat Support v4.2.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-03-30 08:44+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-03-30 08:45+0200\n"
|
7 |
"Last-Translator: Zoran Horvat <zoran.horvat@outlook.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
+
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
|
21 |
"live-chat-support\n"
|
22 |
+
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
|
23 |
"live-chat-support-pro\n"
|
24 |
|
25 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:244
|
26 |
msgid "Guest"
|
27 |
msgstr ""
|
28 |
|
29 |
# @ wplivechat
|
30 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:316
|
31 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax_new.php:219
|
32 |
msgid "Admin has closed and ended the chat"
|
33 |
msgstr "Der Administrator hat den Chat geschlossen und beendet"
|
34 |
|
35 |
# @ wplivechat
|
36 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:351
|
37 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax_new.php:243
|
38 |
msgid "There is No Answer. Please Try Again Later"
|
39 |
msgstr "Keine Antwort. Bitte versuchen Sie es später erneut."
|
40 |
|
41 |
# @ wplivechat
|
42 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:54
|
43 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:173
|
44 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:325
|
45 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:282
|
46 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:474
|
47 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2269
|
|
|
48 |
msgid "IP Address not recorded"
|
49 |
msgstr "IP Adresse nicht erfasst"
|
50 |
|
51 |
# @ wplivechat
|
52 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:56
|
53 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:175
|
54 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:327
|
55 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:284
|
56 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:476
|
57 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2271
|
|
|
58 |
msgid "Whois for"
|
59 |
msgstr "Whois für"
|
60 |
|
61 |
# @ wplivechat
|
62 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:61
|
63 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:333
|
64 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:289
|
65 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:431
|
66 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1332
|
67 |
msgid "Accept Chat"
|
68 |
msgstr "Chat annehmen"
|
69 |
|
70 |
# @ wplivechat
|
71 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
|
72 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
|
73 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:291
|
|
|
74 |
msgid "Incoming Chat"
|
75 |
msgstr "Chat beginnen"
|
76 |
|
77 |
# @ wplivechat
|
78 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
|
79 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
|
80 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:291
|
|
|
81 |
msgid "You have an incoming chat."
|
82 |
msgstr "Sie haben einen eingehenden Chat."
|
83 |
|
84 |
# @ wplivechat
|
85 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:67
|
86 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:436
|
|
|
87 |
msgid "Open Chat"
|
88 |
msgstr "Chat-Fenster öffnen"
|
89 |
|
90 |
# @ wplivechat
|
91 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:69
|
92 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:347
|
93 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:297
|
|
|
94 |
msgid "Chat Active"
|
95 |
msgstr "Aktiver Chat"
|
96 |
|
97 |
# @ wplivechat
|
98 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:69
|
99 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:347
|
100 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:297
|
|
|
101 |
msgid "This chat is active"
|
102 |
msgstr "Dieser Chat ist aktiv"
|
103 |
|
104 |
# @ wplivechat
|
105 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:74
|
106 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:160
|
107 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1921
|
108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1509
|
109 |
msgid "Initiate Chat"
|
110 |
msgstr "Chat starten"
|
111 |
|
112 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:76
|
113 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:162
|
114 |
msgid "You must be a chat agent to initiate chats"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:99
|
118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:499
|
119 |
msgid "New"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:101
|
123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:501
|
124 |
msgid "Returning"
|
125 |
msgstr ""
|
126 |
|
127 |
# @ wplivechat
|
128 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:143
|
129 |
msgid "Visitors on site"
|
130 |
msgstr "Besucher auf der Seite"
|
131 |
|
132 |
# @ wplivechat
|
133 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:207
|
134 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:377
|
135 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:320
|
136 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2300
|
|
|
137 |
msgid "Site Info"
|
138 |
msgstr "Seiteninformation"
|
139 |
|
140 |
# @ wplivechat
|
141 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:209
|
142 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:379
|
143 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:322
|
144 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2302
|
|
|
145 |
msgid "Chat initiated on:"
|
146 |
msgstr "Chat-Benachrichtigungen"
|
147 |
|
148 |
# @ wplivechat
|
149 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
150 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:383
|
151 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:326
|
152 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2306
|
|
|
153 |
msgid "Advanced Info"
|
154 |
msgstr "Erweiterte Information"
|
155 |
|
156 |
# @ wplivechat
|
157 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
158 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:385
|
159 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:328
|
160 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2308
|
|
|
161 |
msgid "Browser:"
|
162 |
msgstr "Browser:"
|
163 |
|
164 |
# @ wplivechat
|
165 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:216
|
166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:386
|
167 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:329
|
168 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2309
|
|
|
169 |
msgid "IP Address:"
|
170 |
msgstr "IP Adresse:"
|
171 |
|
172 |
# @ wplivechat
|
173 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:259
|
|
|
174 |
msgid "No visitors on-line at the moment"
|
175 |
msgstr "Es sind derzeit keine Chat-Sitzungen verfügbar"
|
176 |
|
177 |
# @ wplivechat
|
178 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:302
|
179 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:265
|
180 |
msgid "No chat sessions available at the moment"
|
181 |
msgstr "Es sind derzeit keine Chat-Sitzungen verfügbar"
|
182 |
|
183 |
# @ wplivechat
|
184 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:304
|
185 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:267
|
186 |
msgid "Active Chats"
|
187 |
msgstr "Live-Chat"
|
188 |
|
189 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:339
|
190 |
msgid "You must be a chat agent to answer chats"
|
191 |
msgstr ""
|
192 |
|
193 |
# @ wplivechat
|
194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
195 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:295
|
196 |
msgid "Open Chat Window"
|
197 |
msgstr "Chat-Fenster öffnen"
|
198 |
|
199 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:349
|
200 |
msgid "Chat has been answered by another agent"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:350
|
204 |
msgid "Chat answered by another agent"
|
205 |
msgstr ""
|
206 |
|
207 |
# @ wplivechat
|
208 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:409
|
209 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1179
|
210 |
msgid "WP Live Chat Support - Offline Message from "
|
211 |
msgstr "WP Live Chat Support - Offline-Nachricht von"
|
212 |
|
213 |
# @ wplivechat
|
214 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:410
|
215 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:969
|
216 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1180
|
217 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1550
|
218 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:192
|
219 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:391
|
220 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:227
|
221 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1215
|
222 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1368
|
223 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2797
|
224 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2907
|
225 |
msgid "Name"
|
226 |
msgstr "Name"
|
227 |
|
228 |
# @ wplivechat
|
229 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:410
|
230 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:970
|
231 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1181
|
232 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1551
|
233 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:193
|
234 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:392
|
235 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1216
|
236 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1369
|
237 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2798
|
238 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2908
|
239 |
msgid "Email"
|
240 |
msgstr "E-Mail"
|
241 |
|
242 |
# @ wplivechat
|
243 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:410
|
244 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:971
|
245 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1546
|
246 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1182
|
247 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1370
|
248 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2909
|
249 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3803
|
250 |
msgid "Message"
|
251 |
msgstr "Offline-Nachrichten"
|
252 |
|
253 |
# @ wplivechat
|
254 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:410
|
255 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1183
|
256 |
msgid "Via WP Live Chat Support"
|
257 |
msgstr "WP Live Chat Support"
|
258 |
|
259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:480
|
260 |
msgid "Alert: Someone wants to chat with you on "
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:481
|
264 |
msgid "Someone wants to chat with you on your website"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:481
|
268 |
msgid "Log in"
|
269 |
msgstr ""
|
270 |
|
271 |
# @ wplivechat
|
272 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:748
|
273 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:764
|
274 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:779
|
275 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2271
|
276 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2287
|
277 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2302
|
278 |
msgid "Chat Agent"
|
279 |
msgstr "Aktiver Chat"
|
280 |
|
281 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:753
|
282 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:769
|
283 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2276
|
284 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2292
|
285 |
msgid "Make this user a chat agent"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:783
|
289 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2306
|
290 |
msgid "Your user role does not allow you to make yourself a chat agent."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:784
|
294 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2307
|
295 |
msgid "Please contact the administrator of this website to change this."
|
296 |
msgstr ""
|
297 |
|
298 |
# @ wplivechat
|
299 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:869
|
300 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2514
|
301 |
msgid "Chat Agent Online"
|
302 |
msgstr "Aktiver Chat"
|
303 |
|
304 |
# @ wplivechat
|
305 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:871
|
306 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:876
|
307 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2516
|
308 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2521
|
309 |
msgid "Chat Agents Online"
|
310 |
msgstr "Aktiver Chat"
|
311 |
|
312 |
# @ wplivechat
|
313 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:968
|
314 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1549
|
315 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2796
|
316 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2906
|
317 |
msgid "Date"
|
318 |
msgstr "Datum"
|
319 |
|
320 |
# @ wplivechat
|
321 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:985
|
322 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2919
|
323 |
msgid "You have not received any offline messages."
|
324 |
msgstr "Sie haben keine Chat-Anfragen verpasst."
|
325 |
|
326 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1410
|
327 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:788
|
328 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2858
|
329 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3478
|
330 |
msgid "Administrator"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1411
|
334 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:794
|
335 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2864
|
336 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3487
|
337 |
msgid "Editor"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1412
|
341 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:800
|
342 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2870
|
343 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3496
|
344 |
msgid "Author"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1413
|
348 |
msgid "Contributor"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1414
|
352 |
msgid "Subscriber"
|
353 |
msgstr ""
|
354 |
|
355 |
# @ wplivechat
|
356 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1544
|
357 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3801
|
358 |
msgid "Chat ID"
|
359 |
msgstr "Chat-Box"
|
360 |
|
361 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1545
|
362 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3802
|
363 |
msgid "From"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1547
|
367 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3804
|
368 |
msgid "Timestamp"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1548
|
372 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3805
|
373 |
msgid "Origin"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1560
|
377 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3810
|
378 |
msgid "user"
|
379 |
msgstr ""
|
380 |
|
381 |
# @ wplivechat
|
382 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1562
|
383 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3812
|
384 |
msgid "agent"
|
385 |
msgstr "Agenten"
|
386 |
|
387 |
# @ wplivechat
|
388 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:48
|
389 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
390 |
msgid "WP Live Chat Support Settings"
|
391 |
msgstr "WP Live Chat Support Einstellungen"
|
392 |
|
393 |
# @ wplivechat
|
394 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
|
395 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1955
|
396 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1970
|
|
|
397 |
msgid "Dear Pro User"
|
398 |
msgstr "Lieber Pro Benutzer,"
|
399 |
|
400 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:72
|
401 |
msgid ""
|
402 |
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
403 |
"to do this will result in you no longer receiving updates for this plugin."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
407 |
msgid "You can obtain a copy of your API key "
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
411 |
msgid "here"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
415 |
msgid ""
|
416 |
"An account has been created for you while purchasing the plugin. If you have "
|
417 |
"lost your password, please reset it "
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:74
|
421 |
msgid ""
|
422 |
"If you feel you are getting this message in error, please try refreshing the "
|
423 |
"page."
|
424 |
msgstr ""
|
425 |
|
426 |
# @ wplivechat
|
427 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
|
428 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
429 |
msgid "General Settings"
|
430 |
msgstr "Generelle Einstellungen"
|
431 |
|
432 |
# @ wplivechat
|
433 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
|
434 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:58
|
435 |
msgid "Chat Box"
|
436 |
msgstr "Chat-Box"
|
437 |
|
438 |
# @ wplivechat
|
439 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
440 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
|
441 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:63
|
442 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:334
|
443 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:632
|
444 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:635
|
445 |
msgid "Offline Messages"
|
446 |
msgstr "Offline-Nachrichten"
|
447 |
|
448 |
# @ wplivechat
|
449 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:86
|
450 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:485
|
451 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
452 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:475
|
453 |
msgid "Styling"
|
454 |
msgstr "Styling"
|
455 |
|
456 |
# @ wplivechat
|
457 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
|
|
458 |
msgid "Chat Agents"
|
459 |
msgstr "Agenten"
|
460 |
|
461 |
# @ wplivechat
|
462 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
463 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:78
|
464 |
msgid "Blocked Visitors"
|
465 |
msgstr "Blockierte Besucher"
|
466 |
|
467 |
# @ wplivechat
|
468 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
|
469 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:830
|
470 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
|
|
471 |
msgid "Chat Experience Ratings"
|
472 |
msgstr "Chat-Fenster Einstellungen"
|
473 |
|
474 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
475 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1449
|
476 |
msgid "Encryption"
|
477 |
msgstr ""
|
478 |
|
479 |
# @ wplivechat
|
480 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:93
|
481 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:91
|
482 |
msgid "Main Settings"
|
483 |
msgstr "Haupeinstellungen"
|
484 |
|
485 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
|
486 |
msgid "Find out more."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
|
490 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3696
|
491 |
msgid "Cloud Server"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
|
495 |
msgid "Use our server to host your chat server."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:107
|
499 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3609
|
500 |
msgid "API Key"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
504 |
msgid "This API key is "
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:115
|
508 |
msgid "valid"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
512 |
msgid "invalid"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:122
|
516 |
msgid ""
|
517 |
"A valid API key means that you will be able to get the latest version of the "
|
518 |
"plugin as and when it is released, as well as get access to support should "
|
520 |
msgstr ""
|
521 |
|
522 |
# @ wplivechat
|
523 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
|
524 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:94
|
525 |
msgid "Chat enabled"
|
526 |
msgstr "Chat freigegeben"
|
527 |
|
528 |
# @ wplivechat
|
529 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:135
|
530 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:97
|
531 |
msgid "Yes"
|
532 |
msgstr "Ja"
|
533 |
|
534 |
# @ wplivechat
|
535 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
|
536 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:98
|
537 |
msgid "No"
|
538 |
msgstr "Nein"
|
539 |
|
540 |
# @ wplivechat
|
541 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
542 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1285
|
543 |
msgid "Choose when I want to be online"
|
544 |
msgstr "Auswählen wann ich online sein werde"
|
545 |
|
546 |
# @ wplivechat
|
547 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
548 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1285
|
|
|
549 |
msgid ""
|
550 |
"Checking this will allow you to change your status to Online or Offline on "
|
551 |
"the Live Chat page."
|
554 |
"der Seite „Live Chat“ setzen."
|
555 |
|
556 |
# @ wplivechat
|
557 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
558 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:105
|
559 |
msgid "Hide Chat"
|
560 |
msgstr "Chat verstecken"
|
561 |
|
562 |
# @ wplivechat
|
563 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
564 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:105
|
565 |
msgid "Hides chat for 24hrs when user clicks X"
|
566 |
msgstr "Chat für 24 Stunden verstecken, wenn der Benutzer auf [X] klickt"
|
567 |
|
568 |
# @ wplivechat
|
569 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
570 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:114
|
571 |
msgid "Require Name And Email"
|
572 |
msgstr "Name und E-Mail benötigt"
|
573 |
|
574 |
# @ wplivechat
|
575 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
576 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:114
|
577 |
msgid ""
|
578 |
"Users will have to enter their Name and Email Address when starting a chat"
|
579 |
msgstr ""
|
581 |
"eingeben"
|
582 |
|
583 |
# @ wplivechat
|
584 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
585 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:122
|
586 |
msgid "Input Field Replacement Text"
|
587 |
msgstr "Eingabefeld Ersetzungstext"
|
588 |
|
589 |
# @ wplivechat
|
590 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
591 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:122
|
592 |
msgid "This is the text that will show in place of the Name And Email fields"
|
593 |
msgstr ""
|
594 |
"Dies ist der Text, der an Stelle des Namens und des E-Mail-Feldes angezeigt "
|
595 |
"wird"
|
596 |
|
597 |
# @ wplivechat
|
598 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
599 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:130
|
600 |
msgid "Use Logged In User Details"
|
601 |
msgstr "Verwenden der Benutzer-Details des angemeldeten Nutzers"
|
602 |
|
603 |
# @ wplivechat
|
604 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
605 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:130
|
606 |
msgid ""
|
607 |
"A user's Name and Email Address will be used by default if they are logged "
|
608 |
"in."
|
611 |
"angemeldet sind."
|
612 |
|
613 |
# @ wplivechat
|
614 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
615 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:138
|
616 |
msgid "Enable On Mobile Devices"
|
617 |
msgstr "Aktiviert auf mobilen Geräten:"
|
618 |
|
619 |
# @ wplivechat
|
620 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
621 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:138
|
622 |
msgid ""
|
623 |
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
624 |
"devices. (Smartphones and Tablets)"
|
627 |
"wird. (Smartphones und Tablets)"
|
628 |
|
629 |
# @ wplivechat
|
630 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
631 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:146
|
632 |
msgid "Record a visitor's IP Address"
|
633 |
msgstr "IP Adresse des Besuchers aufzeichnen"
|
634 |
|
635 |
# @ wplivechat
|
636 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
637 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:146
|
638 |
msgid "Disable this to enable anonymity for your visitors"
|
639 |
msgstr ""
|
640 |
"Deaktivieren Sie diese Einstellung, um die Anonymität für Ihre Besucher zu "
|
641 |
"gewährleisten"
|
642 |
|
643 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
644 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
|
645 |
msgid "Play a sound when a new message is received"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
649 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
|
650 |
msgid ""
|
651 |
"Disable this to mute the sound that is played when a new chat message is "
|
652 |
"received"
|
653 |
msgstr ""
|
654 |
|
655 |
# @ wplivechat
|
656 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
657 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1727
|
658 |
msgid "Include chat window on the following pages:"
|
659 |
msgstr "Chat-Fenster auf den folgenden Seiten hinzufügen:"
|
660 |
|
661 |
# @ wplivechat
|
662 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
663 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1727
|
664 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:164
|
665 |
msgid ""
|
666 |
"Show the chat window on the following pages. Leave blank to show on all. "
|
667 |
"(Use comma-separated Page ID's)"
|
671 |
"Seiten ID´s)"
|
672 |
|
673 |
# @ wplivechat
|
674 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
675 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1735
|
676 |
msgid "Exclude chat window on the following pages:"
|
677 |
msgstr "Das Chat-Fenster auf den folgenden Seiten ausschließen:"
|
678 |
|
679 |
# @ wplivechat
|
680 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
681 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1735
|
682 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:179
|
683 |
msgid ""
|
684 |
"Do not show the chat window on the following pages. Leave blank to show on "
|
685 |
"all. (Use comma-separated Page ID's)"
|
688 |
"Leer lassen, um es auf allen Seiten zu zeigen. (Verwenden Sie Komma "
|
689 |
"getrennte Seiten ID´s)"
|
690 |
|
691 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
692 |
msgid "Allow any user to make themselves a chat agent"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
696 |
msgid ""
|
697 |
"Checking this will allow any of your users to make themselves a chat agent "
|
698 |
"when editing their profile."
|
699 |
msgstr ""
|
700 |
|
701 |
# @ wplivechat
|
702 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:255
|
703 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
|
704 |
msgid "Chat Window Settings"
|
705 |
msgstr "Chat-Fenster Einstellungen"
|
706 |
|
707 |
# @ wplivechat
|
708 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:258
|
709 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
|
710 |
msgid "Chat box alignment"
|
711 |
msgstr "Chat-Box Ausrichtung"
|
712 |
|
713 |
# @ wplivechat
|
714 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:263
|
715 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
716 |
msgid "Bottom left"
|
717 |
msgstr "Unten links"
|
718 |
|
719 |
# @ wplivechat
|
720 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
721 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
|
722 |
msgid "Bottom right"
|
723 |
msgstr "Unten rechts"
|
724 |
|
725 |
# @ wplivechat
|
726 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:269
|
727 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
|
728 |
msgid "Left"
|
729 |
msgstr "Links"
|
730 |
|
731 |
# @ wplivechat
|
732 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:272
|
733 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
|
734 |
msgid "Right"
|
735 |
msgstr "Rechts"
|
736 |
|
737 |
# @ wplivechat
|
738 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
739 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:215
|
740 |
msgid "Auto Pop-up"
|
741 |
msgstr "Auto Pop-up:"
|
742 |
|
743 |
# @ wplivechat
|
744 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
745 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:215
|
746 |
msgid ""
|
747 |
"Expand the chat box automatically (prompts the user to enter their name and "
|
748 |
"email address)."
|
751 |
"seinen Namen und E-Mail-Adresse einzugeben)."
|
752 |
|
753 |
# @ wplivechat
|
754 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:289
|
755 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:808
|
756 |
msgid "Name "
|
757 |
msgstr "Name"
|
758 |
|
759 |
# @ wplivechat
|
760 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:303
|
761 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:822
|
762 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:243
|
763 |
msgid "Picture"
|
764 |
msgstr "Bild"
|
765 |
|
766 |
# @ wplivechat
|
767 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:311
|
768 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:830
|
769 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:246
|
770 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:262
|
771 |
msgid "Upload Image"
|
772 |
msgstr "Bild hochladen"
|
773 |
|
774 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:313
|
775 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:832
|
776 |
msgid "Remove Image"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:314
|
780 |
msgid "Recomended Size 40px x 40px"
|
781 |
msgstr ""
|
782 |
|
783 |
# @ wplivechat
|
784 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:320
|
785 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:839
|
786 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:259
|
787 |
msgid "Logo"
|
788 |
msgstr "Logo"
|
789 |
|
790 |
# @ wplivechat
|
791 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:328
|
792 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:847
|
793 |
msgid "Upload Logo"
|
794 |
msgstr "Bild hochladen"
|
795 |
|
796 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:330
|
797 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:849
|
798 |
msgid "Remove Logo"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:331
|
802 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:850
|
803 |
msgid "Recomended Size 250px x 40px"
|
804 |
msgstr ""
|
805 |
|
806 |
# @ wplivechat
|
807 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
808 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
|
809 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:275
|
810 |
msgid "Chat delay (seconds)"
|
811 |
msgstr "Chat-Verzögerung (Sekunden)"
|
812 |
|
813 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
814 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
|
815 |
msgid "How long it takes for your chat window to pop up"
|
816 |
msgstr ""
|
817 |
|
818 |
# @ wplivechat
|
819 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
820 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:865
|
821 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:291
|
822 |
msgid "Chat notifications"
|
823 |
msgstr "Chat-Benachrichtigungen"
|
824 |
|
825 |
# @ wplivechat
|
826 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
827 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:865
|
828 |
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
829 |
msgstr "Verständige Sie mich per E-Mail sobald jemand chatten möchte"
|
830 |
|
831 |
# @ wplivechat
|
832 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
833 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:309
|
834 |
msgid "Display name and avatar in chat"
|
835 |
msgstr "Anzeige des Namens und des Avatars im Chat:"
|
836 |
|
837 |
# @ wplivechat
|
838 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
839 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:309
|
840 |
msgid "Display the agent and user name above each message in the chat window."
|
841 |
msgstr ""
|
842 |
"Zeigen Sie im Chat-Fenster den Agenten und den Benutzernamen über jeder "
|
843 |
"Nachricht."
|
844 |
|
845 |
# @ wplivechat
|
846 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
847 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:319
|
848 |
msgid "Only show the chat window to users that are logged in"
|
849 |
msgstr "Das Chat-Fenster wird nur Benutzern angezeigt, die angemeldet sind:"
|
850 |
|
851 |
# @ wplivechat
|
852 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
853 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:319
|
854 |
msgid ""
|
855 |
"By checking this, only users that are logged in will be able to chat with "
|
856 |
"you."
|
859 |
"der Lage sein, mit Ihnen zu chatten."
|
860 |
|
861 |
# @ wplivechat
|
862 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
863 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
|
864 |
msgid "Do not allow users to send offline messages"
|
865 |
msgstr "Benutzer können keine Offline-Nachrichten senden:"
|
866 |
|
867 |
# @ wplivechat
|
868 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
869 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
|
870 |
msgid ""
|
871 |
"The chat window will be hidden when it is offline. Users will not be able to "
|
872 |
"send offline messages to you"
|
875 |
"werden nicht in der Lage sein, Offline-Nachrichten an Sie zu schicken"
|
876 |
|
877 |
# @ wplivechat
|
878 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
879 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
880 |
msgid "Email Address"
|
881 |
msgstr "E-Mail Adresse"
|
882 |
|
883 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
884 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
885 |
msgid ""
|
886 |
"Email address where offline messages are delivered to. Use comma separated "
|
887 |
"email addresses to send to more than one email address"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:412
|
891 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
892 |
msgid "Sending Method"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:413
|
896 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:363
|
897 |
msgid "WP Mail"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:414
|
901 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:364
|
902 |
msgid "PHP Mailer"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:430
|
906 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
|
907 |
msgid "Host"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:438
|
911 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:388
|
912 |
msgid "Port"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:446
|
916 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:396
|
917 |
msgid "Username"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:454
|
921 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:404
|
922 |
msgid "Password"
|
923 |
msgstr ""
|
924 |
|
925 |
# @ wplivechat
|
926 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:463
|
927 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:413
|
928 |
msgid "Offline Chat Box Title"
|
929 |
msgstr "Offline-Text"
|
930 |
|
931 |
# @ wplivechat
|
932 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:471
|
933 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:421
|
934 |
msgid "Offline Text Fields"
|
935 |
msgstr "Offline-Text"
|
936 |
|
937 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:504
|
938 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:480
|
939 |
msgid "Choose a theme"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
943 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:512
|
944 |
msgid "Theme 1"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:515
|
948 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
949 |
msgid "Theme 2"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:521
|
953 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:524
|
954 |
msgid "Theme 3"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:527
|
958 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:530
|
959 |
msgid "Theme 4"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:533
|
963 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:536
|
964 |
msgid "Theme 5"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:539
|
968 |
msgid "Theme 6"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:542
|
972 |
msgid "Custom. Enter Colour Values Below"
|
973 |
msgstr ""
|
974 |
|
975 |
# @ wplivechat
|
976 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
|
|
977 |
msgid "Chat box fill color"
|
978 |
msgstr "Chat-Box Füllfarbe"
|
979 |
|
980 |
# @ wplivechat
|
981 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:574
|
|
|
982 |
msgid "Chat box font color"
|
983 |
msgstr "Chat-Box Textfarbe"
|
984 |
|
985 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:581
|
986 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:611
|
987 |
msgid "I'm using a localization plugin"
|
988 |
msgstr ""
|
989 |
|
990 |
# @ wplivechat
|
991 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:584
|
|
|
992 |
msgid "documentation"
|
993 |
msgstr "Dokumentation"
|
994 |
|
995 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:589
|
996 |
msgid ""
|
997 |
"You will only be able to edit the strings shown in the chat window of the "
|
998 |
"code now. <br/> This has been done to accommodate as many localization "
|
1001 |
msgstr ""
|
1002 |
|
1003 |
# @ wplivechat
|
1004 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:594
|
1005 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:619
|
1006 |
msgid "First Section Text"
|
1007 |
msgstr "Text erste Sektion"
|
1008 |
|
1009 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:601
|
1010 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:626
|
1011 |
msgid "Intro Text"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
# @ wplivechat
|
1015 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:607
|
1016 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:632
|
1017 |
msgid "Second Section Text"
|
1018 |
msgstr "Text zweite Sektion"
|
1019 |
|
1020 |
# @ wplivechat
|
1021 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:614
|
1022 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:639
|
1023 |
msgid "Reactivate Chat Section Text"
|
1024 |
msgstr "Text für reaktivierten Chat"
|
1025 |
|
1026 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:622
|
1027 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:647
|
1028 |
msgid "User chat welcome"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
# @ wplivechat
|
1032 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:628
|
1033 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:653
|
1034 |
msgid "Other text"
|
1035 |
msgstr "Weitere"
|
1036 |
|
1037 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:630
|
1038 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:655
|
1039 |
msgid "This text is shown above the user chat input field"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
# @ wplivechat
|
1043 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:662
|
|
|
1044 |
msgid ""
|
1045 |
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
1046 |
"update your plugin to allow for animations to function"
|
1049 |
"Pro<strong>."
|
1050 |
|
1051 |
# @ sola_t
|
1052 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:666
|
1053 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:683
|
1054 |
msgid "Choose an animation"
|
1055 |
msgstr "Wählen Sie eine Animation (nur Pro)"
|
1056 |
|
1057 |
# @ wplivechat
|
1058 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:674
|
1059 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:691
|
1060 |
msgid "Slide Up"
|
1061 |
msgstr "Hochsliden"
|
1062 |
|
1063 |
# @ wplivechat
|
1064 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:680
|
1065 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:697
|
1066 |
msgid "Slide From The Side"
|
1067 |
msgstr "Slide von der Seite"
|
1068 |
|
1069 |
# @ wplivechat
|
1070 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:686
|
1071 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:703
|
1072 |
msgid "Fade In"
|
1073 |
msgstr "Einblenden"
|
1074 |
|
1075 |
# @ wplivechat
|
1076 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:692
|
1077 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:709
|
1078 |
msgid "No Animation"
|
1079 |
msgstr "Keine Animation"
|
1080 |
|
1081 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:750
|
1082 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2820
|
1083 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3447
|
1084 |
msgid "Current Users that are Chat Agents"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:761
|
1088 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2831
|
1089 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3457
|
1090 |
msgid "Online"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:771
|
1094 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1095 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2841
|
1096 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1936
|
1097 |
msgid "Remove"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:780
|
1101 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2850
|
1102 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3507
|
1103 |
msgid "Add New Agent"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
# @ wplivechat
|
1107 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:782
|
1108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:707
|
1109 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2852
|
1110 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2334
|
1111 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3472
|
1112 |
msgid "Select"
|
1113 |
msgstr "Auswählen"
|
1114 |
|
1115 |
# @ wplivechat
|
1116 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:804
|
1117 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2874
|
1118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3508
|
1119 |
msgid "Add Agent"
|
1120 |
msgstr "Agenten"
|
1121 |
|
1122 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:810
|
1123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2880
|
1124 |
msgid ""
|
1125 |
"Should you wish to add a user that has a role less than 'Author', please go "
|
1126 |
"to the <a href='./users.php'>Users</a> page, select the relevant user, click "
|
1128 |
"checkbox."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:811
|
1132 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2881
|
1133 |
msgid "If there are no chat agents online, the chat will show as offline"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
# @ wplivechat
|
1137 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:815
|
1138 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:736
|
1139 |
msgid "Blocked Visitors - Based on IP Address"
|
1140 |
msgstr "Blockierte Besucher - basierend auf der IP-Adresse"
|
1141 |
|
1142 |
# @ wplivechat
|
1143 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:816
|
1144 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:737
|
1145 |
msgid "Enter each IP Address you would like to block on a new line"
|
1146 |
msgstr ""
|
1147 |
"Geben Sie jede IP-Adresse ein, die Sie in einer neuen Zeile blockieren "
|
1148 |
"möchten"
|
1149 |
|
1150 |
# @ wplivechat
|
1151 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
|
1152 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:748
|
1153 |
msgid ""
|
1154 |
"Blocking a user's IP Address here will hide the chat window from them, "
|
1155 |
"preventing them from chatting with you. Each IP Address must be on a new line"
|
1159 |
"Adresse muss in einer neuen Zeile sein."
|
1160 |
|
1161 |
# @ wplivechat
|
1162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
|
|
1163 |
msgid ""
|
1164 |
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
1165 |
msgstr "Installation der WP Live Chat Support Pro Add-ons"
|
1166 |
|
1167 |
# @ wplivechat
|
1168 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:840
|
1169 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1413
|
|
|
1170 |
msgid "Chat Encryption"
|
1171 |
msgstr "Chat-Benachrichtigungen"
|
1172 |
|
1173 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1416
|
1175 |
msgid "Enable Encryption"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1179 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1416
|
1180 |
msgid ""
|
1181 |
"All messages will be encrypted when being sent to and from the user and "
|
1182 |
"agent."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:851
|
1186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1426
|
1187 |
msgid ""
|
1188 |
"Once enabled, all messages sent will be encrypted. This cannot be undone."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
# @ wplivechat
|
1192 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:857
|
1193 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:754
|
1194 |
msgid "Save Settings"
|
1195 |
msgstr "Einstellungen speichern"
|
1196 |
|
1197 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:442
|
1198 |
+
#, php-format
|
1199 |
+
msgid ""
|
1200 |
+
"WP Live Chat Support Pro <strong>requires WP Live Chat Support version 6+</"
|
1201 |
+
"strong> (basic version). Please <strong><a href=\"%1$s\">update the plugin</"
|
1202 |
+
"a></strong> in order for the plugin to continue working correctly."
|
|
|
|
|
|
|
|
|
1203 |
msgstr ""
|
|
|
|
|
1204 |
|
1205 |
# @ wplivechat
|
1206 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:528
|
1207 |
+
msgid "WP Live Chat Support Pro"
|
1208 |
+
msgstr "WP Live Chat Support"
|
|
|
1209 |
|
1210 |
# @ wplivechat
|
1211 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:619
|
1212 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:630
|
1213 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2563
|
1214 |
+
msgid "Quick Responses"
|
1215 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
1216 |
|
1217 |
# @ wplivechat
|
1218 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:620
|
1219 |
+
msgid "Quick Response"
|
1220 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1221 |
|
1222 |
# @ wplivechat
|
1223 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:621
|
1224 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:624
|
1225 |
+
msgid "New Quick Response"
|
1226 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
|
|
|
|
|
|
|
|
1227 |
|
1228 |
# @ wplivechat
|
1229 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:622
|
1230 |
+
msgid "Add New Quick Response"
|
1231 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
|
|
|
|
|
|
1232 |
|
1233 |
+
# @ wplivechat
|
1234 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:623
|
1235 |
+
msgid "Edit Quick Response"
|
1236 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
1237 |
|
1238 |
+
# @ wplivechat
|
1239 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:625
|
1240 |
+
msgid "All Quick Responses"
|
1241 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
1242 |
|
1243 |
# @ wplivechat
|
1244 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:626
|
1245 |
+
msgid "View Quick Responses"
|
1246 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
|
|
|
|
|
|
|
|
1247 |
|
1248 |
# @ wplivechat
|
1249 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:627
|
1250 |
+
msgid "Search Quick Responses"
|
1251 |
+
msgstr "Was sind die schnellen Antworten?"
|
|
|
|
|
|
|
|
|
|
|
1252 |
|
1253 |
# @ wplivechat
|
1254 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:628
|
1255 |
+
msgid "No Quick Responses found"
|
1256 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
|
|
|
|
1257 |
|
1258 |
# @ wplivechat
|
1259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:629
|
1260 |
+
msgid "No Quick Responses found in the Trash"
|
1261 |
+
msgstr "Fügen Sie blitzschnelle Antworten zu Ihrem Live-Chat"
|
|
|
|
|
|
|
|
|
|
|
1262 |
|
1263 |
# @ wplivechat
|
1264 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:634
|
1265 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
1266 |
+
msgstr "Fügen Sie blitzschnelle Antworten zu Ihrem Live-Chat"
|
|
|
|
|
|
|
1267 |
|
1268 |
# @ wplivechat
|
1269 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:700
|
1270 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:704
|
1271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2334
|
1272 |
+
msgid "Assign Quick Response"
|
1273 |
+
msgstr "Blitzschnelle Antwort zuweisen"
|
|
|
|
|
|
|
1274 |
|
1275 |
# @ wplivechat
|
1276 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:713
|
1277 |
+
msgid "What is this?"
|
1278 |
+
msgstr "Chatten Sie mit uns!"
|
|
|
|
|
|
|
1279 |
|
1280 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:750
|
1281 |
+
#, php-format
|
1282 |
+
msgid "Incoming chat from %s (%s) on %s"
|
|
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:756
|
1286 |
+
#, php-format
|
1287 |
+
msgid "%s (%s) wants to chat with you. <br /><br />Log in: %s"
|
|
|
|
|
|
|
|
|
|
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:801
|
1291 |
+
msgid "Advanced Chat Box Control"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:833
|
1295 |
+
msgid "Recomended Size 60px x 60px"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:894
|
1299 |
+
msgid "Admin"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
# @ wplivechat
|
1303 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1230
|
|
|
1304 |
msgid "You are currently accepting chats"
|
1305 |
msgstr "Sie haben einen eingehenden Chat."
|
1306 |
|
1307 |
# @ wplivechat
|
1308 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1231
|
|
|
1309 |
msgid "You are not accepting chats"
|
1310 |
msgstr "Sie haben einen eingehenden Chat."
|
1311 |
|
1312 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1425
|
1313 |
+
msgid ""
|
1314 |
+
"Please note: Chat messages will only be encrypted and decreypted if you have "
|
1315 |
+
"inserted your WP Live Chat Support Pro API Key on the <a href=\"admin.php?"
|
1316 |
+
"page=wplivechat-menu-api-keys-page\">API Keys page</a>."
|
1317 |
+
msgstr ""
|
1318 |
|
1319 |
# @ wplivechat
|
1320 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1711
|
1321 |
+
msgid "Exclude chat from 'Home' page:"
|
1322 |
+
msgstr "Das Chat-Fenster auf den folgenden Seiten ausschließen:"
|
|
|
1323 |
|
1324 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1711
|
1325 |
+
msgid ""
|
1326 |
+
"Leaving this unchecked will allow the chat window to display on your home "
|
1327 |
+
"page"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
# @ wplivechat
|
1331 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1719
|
1332 |
+
msgid "Exclude chat from 'Archive' pages:"
|
1333 |
+
msgstr "Das Chat-Fenster auf den folgenden Seiten ausschließen:"
|
|
|
|
|
|
|
1334 |
|
1335 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1719
|
1336 |
+
msgid ""
|
1337 |
+
"Leaving this unchecked will allow the chat window to display on your archive "
|
1338 |
+
"pages"
|
1339 |
+
msgstr ""
|
1340 |
|
1341 |
# @ wplivechat
|
1342 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2004
|
1343 |
+
msgid "Attempting to open the chat window... Please be patient."
|
1344 |
+
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
|
|
1345 |
|
1346 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2062
|
1347 |
+
msgid ""
|
1348 |
+
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1349 |
+
"chat to visitors"
|
1350 |
+
msgstr ""
|
1351 |
|
1352 |
# @ wplivechat
|
1353 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2323
|
1354 |
+
msgid "This chat has already been answered by another agent."
|
|
|
|
|
|
|
1355 |
msgstr ""
|
1356 |
+
"Dieser Chat wurde bereits beantwortet. Bitte schließen Sie dieses Chat-"
|
1357 |
+
"Fenster."
|
1358 |
|
1359 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2474
|
1360 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2033
|
1361 |
+
msgid "Agent(s) online"
|
1362 |
+
msgstr ""
|
|
|
|
|
1363 |
|
1364 |
# @ wplivechat
|
1365 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:439
|
1366 |
+
msgid "Only chat agents can accept chats"
|
1367 |
+
msgstr "Sie haben einen eingehenden Chat."
|
|
|
|
|
1368 |
|
1369 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:638
|
1370 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:479
|
1371 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1427
|
1372 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2461
|
1373 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3892
|
1374 |
+
msgid "Welcome. How may I help you?"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
# @ wplivechat
|
1378 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:976
|
1379 |
+
msgid "complete"
|
1380 |
+
msgstr "Beendet"
|
|
|
|
|
|
|
|
|
1381 |
|
1382 |
# @ wplivechat
|
1383 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:979
|
1384 |
+
msgid "pending"
|
1385 |
+
msgstr "in Warteschleife"
|
|
|
1386 |
|
1387 |
# @ wplivechat
|
1388 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:982
|
1389 |
+
msgid "active"
|
1390 |
+
msgstr "Aktiv"
|
1391 |
|
1392 |
# @ wplivechat
|
1393 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:985
|
1394 |
+
msgid "deleted"
|
1395 |
+
msgstr "Gelöscht"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1396 |
|
1397 |
# @ wplivechat
|
1398 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:988
|
1399 |
+
msgid "browsing"
|
1400 |
+
msgstr "surft"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1401 |
|
1402 |
# @ wplivechat
|
1403 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:991
|
1404 |
+
msgid "requesting chat"
|
1405 |
+
msgstr "Frage Chat an"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1406 |
|
1407 |
# @ wplivechat
|
1408 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:994
|
1409 |
+
msgid "Chat Ended - User still browsing"
|
1410 |
+
msgstr "Chat beendet - Benutzer surft noch"
|
|
|
1411 |
|
1412 |
# @ wplivechat
|
1413 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:997
|
1414 |
+
msgid "User is browsing but doesn't want to chat"
|
1415 |
+
msgstr "Benutzer surft aber will nicht chatten"
|
|
|
1416 |
|
1417 |
# @ wplivechat
|
1418 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1332
|
1419 |
+
msgid "Get Pro Add-on to accept more chats"
|
1420 |
+
msgstr "Holen Sie sich das Pro Add-on und akzeptieren mehrere Chats"
|
|
|
|
|
|
|
1421 |
|
1422 |
# @ wplivechat
|
1423 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1552
|
1424 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2799
|
1425 |
+
msgid "URL"
|
1426 |
+
msgstr "URL"
|
1427 |
|
1428 |
# @ wplivechat
|
1429 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:1579
|
1430 |
+
msgid "You have not missed any chat requests."
|
1431 |
+
msgstr "Sie haben keine Chat-Anfragen verpasst."
|
|
|
1432 |
|
1433 |
# @ wplivechat
|
1434 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:151
|
1435 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:348
|
1436 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:473
|
1437 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1475
|
1438 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2449
|
1439 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3886
|
1440 |
+
msgid "Questions?"
|
1441 |
+
msgstr "Fragen?"
|
1442 |
|
1443 |
# @ wplivechat
|
1444 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:151
|
1445 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:348
|
1446 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:474
|
1447 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1476
|
1448 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2450
|
1449 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3887
|
1450 |
+
msgid "Chat with us"
|
1451 |
+
msgstr "Chatten Sie mit uns!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1452 |
|
1453 |
# @ wplivechat
|
1454 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:158
|
1455 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:355
|
1456 |
+
msgid "Start Live Chat"
|
1457 |
+
msgstr "Live-Chat starten"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1458 |
|
1459 |
# @ wplivechat
|
1460 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:210
|
1461 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:410
|
1462 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:476
|
1463 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2452
|
1464 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3889
|
1465 |
+
msgid "Start Chat"
|
1466 |
+
msgstr "Chat starten"
|
1467 |
|
1468 |
# @ wplivechat
|
1469 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:213
|
1470 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:413
|
1471 |
+
msgid "Connecting you to a sales person. Please be patient."
|
1472 |
+
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
1473 |
|
1474 |
# @ wplivechat
|
1475 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:216
|
1476 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:416
|
1477 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:478
|
1478 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1604
|
1479 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1649
|
1480 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2454
|
1481 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3891
|
1482 |
+
msgid "Reactivating your previous chat..."
|
1483 |
+
msgstr "Der vorherige Chat wird reaktiviert..."
|
1484 |
|
1485 |
# @ wplivechat
|
1486 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:221
|
1487 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:421
|
1488 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:480
|
1489 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2333
|
1490 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2460
|
1491 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3893
|
1492 |
+
msgid "Press ENTER to send your message"
|
1493 |
+
msgstr "ENTER drücken um die Nachricht zu senden"
|
1494 |
|
1495 |
# @ wplivechat
|
1496 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:225
|
1497 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/deprecated.php:425
|
1498 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1455
|
1499 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2344
|
1500 |
+
msgid "Send"
|
1501 |
+
msgstr "Senden"
|
1502 |
|
1503 |
# @ wplivechat
|
1504 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1505 |
msgid "WP Live Chat Support Feedback"
|
1506 |
msgstr "WP Live Chat Support Feedback"
|
1507 |
|
1508 |
# @ wplivechat
|
1509 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
1510 |
msgid "We'd love to hear your comments and/or suggestions"
|
1511 |
msgstr ""
|
1512 |
"Wir würden uns freuen Kommentare und/oder Vorschläge von Ihnen zu bekommen"
|
1513 |
|
1514 |
# @ wplivechat
|
1515 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
1516 |
msgid "Your Name"
|
1517 |
msgstr "Ihr Name:"
|
1518 |
|
1519 |
# @ wplivechat
|
1520 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
1521 |
msgid "Your Email"
|
1522 |
msgstr "Ihre E-Mail:"
|
1523 |
|
1524 |
# @ wplivechat
|
1525 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1526 |
msgid "Your Website"
|
1527 |
msgstr "Ihre Website:"
|
1528 |
|
1529 |
# @ wplivechat
|
1530 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1531 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:641
|
1532 |
+
msgid "Feedback"
|
1533 |
+
msgstr "Feedback"
|
1534 |
+
|
1535 |
+
# @ wplivechat
|
1536 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1537 |
msgid "Send Feedback"
|
1538 |
msgstr "Feedback senden"
|
1539 |
|
1540 |
# @ wplivechat
|
1541 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:73
|
1542 |
msgid "Agents"
|
1543 |
msgstr "Agenten"
|
1544 |
|
1545 |
# @ wplivechat
|
1546 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:164
|
1547 |
+
msgid "Include chat window on the following pages"
|
1548 |
+
msgstr "Chat-Fenster auf den folgenden Seiten hinzufügen:"
|
1549 |
+
|
1550 |
+
# @ wplivechat
|
1551 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:170
|
1552 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:185
|
1553 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:233
|
1554 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:249
|
1555 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:265
|
1556 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:281
|
1557 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:298
|
1558 |
msgid "available in the"
|
1559 |
msgstr "verfügbar in"
|
1560 |
|
1561 |
# @ wplivechat
|
1562 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:171
|
1563 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:186
|
1564 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:234
|
1565 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
|
1566 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:266
|
1567 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:282
|
1568 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:299
|
1569 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2877
|
1570 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3653
|
1571 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3721
|
|
|
|
|
|
|
|
|
|
|
1572 |
msgid "Pro Add-on"
|
1573 |
msgstr "Pro Add-on"
|
1574 |
|
1575 |
# @ wplivechat
|
1576 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:172
|
1577 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
|
1578 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:235
|
1579 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
1580 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:267
|
1581 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:283
|
1582 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:300
|
|
|
|
|
1583 |
msgid "only"
|
1584 |
msgstr "nur"
|
1585 |
|
1586 |
# @ wplivechat
|
1587 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:179
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1588 |
msgid "Exclude chat window on the following pages"
|
1589 |
msgstr "Das Chat-Fenster auf den folgenden Seiten ausschließen:"
|
1590 |
|
1591 |
# @ wplivechat
|
1592 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:295
|
1593 |
msgid "Alert me via email as soon as someone wants to chat"
|
1594 |
msgstr "Verständige Sie mich per E-Mail sobald jemand chatten möchte"
|
1595 |
|
1596 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:485
|
1597 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:486
|
1598 |
+
msgid "Classic"
|
1599 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1600 |
|
1601 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:489
|
1602 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:490
|
1603 |
+
msgid "Modern"
|
1604 |
+
msgstr ""
|
1605 |
|
1606 |
# @ wplivechat
|
1607 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:506
|
1608 |
+
msgid "Colour Scheme"
|
1609 |
msgstr "Farbschema 1"
|
1610 |
|
1611 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:561
|
1612 |
+
msgid "Choose"
|
1613 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1614 |
|
1615 |
# @ wplivechat
|
1616 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:562
|
1617 |
+
msgid "Your"
|
1618 |
+
msgstr "Ihr Name:"
|
1619 |
|
1620 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:563
|
1621 |
+
msgid "Colors"
|
1622 |
+
msgstr ""
|
|
|
1623 |
|
1624 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:564
|
1625 |
+
msgid "Below"
|
1626 |
+
msgstr ""
|
|
|
|
|
|
|
1627 |
|
1628 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:586
|
1629 |
+
msgid "Palette Color 1"
|
1630 |
+
msgstr ""
|
|
|
1631 |
|
1632 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:592
|
1633 |
+
msgid "Palette Color 2"
|
1634 |
+
msgstr ""
|
|
|
|
|
1635 |
|
1636 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:598
|
1637 |
+
msgid "Palette Color 3"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:604
|
1641 |
+
msgid "Palette Color 4"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/update_control.class.php:122
|
1645 |
+
msgid ""
|
1646 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
1647 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1648 |
+
msgstr ""
|
1649 |
|
1650 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/update_control.class.php:127
|
1651 |
+
msgid "An unknown error occurred"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
# @ wplivechat
|
1655 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1656 |
msgid "Welcome to "
|
1657 |
msgstr "Willkommen zu"
|
1658 |
|
1659 |
# @ wplivechat
|
1660 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1661 |
+
msgid "Version 6"
|
|
|
1662 |
msgstr "Version 4"
|
1663 |
|
1664 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1665 |
+
msgid "The most popular live chat plugin!"
|
1666 |
+
msgstr ""
|
|
|
1667 |
|
1668 |
# @ wplivechat
|
1669 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:11
|
1670 |
msgid "How did you find us?"
|
1671 |
msgstr "Wie sind Sie auf uns aufmerksam geworden?"
|
1672 |
|
1673 |
# @ wplivechat
|
1674 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:16
|
1675 |
msgid "WordPress.org plugin repository "
|
1676 |
msgstr "WordPress.org Plugin Verzeichnis "
|
1677 |
|
1678 |
# @ wplivechat
|
1679 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:19
|
1680 |
msgid "Search Term"
|
1681 |
msgstr "Suchbegriff"
|
1682 |
|
1683 |
# @ wplivechat
|
1684 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:23
|
1685 |
msgid "Google or other search Engine"
|
1686 |
msgstr "Google oder eine andere Suchmaschine"
|
1687 |
|
1688 |
# @ wplivechat
|
1689 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:29
|
1690 |
msgid "Friend recommendation"
|
1691 |
msgstr "Empfehlung eines Freundes"
|
1692 |
|
1693 |
# @ wplivechat
|
1694 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:35
|
1695 |
msgid "Other"
|
1696 |
msgstr "Weitere"
|
1697 |
|
1698 |
# @ wplivechat
|
1699 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:39
|
1700 |
msgid "Please Explain"
|
1701 |
msgstr "Bitte erläutern"
|
1702 |
|
1703 |
# @ wplivechat
|
1704 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:48
|
1705 |
msgid "Submit"
|
1706 |
msgstr "Senden"
|
1707 |
|
1708 |
# @ wplivechat
|
1709 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:50
|
1710 |
msgid "Skip"
|
1711 |
msgstr "Überspringen"
|
1712 |
|
1713 |
# @ wplivechat
|
1714 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:468
|
1715 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1486
|
1716 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2455
|
1717 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3881
|
1718 |
+
msgid "Chat offline. Leave a message"
|
1719 |
+
msgstr "Chat-Offline. Hinterlassen Sie eine Nachricht"
|
1720 |
+
|
1721 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:469
|
1722 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1351
|
1723 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2456
|
1724 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3882
|
1725 |
+
msgid "Hello. Please input your details so that I may help you."
|
1726 |
+
msgstr ""
|
1727 |
+
|
1728 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:470
|
1729 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:822
|
1730 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2457
|
1731 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3883
|
1732 |
+
msgid ""
|
1733 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
1734 |
+
"shortly."
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:471
|
1738 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:823
|
1739 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2458
|
1740 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3884
|
1741 |
+
msgid "Sending message..."
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
# @ wplc
|
1745 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:472
|
1746 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:824
|
1747 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2459
|
1748 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3885
|
1749 |
+
msgid "Thank you for your message. We will be in contact soon."
|
1750 |
+
msgstr "Danke für Ihr Feedback. Wir melden uns bald"
|
1751 |
+
|
1752 |
+
# @ wplivechat
|
1753 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:475
|
1754 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2451
|
1755 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3888
|
1756 |
+
msgid "Start live chat"
|
1757 |
+
msgstr "Live-Chat starten"
|
1758 |
+
|
1759 |
+
# @ wplivechat
|
1760 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:477
|
1761 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2453
|
1762 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3890
|
1763 |
+
msgid "Connecting. Please be patient..."
|
1764 |
+
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
1765 |
+
|
1766 |
+
# @ wplivechat
|
1767 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:511
|
1768 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2430
|
1769 |
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1770 |
msgstr ""
|
1771 |
+
"Bitte klicken Sie \\'Start Chat\\', um einen Chat mit einem Agenten zu "
|
1772 |
+
"initiieren"
|
1773 |
+
|
1774 |
+
# @ wplivechat
|
1775 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:612
|
1776 |
+
msgid "Live Chat"
|
1777 |
+
msgstr "Live-Chat"
|
1778 |
+
|
1779 |
+
# @ wplivechat
|
1780 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:613
|
1781 |
+
msgid "Settings"
|
1782 |
+
msgstr "Einstellungen"
|
1783 |
+
|
1784 |
+
# @ wplivechat
|
1785 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:618
|
1786 |
+
msgid "History"
|
1787 |
+
msgstr "Historie"
|
1788 |
+
|
1789 |
+
# @ wplivechat
|
1790 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:619
|
1791 |
+
msgid "Missed Chats"
|
1792 |
+
msgstr "Verpasste Chats"
|
1793 |
+
|
1794 |
+
# @ wplivechat
|
1795 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:642
|
1796 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3364
|
1797 |
+
msgid "Support"
|
1798 |
+
msgstr "Support"
|
1799 |
+
|
1800 |
+
# @ wplivechat
|
1801 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:643
|
1802 |
+
msgid "Extensions"
|
1803 |
+
msgstr "Chat-Sitzung"
|
1804 |
+
|
1805 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:653
|
1806 |
+
msgid "API Keys"
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:659
|
1810 |
+
msgid "Premium Extension API Keys"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:660
|
1814 |
+
msgid ""
|
1815 |
+
"To find and manage your premium API keys, please visit your <a "
|
1816 |
+
"target='_BLANK' href='https://wp-livechat.com/my-account/'>my account</a> "
|
1817 |
+
"page."
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
# @ wplivechat
|
1821 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1244
|
1822 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1262
|
1823 |
+
msgid "Start chat"
|
1824 |
+
msgstr "Chat starten"
|
1825 |
+
|
1826 |
+
# @ wplivechat
|
1827 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1267
|
1828 |
+
msgid "Leave a message"
|
1829 |
+
msgstr "Chat-Offline. Hinterlassen Sie eine Nachricht"
|
1830 |
+
|
1831 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1335
|
1832 |
+
msgid "Send message"
|
1833 |
+
msgstr ""
|
1834 |
|
1835 |
# @ wplivechat
|
1836 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1398
|
1837 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1423
|
1838 |
+
msgid "Connecting. Please be patient."
|
1839 |
+
msgstr "Sie werden mit einem Mitarbeiter verbunden. Bitte um etwas Geduld."
|
1840 |
|
1841 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1892
|
1842 |
msgid "New chat received"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1894
|
1846 |
msgid ""
|
1847 |
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
1848 |
"chat"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
# @ wplivechat
|
1852 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1956
|
1853 |
msgid ""
|
1854 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1855 |
"strong>. Please"
|
1858 |
"Pro<strong>. Bitte"
|
1859 |
|
1860 |
# @ wplivechat
|
1861 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1956
|
1862 |
+
msgid "update to at least version"
|
1863 |
+
msgstr "aktualisieren Sie auf die neueste Version"
|
1864 |
+
|
1865 |
+
# @ wplivechat
|
1866 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1956
|
1867 |
+
msgid "to ensure all functionality is in working order"
|
1868 |
+
msgstr "um sicherzustellen, dass alle Funktionen zuverlässig arbeiten"
|
1869 |
+
|
1870 |
+
# @ wplivechat
|
1871 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1957
|
1872 |
msgid ""
|
1873 |
"You're live chat box on your website has been temporarily disabled until the "
|
1874 |
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1879 |
"stressfreie Nutzererfahrung für sich und Ihre Besucher sicherzustellen."
|
1880 |
|
1881 |
# @ wplivechat
|
1882 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1958
|
1883 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1978
|
1884 |
msgid ""
|
1885 |
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1886 |
+
"plugins.php'>here</a> or <a href='https://wp-livechat.com/get-updated-"
|
1887 |
"version/' target='_BLANK'>here</a>."
|
1888 |
msgstr ""
|
1889 |
"Sie können das Plugin aktualisieren <a href='./update-core.php'>hier</a>, <a "
|
1891 |
"updated-version/' target='_BLANK'>hier</a>."
|
1892 |
|
1893 |
# @ wplivechat
|
1894 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1959
|
1895 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1979
|
1896 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
1897 |
+
msgstr ""
|
1898 |
+
"Wenn Sie Schwierigkeiten haben das Plugin zu aktualisieren, kontaktieren Sie "
|
1899 |
+
"uns bitte unter"
|
1900 |
+
|
1901 |
+
# @ wplivechat
|
1902 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1971
|
1903 |
msgid ""
|
1904 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1905 |
"strong>."
|
1908 |
"Pro<strong>."
|
1909 |
|
1910 |
# @ wplivechat
|
1911 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1973
|
1912 |
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1913 |
msgstr "Bitte auf die aktuellste WP Live Chat Support Pro aktualisieren"
|
1914 |
|
1915 |
# @ wplivechat
|
1916 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1974
|
|
|
1917 |
msgid "Version 5.0.1"
|
1918 |
msgstr "Version 4.4.5"
|
1919 |
|
1920 |
# @ wplivechat
|
1921 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1975
|
|
|
1922 |
msgid "to ensure everything is working correctly."
|
1923 |
msgstr "um sicherzustellen, dass alle Funktionen zuverlässig arbeiten"
|
1924 |
|
1925 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2007
|
1926 |
msgid "Congratulations"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
# @ wplivechat
|
1930 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2008
|
|
|
1931 |
msgid "You are now accepting live chat requests on your site."
|
1932 |
msgstr "Sie haben keine Chat-Anfragen verpasst."
|
1933 |
|
1934 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2009
|
1935 |
msgid "The live chat box has automatically been enabled on your website."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2010
|
1939 |
msgid "Chat notifications will start appearing once visitors send a request."
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2011
|
1943 |
msgid ""
|
1944 |
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
1945 |
"chat box settings here."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2012
|
1949 |
msgid "Experiencing issues?"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2012
|
1953 |
msgid "Visit our troubleshooting section."
|
1954 |
msgstr ""
|
1955 |
|
1956 |
# @ wplivechat
|
1957 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2014
|
|
|
1958 |
msgid "Hide"
|
1959 |
msgstr "Chat verstecken"
|
1960 |
|
1961 |
# @ wplivechat
|
1962 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2049
|
1963 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3384
|
1964 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3385
|
|
|
|
|
|
|
|
|
|
|
|
|
1965 |
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1966 |
msgstr "Mit dem Pro add-on von WP Live Chat Support können Sie"
|
1967 |
|
1968 |
# @ wplivechat
|
1969 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2050
|
1970 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3384
|
1971 |
msgid "see who's online and initiate chats"
|
1972 |
msgstr "sehen, wer online ist und chats initiieren"
|
1973 |
|
1974 |
# @ wplivechat
|
1975 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2051
|
1976 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3384
|
|
|
1977 |
msgid "initiate chats"
|
1978 |
msgstr "Live-Chat"
|
1979 |
|
1980 |
# @ wplivechat
|
1981 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2052
|
1982 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3384
|
1983 |
msgid "with your online visitors with the click of a button."
|
1984 |
msgstr "mit Ihren Besuchern über einen Knopfdruck starten"
|
1985 |
|
1986 |
# @ wplivechat
|
1987 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2053
|
1988 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2055
|
|
|
1989 |
msgid "Buy the Pro add-on now."
|
1990 |
msgstr ""
|
1991 |
"Kaufen Sie das Pro add-on jetzt für nur $19,95. Kostenlose Updates für "
|
1992 |
"IMMER. "
|
1993 |
|
1994 |
# @ wplivechat
|
1995 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2102
|
1996 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2169
|
1997 |
+
msgid "Chat Dashboard"
|
1998 |
+
msgstr "Chat freigegeben"
|
1999 |
+
|
2000 |
+
# @ wplivechat
|
2001 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2105
|
2002 |
+
msgid ""
|
2003 |
+
"Please note: This window must be open in order to receive new chat "
|
2004 |
+
"notifications."
|
2005 |
+
msgstr ""
|
2006 |
+
"Bitte beachten: Dieses Fenster muss geöffnet bleiben um Chat-"
|
2007 |
+
"Benachrichtigungen zu empfangen."
|
2008 |
+
|
2009 |
+
# @ wplivechat
|
2010 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2117
|
2011 |
+
msgid "Visitors online"
|
2012 |
+
msgstr "Besucher auf der Seite"
|
2013 |
+
|
2014 |
+
# @ wplivechat
|
2015 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2129
|
2016 |
+
msgid "Visitor"
|
2017 |
+
msgstr "Besucher auf der Seite"
|
2018 |
+
|
2019 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2130
|
2020 |
+
msgid "Time"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2131
|
2024 |
+
msgid "Type"
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2132
|
2028 |
+
msgid "Data"
|
2029 |
+
msgstr ""
|
2030 |
+
|
2031 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2133
|
2032 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2800
|
2033 |
+
msgid "Status"
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
# @ wplivechat
|
2037 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2134
|
2038 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2801
|
2039 |
+
msgid "Action"
|
2040 |
+
msgstr "Aktiv"
|
2041 |
+
|
2042 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2172
|
2043 |
+
msgid "Oh no!"
|
2044 |
+
msgstr ""
|
2045 |
+
|
2046 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2175
|
2047 |
+
msgid ""
|
2048 |
+
"You do not have access to this page as <strong>you are not a chat agent</"
|
2049 |
+
"strong>."
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
# @ wplivechat
|
2053 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2263
|
2054 |
msgid "Previous"
|
2055 |
msgstr "Vorherig"
|
2056 |
|
2057 |
# @ wplivechat
|
2058 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2265
|
2059 |
msgid "Active"
|
2060 |
msgstr "Aktiv"
|
2061 |
|
2062 |
# @ wplivechat
|
2063 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2274
|
2064 |
msgid "Chat with"
|
2065 |
msgstr "Chatten mit"
|
2066 |
|
2067 |
# @ wplivechat
|
2068 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2277
|
2069 |
+
msgid "End chat"
|
2070 |
+
msgstr "Chat beenden"
|
2071 |
+
|
2072 |
+
# @ wplivechat
|
2073 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2314
|
2074 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3199
|
2075 |
+
msgid "Add-ons"
|
2076 |
+
msgstr "Pro Add-on"
|
2077 |
+
|
2078 |
+
# @ wplivechat
|
2079 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2316
|
2080 |
+
msgid "Get more add-ons"
|
2081 |
+
msgstr "Pro Add-on"
|
2082 |
+
|
2083 |
+
# @ wplivechat
|
2084 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2334
|
2085 |
msgid "Add Quick Responses to your Live Chat"
|
2086 |
msgstr "Fügen Sie blitzschnelle Antworten zu Ihrem Live-Chat"
|
2087 |
|
2088 |
# @ wplivechat
|
2089 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2334
|
2090 |
msgid "Pro version only"
|
2091 |
msgstr "Nur Pro-Version"
|
2092 |
|
2093 |
# @ wplivechat
|
2094 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2342
|
2095 |
msgid "type here..."
|
2096 |
msgstr "antworten Sie hier ..."
|
2097 |
|
2098 |
# @ wplivechat
|
2099 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2412
|
2100 |
+
msgid "User has opened the chat window"
|
2101 |
+
msgstr "Benutzer hat das Chat-Fenster geöffnet"
|
2102 |
+
|
2103 |
+
# @ wplivechat
|
2104 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2413
|
2105 |
+
msgid "User has minimized the chat window"
|
2106 |
+
msgstr "Benutzer hat das Chat-Fenster minimiert"
|
2107 |
+
|
2108 |
+
# @ wplivechat
|
2109 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2414
|
2110 |
+
msgid "User has maximized the chat window"
|
2111 |
+
msgstr "Benutzer hat das Chat-Fenster maximiert"
|
2112 |
+
|
2113 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2415
|
2114 |
+
msgid "The chat has been ended"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
# @ wplivechat
|
2118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2790
|
2119 |
+
msgid "Delete History"
|
2120 |
+
msgstr "Historie"
|
2121 |
+
|
2122 |
+
# @ wplivechat
|
2123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2807
|
2124 |
+
msgid "No chats available at the moment"
|
2125 |
+
msgstr "Es sind derzeit keine Chat-Sitzungen verfügbar"
|
2126 |
+
|
2127 |
+
# @ wplivechat
|
2128 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2817
|
2129 |
+
msgid "View Chat History"
|
2130 |
msgstr "WP Live Chat Historie"
|
2131 |
|
2132 |
# @ wplivechat
|
2133 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2817
|
2134 |
+
msgid "Download Chat History"
|
2135 |
+
msgstr "WP Live Chat Historie"
|
|
|
2136 |
|
2137 |
# @ wplivechat
|
2138 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2839
|
2139 |
+
msgid "WP Live Chat History"
|
2140 |
msgstr "WP Live Chat Historie"
|
2141 |
|
2142 |
# @ wplivechat
|
2143 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2859
|
2144 |
+
msgid "WP Live Chat Missed Chats"
|
2145 |
+
msgstr "WP Live Chat Historie"
|
2146 |
|
2147 |
# @ wplivechat
|
2148 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2874
|
2149 |
msgid ""
|
2150 |
"Please update to the latest version of WP Live Chat Support Pro to start "
|
2151 |
"recording any offline messages."
|
2154 |
"Pro um offline Nachrichten angezeigt zu bekommen."
|
2155 |
|
2156 |
# @ wplivechat
|
2157 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2877
|
2158 |
+
msgid "This option is only available in the "
|
2159 |
+
msgstr "Diese Option ist verfügbar in der"
|
2160 |
+
|
2161 |
+
# @ wplivechat
|
2162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2889
|
2163 |
+
msgid "WP Live Chat Offline Messages"
|
2164 |
+
msgstr "WP Live Chat Support - Offline-Nachricht von"
|
2165 |
+
|
2166 |
+
# @ wplivechat
|
2167 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3018
|
2168 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
2169 |
+
msgstr ""
|
2170 |
+
"Bitte klicken Sie 'Starte Chat', um einen Chat mit einem Agenten zu "
|
2171 |
+
"initiieren"
|
2172 |
+
|
2173 |
+
# @ wplivechat
|
2174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3102
|
2175 |
+
msgid "Your settings have been saved."
|
2176 |
+
msgstr "Ihre Einstellungen wurden gespeichert."
|
2177 |
+
|
2178 |
+
# @ wplivechat
|
2179 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3117
|
2180 |
msgid "Thank You for your feedback!"
|
2181 |
msgstr "Danke für Ihr Feedback!"
|
2182 |
|
2183 |
# @ wplc
|
2184 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3121
|
2185 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3134
|
2186 |
msgid "Thank you for your feedback. We will be in touch soon"
|
2187 |
msgstr "Danke für Ihr Feedback. Wir melden uns bald"
|
2188 |
|
2189 |
# @ wplc
|
2190 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3137
|
2191 |
msgid "There was a problem sending your feedback. Please log your feedback on "
|
2192 |
msgstr ""
|
2193 |
"Es gab ein Problem beim senden Ihres Feedbacks. Bitte tragen Sie Ihr "
|
2194 |
"Feedback ein unter"
|
2195 |
|
2196 |
# @ wplivechat
|
2197 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3171
|
2198 |
msgid ""
|
2199 |
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
2200 |
"issues while using WP Live Chat Support as a result of this. Please get in "
|
2206 |
"aktiviert zu bekommen."
|
2207 |
|
2208 |
# @ wplivechat
|
2209 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3177
|
2210 |
msgid ""
|
2211 |
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
2212 |
"using WP Live Chat Support as a result of this. Please contact your host to "
|
2216 |
"der Verwendung von WP Live Chat Support als Folge davon auftreten. Bitte "
|
2217 |
"kontaktieren Sie Ihr Hoster um den abgesicherten Modus zu deaktivieren."
|
2218 |
|
2219 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3199
|
2220 |
msgid "Suggested Plugins"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3210
|
2224 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3211
|
2225 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3212
|
2226 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3217
|
2227 |
msgid "Sola Support Tickets"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3215
|
2231 |
msgid ""
|
2232 |
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
2233 |
"desk quickly and easily with Sola Support Tickets."
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3217
|
2237 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3228
|
2238 |
msgid "Get this Plugin"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3221
|
2242 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3222
|
2243 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3223
|
2244 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3228
|
2245 |
msgid "Nifty Newsletters"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3226
|
2249 |
msgid ""
|
2250 |
"Create and send newsletters, automatic post notifications and autoresponders "
|
2251 |
"that are modern and beautiful with Nifty Newsletters."
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3260
|
2255 |
msgid "Price:"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3261
|
2259 |
msgid "All"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3262
|
2263 |
msgid "Free"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3263
|
2267 |
msgid "Paid"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3266
|
2271 |
msgid "For:"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3267
|
2275 |
msgid "Both"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
# @ wplivechat
|
2279 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3268
|
|
|
2280 |
msgid "Free version"
|
2281 |
msgstr "Nur Pro-Version"
|
2282 |
|
2283 |
# @ wplivechat
|
2284 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3269
|
|
|
2285 |
msgid "Pro version"
|
2286 |
msgstr "Nur Pro-Version"
|
2287 |
|
2288 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3305
|
2289 |
msgid "Already installed"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
# @ wplivechat
|
2293 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3332
|
2294 |
msgid "WP Live Chat Support"
|
2295 |
msgstr "WP Live Chat Support"
|
2296 |
|
2297 |
# @ wplivechat
|
2298 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3335
|
2299 |
msgid "Documentation"
|
2300 |
msgstr "Dokumentation"
|
2301 |
|
2302 |
# @ wplivechat
|
2303 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3337
|
2304 |
msgid ""
|
2305 |
"Getting started? Read through some of these articles to help you along your "
|
2306 |
"way."
|
2309 |
"helfen."
|
2310 |
|
2311 |
# @ wplivechat
|
2312 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3338
|
2313 |
msgid "Documentation:"
|
2314 |
msgstr "Dokumentation:"
|
2315 |
|
2316 |
# @ wplivechat
|
2317 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3340
|
2318 |
msgid "Minimum System Requirements"
|
2319 |
msgstr "Mindest-Systemanforderungen"
|
2320 |
|
2321 |
# @ wplivechat
|
2322 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3341
|
2323 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
2324 |
msgstr "Muss ich im Dashboard angemeldet sein um mit Besuchern zu chatten?"
|
2325 |
|
2326 |
# @ wplivechat
|
2327 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3342
|
2328 |
msgid "What are Quick Responses?"
|
2329 |
msgstr "Was sind die schnellen Antworten?"
|
2330 |
|
2331 |
# @ wplivechat
|
2332 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3343
|
2333 |
msgid "Can I use this plugin on my multi-site?"
|
2334 |
msgstr "Kann ich dieses Plugin auf meiner Multi-Website verwenden?"
|
2335 |
|
2336 |
# @ wplivechat
|
2337 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3344
|
2338 |
msgid "How do I disable APC Object Cache?"
|
2339 |
msgstr "Wie deaktiviere ich den APC-Object-Cache?"
|
2340 |
|
2341 |
# @ wplivechat
|
2342 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3345
|
2343 |
msgid "Do you have a mobile app?"
|
2344 |
msgstr "Haben Sie eine mobile App?"
|
2345 |
|
2346 |
# @ wplivechat
|
2347 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3346
|
2348 |
msgid "How do I check for JavaScript errors on my site?"
|
2349 |
msgstr "Wie überprüfe ich auf JavaScript-Fehler auf meiner Website?"
|
2350 |
|
2351 |
# @ wplivechat
|
2352 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3350
|
2353 |
msgid "Troubleshooting"
|
2354 |
msgstr "Fehlerbehebung"
|
2355 |
|
2356 |
# @ wplivechat
|
2357 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3352
|
|
|
2358 |
msgid ""
|
2359 |
"WP Live Chat Support has a diverse and wide range of features which may, "
|
2360 |
"from time to time, run into conflicts with the thousands of themes and other "
|
2365 |
"und andere Plugins auf den Markt auslösen könnten."
|
2366 |
|
2367 |
# @ wplivechat
|
2368 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3353
|
2369 |
msgid "Common issues:"
|
2370 |
msgstr "Häufig auftretende Probleme:"
|
2371 |
|
2372 |
# @ wplivechat
|
2373 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3355
|
2374 |
msgid "The chat box doesnt show up"
|
2375 |
msgstr "Das Chat-Fenster erscheint nicht"
|
2376 |
|
2377 |
# @ wplivechat
|
2378 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3356
|
2379 |
msgid "The chat window disappears when I logout or go offline"
|
2380 |
msgstr "Das Chatfenster verschwindet wenn ich mich auslogge oder offline gehe"
|
2381 |
|
2382 |
# @ wplivechat
|
2383 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3357
|
2384 |
+
msgid "This chat has already been answered. Please close the chat window"
|
2385 |
+
msgstr ""
|
2386 |
+
"Dieser Chat wurde bereits beantwortet. Bitte schließen Sie dieses Chat-"
|
2387 |
+
"Fenster."
|
2388 |
+
|
2389 |
+
# @ wplivechat
|
2390 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3358
|
2391 |
msgid "Messages only show when I refresh the chat window"
|
2392 |
msgstr ""
|
2393 |
"Nachrichten werden nur angezeigt, wenn ich das Chatfenster aktualisiere"
|
2394 |
|
2395 |
# @ wplivechat
|
2396 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3359
|
2397 |
msgid "I'm not getting any notifications of a new chat"
|
2398 |
msgstr "Ich erhalte keine Benachrichtigungen über einem neuen Chat"
|
2399 |
|
2400 |
# @ wplivechat
|
2401 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3360
|
2402 |
msgid "The chat window never goes offline"
|
2403 |
msgstr "Das Chat-Fenster geht nie offline"
|
2404 |
|
2405 |
# @ wplivechat
|
2406 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3366
|
2407 |
msgid "Still need help? Use one of these links below."
|
2408 |
msgstr "Brauchen Sie noch Hilfe? Verwenden Sie einen dieser Links unten."
|
2409 |
|
2410 |
# @ wplivechat
|
2411 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3368
|
2412 |
+
msgid "Support desk"
|
2413 |
+
msgstr "Support"
|
2414 |
|
2415 |
# @ wplivechat
|
2416 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3369
|
2417 |
msgid "Contact us"
|
2418 |
msgstr "Kontaktieren Sie uns"
|
2419 |
|
2420 |
# @ wplivechat
|
2421 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3384
|
|
|
2422 |
msgid "Initiate Chats"
|
2423 |
msgstr "Live-Chat"
|
2424 |
|
2425 |
# @ wplivechat
|
2426 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3384
|
2427 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3385
|
|
|
2428 |
msgid "Buy the Pro add-on now (once off payment)."
|
2429 |
msgstr ""
|
2430 |
"Kaufen Sie das Pro add-on jetzt für nur $19,95. Kostenlose Updates für "
|
2431 |
"IMMER. "
|
2432 |
|
2433 |
# @ wplivechat
|
2434 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3385
|
|
|
2435 |
msgid "Multiple Chats"
|
2436 |
msgstr "Mehrere Agenten"
|
2437 |
|
2438 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3385
|
2439 |
msgid "accept and handle multiple chats."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3386
|
2443 |
msgid "Add unlimited agents"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
# @ wplivechat
|
2447 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3386
|
|
|
2448 |
msgid " with the Pro add-on of WP Live Chat Support"
|
2449 |
msgstr "Mit dem Pro add-on von WP Live Chat Support können Sie"
|
2450 |
|
2451 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3386
|
2452 |
msgid "(once off payment)."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3400
|
2456 |
#, php-format
|
2457 |
msgid ""
|
2458 |
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
# @ wplivechat
|
2464 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3405
|
|
|
2465 |
msgid "WP Live Chat Support is a product of"
|
2466 |
msgstr "WP Live Chat Support"
|
2467 |
|
2468 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3509
|
2469 |
+
msgid "Add as many agents as you need with the "
|
2470 |
+
msgstr ""
|
2471 |
+
|
2472 |
+
# @ wplivechat
|
2473 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3509
|
2474 |
+
msgid "Pro version."
|
2475 |
+
msgstr "Nur Pro-Version"
|
2476 |
+
|
2477 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3513
|
2478 |
+
#, php-format
|
2479 |
+
msgid "Change the default chat agent from <strong>%1$s</strong> to "
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3612
|
2483 |
+
msgid "Verify"
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3615
|
2487 |
+
msgid "Status: "
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3618
|
2491 |
+
msgid "Valid"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3619
|
2495 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3623
|
2496 |
+
msgid "Manage this extension"
|
2497 |
+
msgstr ""
|
2498 |
+
|
2499 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3622
|
2500 |
+
msgid "Invalid"
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3628
|
2504 |
+
msgid "Linked Domains"
|
2505 |
+
msgstr ""
|
2506 |
+
|
2507 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3662
|
2508 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3730
|
2509 |
+
msgid ""
|
2510 |
+
"Get unlimited agents, initiate chats, advanced chat box control, encryption "
|
2511 |
+
"and more with the Pro add-on."
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3664
|
2515 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3686
|
2516 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3707
|
2517 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3732
|
2518 |
+
msgid "Get this extension"
|
2519 |
+
msgstr ""
|
2520 |
+
|
2521 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3675
|
2522 |
+
msgid "Mobile & Desktop App"
|
2523 |
+
msgstr ""
|
2524 |
+
|
2525 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3684
|
2526 |
+
msgid ""
|
2527 |
+
"Answer chats directly from your mobile phone or dekstop with our mobile app "
|
2528 |
+
"and desktop client"
|
2529 |
+
msgstr ""
|
2530 |
+
|
2531 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3705
|
2532 |
+
msgid ""
|
2533 |
+
"Reduce the resources required by your server - use our cloud server to host "
|
2534 |
+
"your chats."
|
2535 |
+
msgstr ""
|
2536 |
+
|
2537 |
+
# @ wplivechat
|
2538 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3753
|
2539 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3774
|
2540 |
+
msgid "Relevant Extensions"
|
2541 |
+
msgstr "Chat-Sitzung"
|
2542 |
+
|
2543 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:3857
|
2544 |
+
msgid ""
|
2545 |
+
"Your API Key is Invalid. You are not eligible for future updates. Please "
|
2546 |
+
"enter your API key <a href=\"admin.php?page=wplivechat-menu-api-keys-page"
|
2547 |
+
"\">here</a>."
|
2548 |
+
msgstr ""
|
2549 |
+
|
2550 |
+
# @ wplivechat
|
2551 |
+
#, fuzzy
|
2552 |
+
#~ msgid "Dear User"
|
2553 |
+
#~ msgstr "Lieber Pro Benutzer,"
|
2554 |
+
|
2555 |
+
# @ wplivechat
|
2556 |
+
#, fuzzy
|
2557 |
+
#~ msgid ""
|
2558 |
+
#~ "You are using an outdated version of WP Live Chat Support Basic. Please"
|
2559 |
+
#~ msgstr ""
|
2560 |
+
#~ "Sie verwenden eine veraltete Version von <strong>WP Live Chat Support "
|
2561 |
+
#~ "Pro<strong>. Bitte"
|
2562 |
+
|
2563 |
+
# @ wplivechat
|
2564 |
+
#, fuzzy
|
2565 |
+
#~ msgid ""
|
2566 |
+
#~ "You're live chat box on your website has been temporarily disabled until "
|
2567 |
+
#~ "the basic plugin has been updated. This is to ensure a smooth and hassle-"
|
2568 |
+
#~ "free user experience for both yourself and your visitors."
|
2569 |
+
#~ msgstr ""
|
2570 |
+
#~ "Ihr Live-Chat auf Ihrer Seite wurde vorübergehend deaktiviert, bis das "
|
2571 |
+
#~ "Pro-Plugin aktualisiert wird. Dies geschieht, um einen reibungslose und "
|
2572 |
+
#~ "stressfreie Nutzererfahrung für sich und Ihre Besucher sicherzustellen."
|
2573 |
+
|
2574 |
+
# @ wplivechat
|
2575 |
+
#, fuzzy
|
2576 |
+
#~ msgid ""
|
2577 |
+
#~ "You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
2578 |
+
#~ "href='./plugins.php'>here</a>."
|
2579 |
+
#~ msgstr ""
|
2580 |
+
#~ "Sie können das Plugin aktualisieren <a href='./update-core.php'>hier</a>, "
|
2581 |
+
#~ "<a href='./plugins.php'>hier</a> oder <a href='http://wp-livechat.com/get-"
|
2582 |
+
#~ "updated-version/' target='_BLANK'>hier</a>."
|
2583 |
+
|
2584 |
+
# @ wplivechat
|
2585 |
+
#, fuzzy
|
2586 |
+
#~ msgid "Minimize Chat Window"
|
2587 |
+
#~ msgstr "Chat-Fenster öffnen"
|
2588 |
+
|
2589 |
+
# @ wplivechat
|
2590 |
+
#, fuzzy
|
2591 |
+
#~ msgid "Close Chat Window"
|
2592 |
+
#~ msgstr "Chat-Fenster öffnen"
|
2593 |
+
|
2594 |
+
# @ wplivechat
|
2595 |
+
#~ msgid "Chat sessions"
|
2596 |
+
#~ msgstr "Chat-Sitzung"
|
2597 |
+
|
2598 |
+
# @ wplivechat
|
2599 |
+
#~ msgid "User has closed and ended the chat"
|
2600 |
+
#~ msgstr "Benutzer hat das Chat-Fenster geschlossen und den Chat beendet"
|
2601 |
+
|
2602 |
+
# @ wplivechat
|
2603 |
+
#~ msgid "Get offline messages with the "
|
2604 |
+
#~ msgstr "Erhalte Offline-Nachrichten mit dem"
|
2605 |
+
|
2606 |
+
# @ wplivechat
|
2607 |
+
#~ msgid "Offline text"
|
2608 |
+
#~ msgstr "Offline-Text"
|
2609 |
+
|
2610 |
+
# @ wplivechat
|
2611 |
+
#~ msgid "Edit these text fields using the "
|
2612 |
+
#~ msgstr "Bearbeiten Sie diese Textfelder mittels"
|
2613 |
+
|
2614 |
+
# @ sola_t
|
2615 |
+
#~ msgid "Choose a colour scheme. Only available in the"
|
2616 |
+
#~ msgstr "Diese Option ist verfügbar in der"
|
2617 |
+
|
2618 |
+
# @ wplivechat
|
2619 |
+
#~ msgid "Colour Scheme 2"
|
2620 |
+
#~ msgstr "Farbschema 2"
|
2621 |
+
|
2622 |
+
# @ wplivechat
|
2623 |
+
#~ msgid "Colour Scheme 3"
|
2624 |
+
#~ msgstr "Farbschema 3"
|
2625 |
+
|
2626 |
+
# @ wplivechat
|
2627 |
+
#~ msgid "Colour Scheme 4"
|
2628 |
+
#~ msgstr "Farbschema 4"
|
2629 |
+
|
2630 |
+
# @ wplivechat
|
2631 |
+
#~ msgid "Colour Scheme 5"
|
2632 |
+
#~ msgstr "Farbschema 5"
|
2633 |
+
|
2634 |
+
# @ wplivechat
|
2635 |
+
#~ msgid "Colour Scheme 6"
|
2636 |
+
#~ msgstr "Farbschema 6"
|
2637 |
+
|
2638 |
+
# @ wplivechat
|
2639 |
+
#~ msgid "First section text"
|
2640 |
+
#~ msgstr "Text erste Sektion"
|
2641 |
+
|
2642 |
+
# @ wplivechat
|
2643 |
+
#~ msgid "Second section text"
|
2644 |
+
#~ msgstr "Text zweite Sektion"
|
2645 |
+
|
2646 |
+
# @ wplivechat
|
2647 |
+
#~ msgid "Reactivate chat section text"
|
2648 |
+
#~ msgstr "Text für reaktivierten Chat"
|
2649 |
+
|
2650 |
+
# @ sola_t
|
2651 |
+
#, fuzzy
|
2652 |
+
#~ msgid "Choose an animation. Only available in the"
|
2653 |
+
#~ msgstr "Diese Option ist verfügbar in der"
|
2654 |
+
|
2655 |
+
# @ wplivechat
|
2656 |
+
#, fuzzy
|
2657 |
+
#~ msgid "Pro version for only $19.95 once off."
|
2658 |
+
#~ msgstr "Jetzt einmalig für nur $ 19.95!"
|
2659 |
+
|
2660 |
+
# @ wplivechat
|
2661 |
+
#~ msgid "Provide Instant Live Chat Support!"
|
2662 |
+
#~ msgstr "Via WP Live Chat Support"
|
2663 |
+
|
2664 |
+
# @ wplivechat
|
2665 |
+
#~ msgid "Support forum"
|
2666 |
+
#~ msgstr "Support Forum"
|
2667 |
+
|
2668 |
# @ wplivechat
|
2669 |
#, fuzzy
|
2670 |
#~ msgid "Get it now for only $19.95"
|
languages/wplivechat-es_ES.mo
CHANGED
Binary file
|
languages/wplivechat-es_ES.po
CHANGED
@@ -2,22 +2,22 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplivechat\n"
|
4 |
"POT-Creation-Date: 2015-03-16 07:56+0200\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Caribdis Web Design <caribdisweb@gmail.com>\n"
|
7 |
"Language-Team: Caribdis Web Design <caribdisweb@gmail.com>\n"
|
8 |
"Language: es_ES\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-SearchPath-0: C
|
18 |
-
"
|
19 |
-
"X-Poedit-SearchPath-1: C
|
20 |
-
"
|
21 |
|
22 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:264
|
23 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:228
|
@@ -64,7 +64,7 @@ msgstr "Whois para"
|
|
64 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:241
|
65 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
66 |
msgid "Site Info"
|
67 |
-
msgstr "Información
|
68 |
|
69 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:89
|
70 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:259
|
@@ -115,7 +115,7 @@ msgstr "Chats activos"
|
|
115 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
116 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
117 |
msgid "Accept Chat"
|
118 |
-
msgstr "Aceptar chat"
|
119 |
|
120 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
121 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
@@ -195,7 +195,7 @@ msgstr "Alerta: alguien quiere chatear con usted en "
|
|
195 |
|
196 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
197 |
msgid "Someone wants to chat with you on your website"
|
198 |
-
msgstr "Alguien quiere chatear con usted
|
199 |
|
200 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
201 |
msgid "Log in"
|
@@ -220,7 +220,8 @@ msgstr ""
|
|
220 |
|
221 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:548
|
222 |
msgid "Please contact the administrator of this website to change this."
|
223 |
-
msgstr "
|
|
|
224 |
|
225 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:634
|
226 |
msgid "Chat Agent Online"
|
@@ -329,7 +330,7 @@ msgstr "Ocultar chat"
|
|
329 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
|
330 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
|
331 |
msgid "Hides chat for 24hrs when user clicks X"
|
332 |
-
msgstr "
|
333 |
|
334 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
335 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:73
|
@@ -341,7 +342,7 @@ msgstr "Pedir Nombre y Correo electrónico"
|
|
341 |
msgid ""
|
342 |
"Users will have to enter their Name and Email Address when starting a chat"
|
343 |
msgstr ""
|
344 |
-
"Los usuarios tendrán que
|
345 |
"electrónico para iniciar el chat"
|
346 |
|
347 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:78
|
@@ -353,13 +354,13 @@ msgstr "Texto de reemplazo para los campos anteriores"
|
|
353 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:83
|
354 |
msgid "This is the text that will show in place of the Name And Email fields"
|
355 |
msgstr ""
|
356 |
-
"Este texto se mostrará en
|
357 |
"electrónico"
|
358 |
|
359 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
360 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:91
|
361 |
msgid "Use Logged In User Details"
|
362 |
-
msgstr "
|
363 |
|
364 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
365 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
@@ -406,7 +407,7 @@ msgid ""
|
|
406 |
"(Use comma-separated Page ID's)"
|
407 |
msgstr ""
|
408 |
"Mostrar la ventana del chat en las siguientes páginas. Deje en blanco para "
|
409 |
-
"mostrarla en todas. (
|
410 |
|
411 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:119
|
412 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
|
@@ -429,7 +430,7 @@ msgid ""
|
|
429 |
"all. (Use comma-separated Page ID's)"
|
430 |
msgstr ""
|
431 |
"No mostrar la ventana del chat en las siguientes páginas. Deje en blanco "
|
432 |
-
"para mostrarla en todas.
|
433 |
|
434 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:133
|
435 |
msgid "Allow any user to make themselves a chat agent"
|
@@ -446,7 +447,7 @@ msgstr ""
|
|
446 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:143
|
447 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
448 |
msgid "Chat Window Settings"
|
449 |
-
msgstr "Ajustes de la ventana
|
450 |
|
451 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:146
|
452 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:156
|
@@ -544,8 +545,7 @@ msgstr "Notificaciones de chat"
|
|
544 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:229
|
545 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:246
|
546 |
msgid "Alert me via email as soon as someone wants to chat"
|
547 |
-
msgstr ""
|
548 |
-
"Alertarme vía correo electrónico tan pronto como alguien quiera chatear"
|
549 |
|
550 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:230
|
551 |
msgid "(while online only)"
|
@@ -598,8 +598,7 @@ msgstr "Dirección de correo electrónico"
|
|
598 |
|
599 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:283
|
600 |
msgid "Email address where offline messages are delivered to"
|
601 |
-
msgstr ""
|
602 |
-
"Dirección de correo electrónico a la cual se envían los mensajes offline"
|
603 |
|
604 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:284
|
605 |
msgid ""
|
@@ -697,7 +696,7 @@ msgstr "Texto de la primera sección"
|
|
697 |
|
698 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:451
|
699 |
msgid "Intro Text"
|
700 |
-
msgstr "Texto
|
701 |
|
702 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:457
|
703 |
msgid "Second Section Text"
|
@@ -705,11 +704,11 @@ msgstr "Texto de la segunda sección"
|
|
705 |
|
706 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:464
|
707 |
msgid "Reactivate Chat Section Text"
|
708 |
-
msgstr "
|
709 |
|
710 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:472
|
711 |
msgid "User chat welcome"
|
712 |
-
msgstr "Bienvenida al chat
|
713 |
|
714 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:481
|
715 |
msgid "Other text"
|
@@ -717,7 +716,8 @@ msgstr "Otro texto"
|
|
717 |
|
718 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:483
|
719 |
msgid "This text is shown above the user chat input field"
|
720 |
-
msgstr "
|
|
|
721 |
|
722 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
723 |
msgid "Current Users that are Chat Agents"
|
@@ -772,7 +772,7 @@ msgstr "Sin animación"
|
|
772 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:592
|
773 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
|
774 |
msgid "Blocked Visitors - Based on IP Address"
|
775 |
-
msgstr "Visitantes bloqueados -
|
776 |
|
777 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:593
|
778 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:466
|
@@ -820,10 +820,10 @@ msgid ""
|
|
820 |
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
821 |
"user experience for both yourself and your visitors."
|
822 |
msgstr ""
|
823 |
-
"El recuadro de chat
|
824 |
-
"
|
825 |
-
"
|
826 |
-
"
|
827 |
|
828 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:460
|
829 |
msgid ""
|
@@ -878,11 +878,11 @@ msgstr "Empezar a chatear"
|
|
878 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:381
|
879 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:518
|
880 |
msgid "Start Chat"
|
881 |
-
msgstr "Iniciar
|
882 |
|
883 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:495
|
884 |
msgid "Connecting. Please be patient..."
|
885 |
-
msgstr "Conectando. Por favor,
|
886 |
|
887 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:496
|
888 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:390
|
@@ -893,19 +893,19 @@ msgstr "Reactivando el chat anterior..."
|
|
893 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:497
|
894 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:315
|
895 |
msgid "Chat offline. Leave a message"
|
896 |
-
msgstr "Chat offline.
|
897 |
|
898 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:498
|
899 |
msgid "Hello. Please input your details so that I may help you."
|
900 |
-
msgstr "¡Hola!
|
901 |
|
902 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
903 |
msgid ""
|
904 |
"We are currently offline. Please leave a message and we'll get back to you "
|
905 |
"shortly."
|
906 |
msgstr ""
|
907 |
-
"En este momento no estamos en línea. Por favor, deje un mensaje y
|
908 |
-
"
|
909 |
|
910 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
|
911 |
msgid "Sending message..."
|
@@ -913,13 +913,13 @@ msgstr "Enviando mensaje..."
|
|
913 |
|
914 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
|
915 |
msgid "Thank you for your message. We will be in contact soon."
|
916 |
-
msgstr "Gracias por
|
917 |
|
918 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
919 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
|
920 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:999
|
921 |
msgid "Press ENTER to send your message"
|
922 |
-
msgstr "Presione
|
923 |
|
924 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:503
|
925 |
msgid "Welcome. How may I help you?"
|
@@ -960,11 +960,11 @@ msgstr "Ver historial de Chats"
|
|
960 |
|
961 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:718
|
962 |
msgid "Minize Chat Window"
|
963 |
-
msgstr "Minimizar ventana de chat"
|
964 |
|
965 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:719
|
966 |
msgid "Close Chat Window"
|
967 |
-
msgstr "Cerrar ventana de chat"
|
968 |
|
969 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:804
|
970 |
msgid "Send message"
|
@@ -1019,7 +1019,7 @@ msgstr "Finalizar chat"
|
|
1019 |
|
1020 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1134
|
1021 |
msgid "Attempting to open the chat window... Please be patient."
|
1022 |
-
msgstr "Intentando abrir la ventana del chat... Por favor,
|
1023 |
|
1024 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1231
|
1025 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1593
|
@@ -1062,7 +1062,7 @@ msgstr "Se ha producido un error desconocido"
|
|
1062 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1837
|
1063 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:256
|
1064 |
msgid "Live Chat"
|
1065 |
-
msgstr "Chat en
|
1066 |
|
1067 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1838
|
1068 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:257
|
@@ -1191,7 +1191,7 @@ msgstr "El usuario está navegando pero no quiere chatear"
|
|
1191 |
|
1192 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:671
|
1193 |
msgid "Get Pro Add-on to accept more chats"
|
1194 |
-
msgstr "Obtenga la versión Pro para aceptar más chats"
|
1195 |
|
1196 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:915
|
1197 |
msgid "You have not missed any chat requests."
|
@@ -1215,7 +1215,7 @@ msgstr "Su dirección de correo electrónico"
|
|
1215 |
|
1216 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1217 |
msgid "Your Website"
|
1218 |
-
msgstr "Su
|
1219 |
|
1220 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1221 |
msgid "Send Feedback"
|
@@ -1269,7 +1269,7 @@ msgstr "únicamente"
|
|
1269 |
|
1270 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
|
1271 |
msgid " once off. Updates included forever."
|
1272 |
-
msgstr " en un solo pago. Incluye actualizaciones
|
1273 |
|
1274 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:303
|
1275 |
msgid "Get offline messages with the "
|
@@ -1286,7 +1286,7 @@ msgstr "Edite estos campos de texto usando la "
|
|
1286 |
|
1287 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
|
1288 |
msgid "Choose a colour scheme. Only available in the"
|
1289 |
-
msgstr "Elija
|
1290 |
|
1291 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
|
1292 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
|
@@ -1328,11 +1328,11 @@ msgstr "Texto de la segunda sección"
|
|
1328 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:382
|
1329 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:521
|
1330 |
msgid "Connecting you to a sales person. Please be patient."
|
1331 |
-
msgstr "
|
1332 |
|
1333 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:388
|
1334 |
msgid "Reactivate chat section text"
|
1335 |
-
msgstr "Texto de la sección
|
1336 |
|
1337 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:405
|
1338 |
msgid "Multiple Agents"
|
@@ -1358,7 +1358,7 @@ msgstr "Elija una animación (sólo en la versión Pro)"
|
|
1358 |
msgid ""
|
1359 |
"Block visitors from chatting to you based on their IP address using the "
|
1360 |
msgstr ""
|
1361 |
-
"Bloquee visitantes
|
1362 |
"utilizando la "
|
1363 |
|
1364 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
@@ -1371,7 +1371,7 @@ msgstr "Versión 4"
|
|
1371 |
|
1372 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1373 |
msgid "Provide Instant Live Chat Support!"
|
1374 |
-
msgstr "¡Incluya soporte instantáneo de chat en
|
1375 |
|
1376 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1377 |
msgid "How did you find us?"
|
@@ -1407,7 +1407,7 @@ msgstr "Enviar"
|
|
1407 |
|
1408 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1409 |
msgid "Skip"
|
1410 |
-
msgstr "
|
1411 |
|
1412 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:225
|
1413 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1271
|
@@ -1433,10 +1433,10 @@ msgid ""
|
|
1433 |
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1434 |
"experience for both yourself and your visitors."
|
1435 |
msgstr ""
|
1436 |
-
"El recuadro de chat
|
1437 |
-
"
|
1438 |
-
"
|
1439 |
-
"
|
1440 |
|
1441 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
|
1442 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:839
|
@@ -1468,7 +1468,8 @@ msgstr "Versión 4.4.8"
|
|
1468 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:836
|
1469 |
msgid "to take advantage of chat window transitions and colour schemes."
|
1470 |
msgstr ""
|
1471 |
-
"para usar las transiciones de ventana del chat y
|
|
|
1472 |
|
1473 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:863
|
1474 |
msgid "Experiencing problems with the plugin?"
|
@@ -1488,7 +1489,7 @@ msgstr "Foro de Soporte."
|
|
1488 |
|
1489 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:894
|
1490 |
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1491 |
-
msgstr "Con la versión Pro de WP Live Chat Support
|
1492 |
|
1493 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:895
|
1494 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:896
|
@@ -1497,19 +1498,19 @@ msgstr "ver quién está en línea e iniciar chats"
|
|
1497 |
|
1498 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:897
|
1499 |
msgid "with your online visitors with the click of a button."
|
1500 |
-
msgstr "con los visitantes de
|
1501 |
|
1502 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:898
|
1503 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1504 |
msgstr ""
|
1505 |
"Compre la versión Pro ahora por un pago único de sólo $19.95. "
|
1506 |
-
"Actualizaciones gratuitas
|
1507 |
|
1508 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:900
|
1509 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1510 |
msgstr ""
|
1511 |
"Compre la versión Pro ahora por un pago único de sólo $19.95. "
|
1512 |
-
"Actualizaciones gratuitas
|
1513 |
|
1514 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:952
|
1515 |
msgid "Previous"
|
@@ -1525,7 +1526,7 @@ msgstr "Chat con"
|
|
1525 |
|
1526 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
|
1527 |
msgid "Add Quick Responses to your Live Chat"
|
1528 |
-
msgstr "Añadir respuestas rápidas para su chat en
|
1529 |
|
1530 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
|
1531 |
msgid "Pro version only"
|
@@ -1567,17 +1568,18 @@ msgstr ""
|
|
1567 |
|
1568 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1491
|
1569 |
msgid "Thank You for your feedback!"
|
1570 |
-
msgstr "¡Gracias por enviar su
|
1571 |
|
1572 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1495
|
1573 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1508
|
1574 |
msgid "Thank you for your feedback. We will be in touch soon"
|
1575 |
-
msgstr "Gracias por enviar su
|
1576 |
|
1577 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1511
|
1578 |
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1579 |
msgstr ""
|
1580 |
-
"Hubo un problema al enviar su
|
|
|
1581 |
|
1582 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1544
|
1583 |
msgid ""
|
@@ -1613,7 +1615,7 @@ msgid ""
|
|
1613 |
"Getting started? Read through some of these articles to help you along your "
|
1614 |
"way."
|
1615 |
msgstr ""
|
1616 |
-
"¿
|
1617 |
"proceso."
|
1618 |
|
1619 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1568
|
@@ -1622,7 +1624,7 @@ msgstr "Documentación:"
|
|
1622 |
|
1623 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1570
|
1624 |
msgid "Installing the WP Live Chat Support Pro add-on"
|
1625 |
-
msgstr "
|
1626 |
|
1627 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1571
|
1628 |
msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
|
@@ -1630,7 +1632,7 @@ msgstr "Usando el plugin WP Live Chat Support por primera vez (Pro)"
|
|
1630 |
|
1631 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1572
|
1632 |
msgid "Upgrading your licence (Pro)"
|
1633 |
-
msgstr "
|
1634 |
|
1635 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1573
|
1636 |
msgid "Minimum System Requirements"
|
@@ -1638,11 +1640,11 @@ msgstr "Requisitos mínimos del sistema"
|
|
1638 |
|
1639 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1575
|
1640 |
msgid "FAQ's:"
|
1641 |
-
msgstr "
|
1642 |
|
1643 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1577
|
1644 |
msgid "How do I check for JavaScript errors on my site?"
|
1645 |
-
msgstr "¿Cómo puedo comprobar errores de JavaScript en mi
|
1646 |
|
1647 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1578
|
1648 |
msgid "What are Quick Responses?"
|
@@ -1663,7 +1665,7 @@ msgstr "¿Tiene una aplicación móvil?"
|
|
1663 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1582
|
1664 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1665 |
msgstr ""
|
1666 |
-
"¿Tengo que
|
1667 |
|
1668 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1586
|
1669 |
msgid "Troubleshooting"
|
@@ -1689,7 +1691,7 @@ msgstr "El recuadro del chat no aparece"
|
|
1689 |
|
1690 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1592
|
1691 |
msgid "The chat window disappears when I logout or go offline"
|
1692 |
-
msgstr "La ventana del chat desaparece cuando cierro sesión o me desconecto"
|
1693 |
|
1694 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1594
|
1695 |
msgid "Messages only show when I refresh the chat window"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplivechat\n"
|
4 |
"POT-Creation-Date: 2015-03-16 07:56+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-01-18 14:58+0100\n"
|
6 |
"Last-Translator: Caribdis Web Design <caribdisweb@gmail.com>\n"
|
7 |
"Language-Team: Caribdis Web Design <caribdisweb@gmail.com>\n"
|
8 |
"Language: es_ES\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.8.6\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-"
|
18 |
+
"support\n"
|
19 |
+
"X-Poedit-SearchPath-1: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-"
|
20 |
+
"support-pro\n"
|
21 |
|
22 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:264
|
23 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:228
|
64 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:241
|
65 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
66 |
msgid "Site Info"
|
67 |
+
msgstr "Información de la pagina web"
|
68 |
|
69 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:89
|
70 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:259
|
115 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
116 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
117 |
msgid "Accept Chat"
|
118 |
+
msgstr "Aceptar el chat"
|
119 |
|
120 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
121 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
195 |
|
196 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
197 |
msgid "Someone wants to chat with you on your website"
|
198 |
+
msgstr "Alguien quiere chatear con usted desde su pagina web"
|
199 |
|
200 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
201 |
msgid "Log in"
|
220 |
|
221 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:548
|
222 |
msgid "Please contact the administrator of this website to change this."
|
223 |
+
msgstr ""
|
224 |
+
"Por favor, contacte con el administrador de la pagina web para cambiar esto."
|
225 |
|
226 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:634
|
227 |
msgid "Chat Agent Online"
|
330 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
|
331 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:57
|
332 |
msgid "Hides chat for 24hrs when user clicks X"
|
333 |
+
msgstr "Ocultar el chat durnte 24 hs cuando el usuario hace clic en la X"
|
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:73
|
342 |
msgid ""
|
343 |
"Users will have to enter their Name and Email Address when starting a chat"
|
344 |
msgstr ""
|
345 |
+
"Los usuarios tendrán que informar su nombre y dirección de correo "
|
346 |
"electrónico para iniciar el chat"
|
347 |
|
348 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:78
|
354 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:83
|
355 |
msgid "This is the text that will show in place of the Name And Email fields"
|
356 |
msgstr ""
|
357 |
+
"Este texto se mostrará en los campos Nombre y Dirección de correo "
|
358 |
"electrónico"
|
359 |
|
360 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
361 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:91
|
362 |
msgid "Use Logged In User Details"
|
363 |
+
msgstr "Utilizar los detalles del usuario conectado"
|
364 |
|
365 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
366 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
407 |
"(Use comma-separated Page ID's)"
|
408 |
msgstr ""
|
409 |
"Mostrar la ventana del chat en las siguientes páginas. Deje en blanco para "
|
410 |
+
"mostrarla en todas. (Separar los IDs de pagina con comas)"
|
411 |
|
412 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:119
|
413 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:129
|
430 |
"all. (Use comma-separated Page ID's)"
|
431 |
msgstr ""
|
432 |
"No mostrar la ventana del chat en las siguientes páginas. Deje en blanco "
|
433 |
+
"para mostrarla en todas. (Separar los IDs de pagina con comas)"
|
434 |
|
435 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:133
|
436 |
msgid "Allow any user to make themselves a chat agent"
|
447 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:143
|
448 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
449 |
msgid "Chat Window Settings"
|
450 |
+
msgstr "Ajustes de la ventana de chat"
|
451 |
|
452 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:146
|
453 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:156
|
545 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:229
|
546 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:246
|
547 |
msgid "Alert me via email as soon as someone wants to chat"
|
548 |
+
msgstr "Avisarme por correo electrónico tan pronto como alguien quiere chatear"
|
|
|
549 |
|
550 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:230
|
551 |
msgid "(while online only)"
|
598 |
|
599 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:283
|
600 |
msgid "Email address where offline messages are delivered to"
|
601 |
+
msgstr "Dirección de correo electrónico donde se envían los mensajes offline"
|
|
|
602 |
|
603 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:284
|
604 |
msgid ""
|
696 |
|
697 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:451
|
698 |
msgid "Intro Text"
|
699 |
+
msgstr "Texto de introducción"
|
700 |
|
701 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:457
|
702 |
msgid "Second Section Text"
|
704 |
|
705 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:464
|
706 |
msgid "Reactivate Chat Section Text"
|
707 |
+
msgstr "Reactivar la sección de texto del Chat"
|
708 |
|
709 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:472
|
710 |
msgid "User chat welcome"
|
711 |
+
msgstr "Bienvenida del usuario al chat"
|
712 |
|
713 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:481
|
714 |
msgid "Other text"
|
716 |
|
717 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:483
|
718 |
msgid "This text is shown above the user chat input field"
|
719 |
+
msgstr ""
|
720 |
+
"Este texto se muestra encima del campo de entrada del usuario del chat"
|
721 |
|
722 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
723 |
msgid "Current Users that are Chat Agents"
|
772 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:592
|
773 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
|
774 |
msgid "Blocked Visitors - Based on IP Address"
|
775 |
+
msgstr "Visitantes bloqueados - Segun la dirección IP"
|
776 |
|
777 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:593
|
778 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:466
|
820 |
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
821 |
"user experience for both yourself and your visitors."
|
822 |
msgstr ""
|
823 |
+
"El recuadro de chat de su pagina web ha sido temporalmente desactivado, "
|
824 |
+
"hasta que se actualice la versión básica del plugin. Esto es para asegurar "
|
825 |
+
"una experiencia de usuario sin problemas y sin complicaciones para usted y "
|
826 |
+
"sus visitantes."
|
827 |
|
828 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:460
|
829 |
msgid ""
|
878 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:381
|
879 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:518
|
880 |
msgid "Start Chat"
|
881 |
+
msgstr "Iniciar el Chat"
|
882 |
|
883 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:495
|
884 |
msgid "Connecting. Please be patient..."
|
885 |
+
msgstr "Conectando. Por favor, espere..."
|
886 |
|
887 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:496
|
888 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:390
|
893 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:497
|
894 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:315
|
895 |
msgid "Chat offline. Leave a message"
|
896 |
+
msgstr "Chat offline. Dejenos un mensaje"
|
897 |
|
898 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:498
|
899 |
msgid "Hello. Please input your details so that I may help you."
|
900 |
+
msgstr "¡Hola! Por favor, introduzca sus datos para que pueda ayudarle."
|
901 |
|
902 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
903 |
msgid ""
|
904 |
"We are currently offline. Please leave a message and we'll get back to you "
|
905 |
"shortly."
|
906 |
msgstr ""
|
907 |
+
"En este momento no estamos en línea. Por favor, deje un mensaje y le "
|
908 |
+
"contactaremos en breve."
|
909 |
|
910 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
|
911 |
msgid "Sending message..."
|
913 |
|
914 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
|
915 |
msgid "Thank you for your message. We will be in contact soon."
|
916 |
+
msgstr "Gracias por su mensaje. Le contactaremos en breve."
|
917 |
|
918 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
919 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
|
920 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:999
|
921 |
msgid "Press ENTER to send your message"
|
922 |
+
msgstr "Presione INTRO para enviar su mensaje"
|
923 |
|
924 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:503
|
925 |
msgid "Welcome. How may I help you?"
|
960 |
|
961 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:718
|
962 |
msgid "Minize Chat Window"
|
963 |
+
msgstr "Minimizar la ventana de chat"
|
964 |
|
965 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:719
|
966 |
msgid "Close Chat Window"
|
967 |
+
msgstr "Cerrar la ventana de chat"
|
968 |
|
969 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:804
|
970 |
msgid "Send message"
|
1019 |
|
1020 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1134
|
1021 |
msgid "Attempting to open the chat window... Please be patient."
|
1022 |
+
msgstr "Intentando abrir la ventana del chat... Por favor, espere."
|
1023 |
|
1024 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1231
|
1025 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1593
|
1062 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1837
|
1063 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:256
|
1064 |
msgid "Live Chat"
|
1065 |
+
msgstr "Chat en directo"
|
1066 |
|
1067 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1838
|
1068 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:257
|
1191 |
|
1192 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:671
|
1193 |
msgid "Get Pro Add-on to accept more chats"
|
1194 |
+
msgstr "Obtenga la versión Pro para poder aceptar más chats"
|
1195 |
|
1196 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:915
|
1197 |
msgid "You have not missed any chat requests."
|
1215 |
|
1216 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1217 |
msgid "Your Website"
|
1218 |
+
msgstr "Su pagina web"
|
1219 |
|
1220 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1221 |
msgid "Send Feedback"
|
1269 |
|
1270 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
|
1271 |
msgid " once off. Updates included forever."
|
1272 |
+
msgstr " en un solo pago. Incluye actualizaciones para siempre."
|
1273 |
|
1274 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:303
|
1275 |
msgid "Get offline messages with the "
|
1286 |
|
1287 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
|
1288 |
msgid "Choose a colour scheme. Only available in the"
|
1289 |
+
msgstr "Elija una combinación de colores. Sólo disponible en la"
|
1290 |
|
1291 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:343
|
1292 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
|
1328 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:382
|
1329 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:521
|
1330 |
msgid "Connecting you to a sales person. Please be patient."
|
1331 |
+
msgstr "Conectándole con un vendedor... Por favor, espere."
|
1332 |
|
1333 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:388
|
1334 |
msgid "Reactivate chat section text"
|
1335 |
+
msgstr "Texto de la sección de reactivacion del chat"
|
1336 |
|
1337 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:405
|
1338 |
msgid "Multiple Agents"
|
1358 |
msgid ""
|
1359 |
"Block visitors from chatting to you based on their IP address using the "
|
1360 |
msgstr ""
|
1361 |
+
"Bloquee a visitantes de sus conversaciones según sus direcciónes IP "
|
1362 |
"utilizando la "
|
1363 |
|
1364 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1371 |
|
1372 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1373 |
msgid "Provide Instant Live Chat Support!"
|
1374 |
+
msgstr "¡Incluya soporte instantáneo de chat en directo!"
|
1375 |
|
1376 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1377 |
msgid "How did you find us?"
|
1407 |
|
1408 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1409 |
msgid "Skip"
|
1410 |
+
msgstr "Omitir"
|
1411 |
|
1412 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:225
|
1413 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1271
|
1433 |
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1434 |
"experience for both yourself and your visitors."
|
1435 |
msgstr ""
|
1436 |
+
"El recuadro de chat de su pagina web ha sido temporalmente desactivado, "
|
1437 |
+
"hasta que se actualice la versión Pro del plugin. Esto es para asegurar una "
|
1438 |
+
"experiencia de usuario sin problemas y sin complicaciones para usted y sus "
|
1439 |
+
"visitantes."
|
1440 |
|
1441 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
|
1442 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:839
|
1468 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:836
|
1469 |
msgid "to take advantage of chat window transitions and colour schemes."
|
1470 |
msgstr ""
|
1471 |
+
" para usar las transiciones de ventana del chat y las combinaciones de "
|
1472 |
+
"colores."
|
1473 |
|
1474 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:863
|
1475 |
msgid "Experiencing problems with the plugin?"
|
1489 |
|
1490 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:894
|
1491 |
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1492 |
+
msgstr "Con la versión Pro de WP Live Chat Support puedes"
|
1493 |
|
1494 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:895
|
1495 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:896
|
1498 |
|
1499 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:897
|
1500 |
msgid "with your online visitors with the click of a button."
|
1501 |
+
msgstr "con los visitantes de tu pagina web en un soló clic."
|
1502 |
|
1503 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:898
|
1504 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1505 |
msgstr ""
|
1506 |
"Compre la versión Pro ahora por un pago único de sólo $19.95. "
|
1507 |
+
"Actualizaciones gratuitas para SIEMPRE."
|
1508 |
|
1509 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:900
|
1510 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1511 |
msgstr ""
|
1512 |
"Compre la versión Pro ahora por un pago único de sólo $19.95. "
|
1513 |
+
"Actualizaciones gratuitas para siempre.."
|
1514 |
|
1515 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:952
|
1516 |
msgid "Previous"
|
1526 |
|
1527 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
|
1528 |
msgid "Add Quick Responses to your Live Chat"
|
1529 |
+
msgstr "Añadir respuestas rápidas para su chat en directo"
|
1530 |
|
1531 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1000
|
1532 |
msgid "Pro version only"
|
1568 |
|
1569 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1491
|
1570 |
msgid "Thank You for your feedback!"
|
1571 |
+
msgstr "¡Gracias por enviar su comentario!"
|
1572 |
|
1573 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1495
|
1574 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1508
|
1575 |
msgid "Thank you for your feedback. We will be in touch soon"
|
1576 |
+
msgstr "Gracias por enviar su comentario. Le contactaremos en breve."
|
1577 |
|
1578 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1511
|
1579 |
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1580 |
msgstr ""
|
1581 |
+
"Hubo un problema al enviar su comentario. Por favor, registre su comnetario "
|
1582 |
+
"en "
|
1583 |
|
1584 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1544
|
1585 |
msgid ""
|
1615 |
"Getting started? Read through some of these articles to help you along your "
|
1616 |
"way."
|
1617 |
msgstr ""
|
1618 |
+
"¿Empezando? Lea algunos de estos artículos para ayudarle durante en el "
|
1619 |
"proceso."
|
1620 |
|
1621 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1568
|
1624 |
|
1625 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1570
|
1626 |
msgid "Installing the WP Live Chat Support Pro add-on"
|
1627 |
+
msgstr "Instalación del complemento WP Live Chat Support Pro"
|
1628 |
|
1629 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1571
|
1630 |
msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
|
1632 |
|
1633 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1572
|
1634 |
msgid "Upgrading your licence (Pro)"
|
1635 |
+
msgstr "Actualización de su licencia (Pro)"
|
1636 |
|
1637 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1573
|
1638 |
msgid "Minimum System Requirements"
|
1640 |
|
1641 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1575
|
1642 |
msgid "FAQ's:"
|
1643 |
+
msgstr "Preguntas frecuentes"
|
1644 |
|
1645 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1577
|
1646 |
msgid "How do I check for JavaScript errors on my site?"
|
1647 |
+
msgstr "¿Cómo puedo comprobar errores de JavaScript en mi pagina web?"
|
1648 |
|
1649 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1578
|
1650 |
msgid "What are Quick Responses?"
|
1665 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1582
|
1666 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1667 |
msgstr ""
|
1668 |
+
"¿Tengo que estar conectado al Escritorio para chatear con los visitantes?"
|
1669 |
|
1670 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1586
|
1671 |
msgid "Troubleshooting"
|
1691 |
|
1692 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1592
|
1693 |
msgid "The chat window disappears when I logout or go offline"
|
1694 |
+
msgstr "La ventana del chat desaparece cuando cierro mi sesión o me desconecto"
|
1695 |
|
1696 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1594
|
1697 |
msgid "Messages only show when I refresh the chat window"
|
languages/wplivechat-fa_IR.mo
ADDED
Binary file
|
languages/wplivechat-fa_IR.po
ADDED
@@ -0,0 +1,1523 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP Live Chat Support\n"
|
4 |
+
"POT-Creation-Date: 2016-04-03 13:14+0430\n"
|
5 |
+
"PO-Revision-Date: 2016-04-03 13:15+0430\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: fa_IR\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.8.7\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-WPHeader: wp-live-chat-support.php\n"
|
15 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: ajax_new.php:206
|
24 |
+
msgid "Admin has closed and ended the chat"
|
25 |
+
msgstr "مدیر سایت پنجره را بست و گفتگو خاتمه یافت"
|
26 |
+
|
27 |
+
#: ajax_new.php:230
|
28 |
+
msgid "There is No Answer. Please Try Again Later"
|
29 |
+
msgstr "پاسخی دریافت نشد. لطفا پس از مدتی دوباره تلاش کنید."
|
30 |
+
|
31 |
+
#: functions.php:265
|
32 |
+
msgid "No chat sessions available at the moment"
|
33 |
+
msgstr "در این لحظه کسی آماده گفتگو نیست."
|
34 |
+
|
35 |
+
#: functions.php:267
|
36 |
+
msgid "Active Chats"
|
37 |
+
msgstr "گفتگوی فعال"
|
38 |
+
|
39 |
+
#: functions.php:282 functions.php:474 wp-live-chat-support.php:2057
|
40 |
+
msgid "IP Address not recorded"
|
41 |
+
msgstr "آدرس آی پی ذخیره نشده"
|
42 |
+
|
43 |
+
#: functions.php:284 functions.php:476 wp-live-chat-support.php:2059
|
44 |
+
msgid "Whois for"
|
45 |
+
msgstr "جستجوی دامنه برای"
|
46 |
+
|
47 |
+
#: functions.php:289 functions.php:431 functions.php:1249
|
48 |
+
msgid "Accept Chat"
|
49 |
+
msgstr "گفتگو پذیرفته شد"
|
50 |
+
|
51 |
+
#: functions.php:291
|
52 |
+
msgid "Incoming Chat"
|
53 |
+
msgstr "درخواست گفتگو"
|
54 |
+
|
55 |
+
#: functions.php:291
|
56 |
+
msgid "You have an incoming chat."
|
57 |
+
msgstr "شما یک درخواست گفتگو دارید."
|
58 |
+
|
59 |
+
#: functions.php:295
|
60 |
+
msgid "Open Chat Window"
|
61 |
+
msgstr "باز کردن پنجره گفتگو"
|
62 |
+
|
63 |
+
#: functions.php:297
|
64 |
+
msgid "Chat Active"
|
65 |
+
msgstr "گفتگوی فعال"
|
66 |
+
|
67 |
+
#: functions.php:297
|
68 |
+
msgid "This chat is active"
|
69 |
+
msgstr "این گفتگو فعال است"
|
70 |
+
|
71 |
+
#: functions.php:320 wp-live-chat-support.php:2088
|
72 |
+
msgid "Site Info"
|
73 |
+
msgstr "اطلاعات سایت"
|
74 |
+
|
75 |
+
#: functions.php:322 wp-live-chat-support.php:2090
|
76 |
+
msgid "Chat initiated on:"
|
77 |
+
msgstr "گفتگو شروع شد با:"
|
78 |
+
|
79 |
+
#: functions.php:326 wp-live-chat-support.php:2094
|
80 |
+
msgid "Advanced Info"
|
81 |
+
msgstr "اطلاعات تکمیلی"
|
82 |
+
|
83 |
+
#: functions.php:328 wp-live-chat-support.php:2096
|
84 |
+
msgid "Browser:"
|
85 |
+
msgstr "مرور کردن:"
|
86 |
+
|
87 |
+
#: functions.php:329 wp-live-chat-support.php:2097
|
88 |
+
msgid "IP Address:"
|
89 |
+
msgstr "آدرس آی پی:"
|
90 |
+
|
91 |
+
#: functions.php:436
|
92 |
+
msgid "Open Chat"
|
93 |
+
msgstr "گفتگوی فعال"
|
94 |
+
|
95 |
+
#: functions.php:439
|
96 |
+
msgid "Only chat agents can accept chats"
|
97 |
+
msgstr "فقط مسئولین سایت قادر به پذیرش گفتگو می باشند."
|
98 |
+
|
99 |
+
#: functions.php:499
|
100 |
+
msgid "New"
|
101 |
+
msgstr "جدید"
|
102 |
+
|
103 |
+
#: functions.php:501
|
104 |
+
msgid "Returning"
|
105 |
+
msgstr "بازگشت"
|
106 |
+
|
107 |
+
#: functions.php:890
|
108 |
+
msgid "complete"
|
109 |
+
msgstr "کامل"
|
110 |
+
|
111 |
+
#: functions.php:893
|
112 |
+
msgid "pending"
|
113 |
+
msgstr "در حال انتظار"
|
114 |
+
|
115 |
+
#: functions.php:896
|
116 |
+
msgid "active"
|
117 |
+
msgstr "فعال"
|
118 |
+
|
119 |
+
#: functions.php:899
|
120 |
+
msgid "deleted"
|
121 |
+
msgstr "حذف شده"
|
122 |
+
|
123 |
+
#: functions.php:902
|
124 |
+
msgid "browsing"
|
125 |
+
msgstr "مرور کردن"
|
126 |
+
|
127 |
+
#: functions.php:905
|
128 |
+
msgid "requesting chat"
|
129 |
+
msgstr "درخواست گفتگو"
|
130 |
+
|
131 |
+
#: functions.php:908
|
132 |
+
msgid "Chat Ended - User still browsing"
|
133 |
+
msgstr "گفتگو پایان یافت - کاربر هنوز در حال مرور صفحات می باشد"
|
134 |
+
|
135 |
+
#: functions.php:911
|
136 |
+
msgid "User is browsing but doesn't want to chat"
|
137 |
+
msgstr "کاربر در حال مرور صفحات می باشد ولی تمایلی به گفتگو ندارد"
|
138 |
+
|
139 |
+
#: functions.php:1093
|
140 |
+
msgid "WP Live Chat Support - Offline Message from "
|
141 |
+
msgstr "WP Live Chat Support - پیام آفلاین از"
|
142 |
+
|
143 |
+
#: functions.php:1094 functions.php:1467 includes/deprecated.php:191
|
144 |
+
#: includes/deprecated.php:390 wp-live-chat-support.php:1084
|
145 |
+
#: wp-live-chat-support.php:1267 wp-live-chat-support.php:2446
|
146 |
+
#: wp-live-chat-support.php:2556
|
147 |
+
msgid "Name"
|
148 |
+
msgstr "نام"
|
149 |
+
|
150 |
+
#: functions.php:1095 functions.php:1468 includes/deprecated.php:192
|
151 |
+
#: includes/deprecated.php:391 wp-live-chat-support.php:1085
|
152 |
+
#: wp-live-chat-support.php:1268 wp-live-chat-support.php:2447
|
153 |
+
#: wp-live-chat-support.php:2557
|
154 |
+
msgid "Email"
|
155 |
+
msgstr "آدرس پست الکترونیکی"
|
156 |
+
|
157 |
+
#: functions.php:1096 wp-live-chat-support.php:1269
|
158 |
+
#: wp-live-chat-support.php:2558 wp-live-chat-support.php:3476
|
159 |
+
msgid "Message"
|
160 |
+
msgstr "پیام"
|
161 |
+
|
162 |
+
#: functions.php:1097
|
163 |
+
msgid "Via WP Live Chat Support"
|
164 |
+
msgstr "توسط Via WP Live Chat Support"
|
165 |
+
|
166 |
+
#: functions.php:1249
|
167 |
+
msgid "Get Pro Add-on to accept more chats"
|
168 |
+
msgstr "جهت دریافت گفتگوی همزمان بیشتر، نسخه پیشرفته را دریافت کنید"
|
169 |
+
|
170 |
+
#: functions.php:1466 wp-live-chat-support.php:2445
|
171 |
+
#: wp-live-chat-support.php:2555
|
172 |
+
msgid "Date"
|
173 |
+
msgstr "تاریخ"
|
174 |
+
|
175 |
+
#: functions.php:1469 wp-live-chat-support.php:2448
|
176 |
+
msgid "URL"
|
177 |
+
msgstr "URL"
|
178 |
+
|
179 |
+
#: functions.php:1496
|
180 |
+
msgid "You have not missed any chat requests."
|
181 |
+
msgstr "شما هیچ درخواستی برای گفتگو را از دست نداده اید."
|
182 |
+
|
183 |
+
#: includes/deprecated.php:150 includes/deprecated.php:347
|
184 |
+
#: wp-live-chat-support.php:434 wp-live-chat-support.php:1358
|
185 |
+
msgid "Questions?"
|
186 |
+
msgstr "سئوالات؟"
|
187 |
+
|
188 |
+
#: includes/deprecated.php:150 includes/deprecated.php:347
|
189 |
+
#: wp-live-chat-support.php:435 wp-live-chat-support.php:1359
|
190 |
+
msgid "Chat with us"
|
191 |
+
msgstr "گفتگو با ما"
|
192 |
+
|
193 |
+
#: includes/deprecated.php:157 includes/deprecated.php:354
|
194 |
+
msgid "Start Live Chat"
|
195 |
+
msgstr "شروع گفتگوی آنلاین"
|
196 |
+
|
197 |
+
#: includes/deprecated.php:209 includes/deprecated.php:409
|
198 |
+
#: wp-live-chat-support.php:437
|
199 |
+
msgid "Start Chat"
|
200 |
+
msgstr "شروع گفتگو"
|
201 |
+
|
202 |
+
#: includes/deprecated.php:212 includes/deprecated.php:412
|
203 |
+
msgid "Connecting you to a sales person. Please be patient."
|
204 |
+
msgstr "لطفا صبور باشید. به زودی به گروه پشتیبانی متصل خواهید شد."
|
205 |
+
|
206 |
+
#: includes/deprecated.php:215 includes/deprecated.php:415
|
207 |
+
#: wp-live-chat-support.php:439 wp-live-chat-support.php:1451
|
208 |
+
msgid "Reactivating your previous chat..."
|
209 |
+
msgstr "فعال سازی مجدد گفتگوی قبلی شما..."
|
210 |
+
|
211 |
+
#: includes/deprecated.php:220 includes/deprecated.php:420
|
212 |
+
#: wp-live-chat-support.php:441 wp-live-chat-support.php:2109
|
213 |
+
msgid "Press ENTER to send your message"
|
214 |
+
msgstr "به منظور ارسال پیام، دکمه ENTER بر روی صفحه کلید را فشار دهید"
|
215 |
+
|
216 |
+
#: includes/deprecated.php:224 includes/deprecated.php:424
|
217 |
+
#: wp-live-chat-support.php:1337 wp-live-chat-support.php:2123
|
218 |
+
msgid "Send"
|
219 |
+
msgstr "ارسال"
|
220 |
+
|
221 |
+
#: includes/feedback-page.php:7
|
222 |
+
msgid "WP Live Chat Support Feedback"
|
223 |
+
msgstr "ارسال بازخورد به WP Live Chat Support"
|
224 |
+
|
225 |
+
#: includes/feedback-page.php:8
|
226 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
227 |
+
msgstr "ما مشتاقانه در انتظار دریافت نظرات و / یا پیشنهادات شما هستیم"
|
228 |
+
|
229 |
+
#: includes/feedback-page.php:13
|
230 |
+
msgid "Your Name"
|
231 |
+
msgstr "نام شما"
|
232 |
+
|
233 |
+
#: includes/feedback-page.php:21
|
234 |
+
msgid "Your Email"
|
235 |
+
msgstr "آدرس پست الکترونیکی شما"
|
236 |
+
|
237 |
+
#: includes/feedback-page.php:29
|
238 |
+
msgid "Your Website"
|
239 |
+
msgstr "آدرس وبسایت شما"
|
240 |
+
|
241 |
+
#: includes/feedback-page.php:37 wp-live-chat-support.php:578
|
242 |
+
msgid "Feedback"
|
243 |
+
msgstr "بازخورد"
|
244 |
+
|
245 |
+
#: includes/feedback-page.php:48
|
246 |
+
msgid "Send Feedback"
|
247 |
+
msgstr "ارسال بازخورد"
|
248 |
+
|
249 |
+
#: includes/settings_page.php:20
|
250 |
+
msgid "WP Live Chat Support Settings"
|
251 |
+
msgstr "تنظیمات WP Live Chat Support"
|
252 |
+
|
253 |
+
#: includes/settings_page.php:42
|
254 |
+
msgid "General Settings"
|
255 |
+
msgstr "تنظیمات عمومی"
|
256 |
+
|
257 |
+
#: includes/settings_page.php:47
|
258 |
+
msgid "Chat Box"
|
259 |
+
msgstr "بخش گفتگو"
|
260 |
+
|
261 |
+
#: includes/settings_page.php:52 includes/settings_page.php:203
|
262 |
+
#: wp-live-chat-support.php:571 wp-live-chat-support.php:574
|
263 |
+
msgid "Offline Messages"
|
264 |
+
msgstr "پیام های آفلاین"
|
265 |
+
|
266 |
+
#: includes/settings_page.php:57 includes/settings_page.php:344
|
267 |
+
msgid "Styling"
|
268 |
+
msgstr "استایل"
|
269 |
+
|
270 |
+
#: includes/settings_page.php:62
|
271 |
+
msgid "Agents"
|
272 |
+
msgstr "مسئولین سایت"
|
273 |
+
|
274 |
+
#: includes/settings_page.php:67
|
275 |
+
msgid "Blocked Visitors"
|
276 |
+
msgstr "بازدید کننده های مسدود شده"
|
277 |
+
|
278 |
+
#: includes/settings_page.php:80
|
279 |
+
msgid "Main Settings"
|
280 |
+
msgstr "تنظیمات اصلی"
|
281 |
+
|
282 |
+
#: includes/settings_page.php:83
|
283 |
+
msgid "Chat enabled"
|
284 |
+
msgstr "گفتگو فعال شده"
|
285 |
+
|
286 |
+
#: includes/settings_page.php:86
|
287 |
+
msgid "Yes"
|
288 |
+
msgstr "بله"
|
289 |
+
|
290 |
+
#: includes/settings_page.php:87
|
291 |
+
msgid "No"
|
292 |
+
msgstr "خیر"
|
293 |
+
|
294 |
+
#: includes/settings_page.php:93
|
295 |
+
msgid "Hide Chat"
|
296 |
+
msgstr "پنهان کردن گفتگو"
|
297 |
+
|
298 |
+
#: includes/settings_page.php:93
|
299 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
300 |
+
msgstr "زمانی که کاربر دکمه بر روی دکمه X کلیک کند، گفتگو تا 24 ساعت مخفی شود"
|
301 |
+
|
302 |
+
#: includes/settings_page.php:101
|
303 |
+
msgid "Require Name And Email"
|
304 |
+
msgstr "نام و آدرس پست الکترونیک الزامی"
|
305 |
+
|
306 |
+
#: includes/settings_page.php:101
|
307 |
+
msgid ""
|
308 |
+
"Users will have to enter their Name and Email Address when starting a chat"
|
309 |
+
msgstr ""
|
310 |
+
"هنگام شروع یک گفتگو، کاربران باید نام و آدرس پست الکترونیکی خود را وارد "
|
311 |
+
"نمایند"
|
312 |
+
|
313 |
+
#: includes/settings_page.php:109
|
314 |
+
msgid "Input Field Replacement Text"
|
315 |
+
msgstr "فیلد ورود جایگزین متن"
|
316 |
+
|
317 |
+
#: includes/settings_page.php:109
|
318 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
319 |
+
msgstr "این متنی است که در فیلد نام و آدرس پست الکترونیکی نشان داده خواهد شد."
|
320 |
+
|
321 |
+
#: includes/settings_page.php:117
|
322 |
+
msgid "Use Logged In User Details"
|
323 |
+
msgstr "استفاده از اطلاعات کاربر در سایت لاگ این شده (وارد شده)"
|
324 |
+
|
325 |
+
#: includes/settings_page.php:117
|
326 |
+
msgid ""
|
327 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
328 |
+
"in."
|
329 |
+
msgstr ""
|
330 |
+
"در صورتی که کاربر در سایت لاگ این شده باشد، نام کاربری و آدرس پست الکترونیکی "
|
331 |
+
"وی به صورت پیش فرض استفاده می شود."
|
332 |
+
|
333 |
+
#: includes/settings_page.php:125
|
334 |
+
msgid "Enable On Mobile Devices"
|
335 |
+
msgstr "پنجره گفتگو در موبایل و تبلت نمایش داده شود"
|
336 |
+
|
337 |
+
#: includes/settings_page.php:125
|
338 |
+
msgid ""
|
339 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
340 |
+
"devices. (Smartphones and Tablets)"
|
341 |
+
msgstr ""
|
342 |
+
"غیر فعال کردن این گزینه بدین معنی است که کاربرانی که با تلفن هوشمند و تبلت "
|
343 |
+
"وارد سایت می شوند قادر به جت کردن نمی باشند."
|
344 |
+
|
345 |
+
#: includes/settings_page.php:133
|
346 |
+
msgid "Record a visitor's IP Address"
|
347 |
+
msgstr "ثبت کردن آدرس آی پی بازدید کنندگان"
|
348 |
+
|
349 |
+
#: includes/settings_page.php:133
|
350 |
+
msgid "Disable this to enable anonymity for your visitors"
|
351 |
+
msgstr ""
|
352 |
+
"غیر فعال کردن این گزینه بازدید کنندگان را قادر میسازد که نامشان در دفعات "
|
353 |
+
"بعدی مراجعه به سایت مشخص نشود."
|
354 |
+
|
355 |
+
#: includes/settings_page.php:141
|
356 |
+
msgid "Play a sound when a new message is received"
|
357 |
+
msgstr "پخش یک صدا در هنگام دریافت پیام جدید."
|
358 |
+
|
359 |
+
#: includes/settings_page.php:141
|
360 |
+
msgid ""
|
361 |
+
"Disable this to mute the sound that is played when a new chat message is "
|
362 |
+
"received"
|
363 |
+
msgstr "این گزینه را غیر فعال کنید تا هنگام دریافت چیام جدید صدایی پخش نشود"
|
364 |
+
|
365 |
+
#: includes/settings_page.php:153
|
366 |
+
msgid "Chat Window Settings"
|
367 |
+
msgstr "تنظیمات پنجره گفتگو"
|
368 |
+
|
369 |
+
#: includes/settings_page.php:156
|
370 |
+
msgid "Chat box alignment"
|
371 |
+
msgstr "تراز پنجره گفتگو"
|
372 |
+
|
373 |
+
#: includes/settings_page.php:159
|
374 |
+
msgid "Bottom left"
|
375 |
+
msgstr "پایین سمت چپ"
|
376 |
+
|
377 |
+
#: includes/settings_page.php:160
|
378 |
+
msgid "Bottom right"
|
379 |
+
msgstr "پایین سمت راست"
|
380 |
+
|
381 |
+
#: includes/settings_page.php:161
|
382 |
+
msgid "Left"
|
383 |
+
msgstr "چپ"
|
384 |
+
|
385 |
+
#: includes/settings_page.php:162
|
386 |
+
msgid "Right"
|
387 |
+
msgstr "راست"
|
388 |
+
|
389 |
+
#: includes/settings_page.php:168
|
390 |
+
msgid "Auto Pop-up"
|
391 |
+
msgstr "پاپ آپ خودکار"
|
392 |
+
|
393 |
+
#: includes/settings_page.php:168
|
394 |
+
msgid ""
|
395 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
396 |
+
"email address)."
|
397 |
+
msgstr ""
|
398 |
+
"باز شدن پنجره گفتگو به صورت خودکار (از کاربر می خواهد که نام و آدرس پست "
|
399 |
+
"الکترونیکی خود را وارد کند)."
|
400 |
+
|
401 |
+
#: includes/settings_page.php:178
|
402 |
+
msgid "Display name and avatar in chat"
|
403 |
+
msgstr "نمایش نام و نماد در پنجره گفتگو"
|
404 |
+
|
405 |
+
#: includes/settings_page.php:178
|
406 |
+
msgid "Display the agent and user name above each message in the chat window."
|
407 |
+
msgstr "نمایش نام کاربری مسئول سایت در بالای هر پیام داخل پنجره گفتگو."
|
408 |
+
|
409 |
+
#: includes/settings_page.php:188
|
410 |
+
msgid "Only show the chat window to users that are logged in"
|
411 |
+
msgstr "پنجره چت را فقط به کاربرانی که لاگ این شده اند نشان بده."
|
412 |
+
|
413 |
+
#: includes/settings_page.php:188
|
414 |
+
msgid ""
|
415 |
+
"By checking this, only users that are logged in will be able to chat with "
|
416 |
+
"you."
|
417 |
+
msgstr ""
|
418 |
+
"در صورتی که این گزینه را کلیک کنید، فقط کاربرانی که در سایت لاگ این شده اند "
|
419 |
+
"می توانند با شما چت کنند."
|
420 |
+
|
421 |
+
#: includes/settings_page.php:207
|
422 |
+
msgid "Do not allow users to send offline messages"
|
423 |
+
msgstr "به کاربران اجازه ارسال پیام آفلاین ندهید"
|
424 |
+
|
425 |
+
#: includes/settings_page.php:207
|
426 |
+
msgid ""
|
427 |
+
"The chat window will be hidden when it is offline. Users will not be able to "
|
428 |
+
"send offline messages to you"
|
429 |
+
msgstr ""
|
430 |
+
"پنجره گفتگو در حالت آفلاین مخفی خواهد شد. کاربران قادر به ارسال پیام آفلاین "
|
431 |
+
"به شما نخواهند بود"
|
432 |
+
|
433 |
+
#: includes/settings_page.php:219
|
434 |
+
msgid "Email Address"
|
435 |
+
msgstr "آدرس پست الکترونیکی"
|
436 |
+
|
437 |
+
#: includes/settings_page.php:219
|
438 |
+
msgid ""
|
439 |
+
"Email address where offline messages are delivered to. Use comma separated "
|
440 |
+
"email addresses to send to more than one email address"
|
441 |
+
msgstr ""
|
442 |
+
"آدرس پست الکترونیکی ای که پیام های آفلاین به آن ارسال خواهد شد. اگر بیش از "
|
443 |
+
"یک آدرس پست الکترونیکی درج می کنید آنها را توسط کاما از یکدیگر جدا کنید"
|
444 |
+
|
445 |
+
#: includes/settings_page.php:231
|
446 |
+
msgid "Sending Method"
|
447 |
+
msgstr "روش ارسال"
|
448 |
+
|
449 |
+
#: includes/settings_page.php:232
|
450 |
+
msgid "WP Mail"
|
451 |
+
msgstr "WP Mail"
|
452 |
+
|
453 |
+
#: includes/settings_page.php:233
|
454 |
+
msgid "PHP Mailer"
|
455 |
+
msgstr "PHP Mailer"
|
456 |
+
|
457 |
+
#: includes/settings_page.php:249
|
458 |
+
msgid "Host"
|
459 |
+
msgstr "Host"
|
460 |
+
|
461 |
+
#: includes/settings_page.php:257
|
462 |
+
msgid "Port"
|
463 |
+
msgstr "Port"
|
464 |
+
|
465 |
+
#: includes/settings_page.php:265
|
466 |
+
msgid "Username"
|
467 |
+
msgstr "نام کاربری"
|
468 |
+
|
469 |
+
#: includes/settings_page.php:273
|
470 |
+
msgid "Password"
|
471 |
+
msgstr "کلمه عبور"
|
472 |
+
|
473 |
+
#: includes/settings_page.php:282
|
474 |
+
msgid "Offline Chat Box Title"
|
475 |
+
msgstr "عنوان پنجره گفتگو در حالت آفلاین"
|
476 |
+
|
477 |
+
#: includes/settings_page.php:290
|
478 |
+
msgid "Offline Text Fields"
|
479 |
+
msgstr "فیلدهای متنی آفلاین"
|
480 |
+
|
481 |
+
#: includes/settings_page.php:348
|
482 |
+
msgid "Choose a theme"
|
483 |
+
msgstr "انتخاب پوسته"
|
484 |
+
|
485 |
+
#: includes/settings_page.php:353 includes/settings_page.php:356
|
486 |
+
msgid "Theme 1"
|
487 |
+
msgstr "پوسته شماره 1"
|
488 |
+
|
489 |
+
#: includes/settings_page.php:359 includes/settings_page.php:362
|
490 |
+
msgid "Theme 2"
|
491 |
+
msgstr "پوسته شماره 2"
|
492 |
+
|
493 |
+
#: includes/settings_page.php:365 includes/settings_page.php:368
|
494 |
+
msgid "Theme 3"
|
495 |
+
msgstr "پوسته شماره 3"
|
496 |
+
|
497 |
+
#: includes/settings_page.php:371 includes/settings_page.php:374
|
498 |
+
msgid "Theme 4"
|
499 |
+
msgstr "پوسته شماره 4"
|
500 |
+
|
501 |
+
#: includes/settings_page.php:377 includes/settings_page.php:380
|
502 |
+
msgid "Theme 5"
|
503 |
+
msgstr "پوسته شماره 5"
|
504 |
+
|
505 |
+
#: includes/settings_page.php:383
|
506 |
+
msgid "Theme 6"
|
507 |
+
msgstr "پوسته شماره 6"
|
508 |
+
|
509 |
+
#: includes/settings_page.php:386
|
510 |
+
msgid "Custom. Enter Colour Values Below"
|
511 |
+
msgstr "سفارشی کردن. شماره رنگ را در زیر وارد کنید"
|
512 |
+
|
513 |
+
#: includes/settings_page.php:416
|
514 |
+
msgid "Chat box fill color"
|
515 |
+
msgstr "رنگ پنجره گفتگو"
|
516 |
+
|
517 |
+
#: includes/settings_page.php:422
|
518 |
+
msgid "Chat box font color"
|
519 |
+
msgstr "رنگ فونت پنجره گفتگو"
|
520 |
+
|
521 |
+
#: includes/settings_page.php:429
|
522 |
+
msgid "I'm using a localization plugin"
|
523 |
+
msgstr "من از یک افزونه محلی سازی (مترجم سایت) استفاده میکنم"
|
524 |
+
|
525 |
+
#: includes/settings_page.php:437
|
526 |
+
msgid "First Section Text"
|
527 |
+
msgstr "بخش اول متن"
|
528 |
+
|
529 |
+
#: includes/settings_page.php:444
|
530 |
+
msgid "Intro Text"
|
531 |
+
msgstr "متن آغازین"
|
532 |
+
|
533 |
+
#: includes/settings_page.php:450
|
534 |
+
msgid "Second Section Text"
|
535 |
+
msgstr "بخش دوم متن"
|
536 |
+
|
537 |
+
#: includes/settings_page.php:457
|
538 |
+
msgid "Reactivate Chat Section Text"
|
539 |
+
msgstr "دوباره فعال کردن متن "
|
540 |
+
|
541 |
+
#: includes/settings_page.php:465
|
542 |
+
msgid "User chat welcome"
|
543 |
+
msgstr "خوش آمد گویی ابتدای گفتگو به کاربر"
|
544 |
+
|
545 |
+
#: includes/settings_page.php:471
|
546 |
+
msgid "Other text"
|
547 |
+
msgstr "متن های دیگر"
|
548 |
+
|
549 |
+
#: includes/settings_page.php:473
|
550 |
+
msgid "This text is shown above the user chat input field"
|
551 |
+
msgstr "این متن در قسمت بالای فیلد نوشتاری گفتگوی کاربر نمایش داده می شود"
|
552 |
+
|
553 |
+
#: includes/settings_page.php:501
|
554 |
+
msgid "Choose an animation"
|
555 |
+
msgstr "انتخاب یک انیمیشن"
|
556 |
+
|
557 |
+
#: includes/settings_page.php:509
|
558 |
+
msgid "Slide Up"
|
559 |
+
msgstr "Slide Up"
|
560 |
+
|
561 |
+
#: includes/settings_page.php:515
|
562 |
+
msgid "Slide From The Side"
|
563 |
+
msgstr "Slide From The Side"
|
564 |
+
|
565 |
+
#: includes/settings_page.php:521
|
566 |
+
msgid "Fade In"
|
567 |
+
msgstr "Fade In"
|
568 |
+
|
569 |
+
#: includes/settings_page.php:527
|
570 |
+
msgid "No Animation"
|
571 |
+
msgstr "No Animation"
|
572 |
+
|
573 |
+
#: includes/settings_page.php:554
|
574 |
+
msgid "Blocked Visitors - Based on IP Address"
|
575 |
+
msgstr "کاربران مسدود شده - بر مبنای آدرس آی پی"
|
576 |
+
|
577 |
+
#: includes/settings_page.php:555
|
578 |
+
msgid "Enter each IP Address you would like to block on a new line"
|
579 |
+
msgstr "هر آدرس آی پی را که تمایل به مسدود کردن آن دارید در یک خط وارد کنید"
|
580 |
+
|
581 |
+
#: includes/settings_page.php:566
|
582 |
+
msgid ""
|
583 |
+
"Blocking a user's IP Address here will hide the chat window from them, "
|
584 |
+
"preventing them from chatting with you. Each IP Address must be on a new line"
|
585 |
+
msgstr ""
|
586 |
+
"در صورتی که آدرس آی پی کاربری را مسدود کنید پنجره گفتگو برای وی مخفی می شود "
|
587 |
+
"و از گفتگوی ایشان با شما جلوگیری می شود. هر آدرس آی پی باید در یک خط جدید "
|
588 |
+
"نوشته شود."
|
589 |
+
|
590 |
+
#: includes/settings_page.php:572
|
591 |
+
msgid "Save Settings"
|
592 |
+
msgstr "ذخیره تنظیمات"
|
593 |
+
|
594 |
+
#: includes/update_control.class.php:115
|
595 |
+
msgid ""
|
596 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
597 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
598 |
+
msgstr ""
|
599 |
+
"هنگام ارسال درخواست، یک پیام خطای HTTP غیر مترقبه روی داد. </p> <p><a href="
|
600 |
+
"\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
601 |
+
|
602 |
+
#: includes/update_control.class.php:120
|
603 |
+
msgid "An unknown error occurred"
|
604 |
+
msgstr "یک خطای ناشناس روی داده."
|
605 |
+
|
606 |
+
#: includes/welcome_page.php:4
|
607 |
+
msgid "Welcome to "
|
608 |
+
msgstr "خوش آمدید به"
|
609 |
+
|
610 |
+
#: includes/welcome_page.php:6
|
611 |
+
msgid "Version 6"
|
612 |
+
msgstr "نسخه 6"
|
613 |
+
|
614 |
+
#: includes/welcome_page.php:8
|
615 |
+
msgid "The most popular live chat plugin!"
|
616 |
+
msgstr "مشهورترین افزونه گفتگوی آنلاین"
|
617 |
+
|
618 |
+
#: includes/welcome_page.php:11
|
619 |
+
msgid "How did you find us?"
|
620 |
+
msgstr "چطور ما را پیدا کردید؟"
|
621 |
+
|
622 |
+
#: includes/welcome_page.php:16
|
623 |
+
msgid "WordPress.org plugin repository "
|
624 |
+
msgstr "از بخش افزونه های سایت WordPress.org"
|
625 |
+
|
626 |
+
#: includes/welcome_page.php:19
|
627 |
+
msgid "Search Term"
|
628 |
+
msgstr "جستجوی واژه"
|
629 |
+
|
630 |
+
#: includes/welcome_page.php:23
|
631 |
+
msgid "Google or other search Engine"
|
632 |
+
msgstr "موتور جستجوی گوگل یا دیگر موتورهای جستجو"
|
633 |
+
|
634 |
+
#: includes/welcome_page.php:29
|
635 |
+
msgid "Friend recommendation"
|
636 |
+
msgstr "توصیه یک دوست"
|
637 |
+
|
638 |
+
#: includes/welcome_page.php:35
|
639 |
+
msgid "Other"
|
640 |
+
msgstr "دیگر"
|
641 |
+
|
642 |
+
#: includes/welcome_page.php:39
|
643 |
+
msgid "Please Explain"
|
644 |
+
msgstr "لطفا توضیح بدهید"
|
645 |
+
|
646 |
+
#: includes/welcome_page.php:48
|
647 |
+
msgid "Submit"
|
648 |
+
msgstr "ثبت کردن"
|
649 |
+
|
650 |
+
#: includes/welcome_page.php:50
|
651 |
+
msgid "Skip"
|
652 |
+
msgstr "حذف این قسمت"
|
653 |
+
|
654 |
+
#: wp-live-chat-support.php:428 wp-live-chat-support.php:1364
|
655 |
+
msgid "Chat offline. Leave a message"
|
656 |
+
msgstr "گفتگو آفلاین است. لطفا یک پیام حاوی اطلاعات تماس خود بگذارید"
|
657 |
+
|
658 |
+
#: wp-live-chat-support.php:429 wp-live-chat-support.php:1252
|
659 |
+
msgid "Hello. Please input your details so that I may help you."
|
660 |
+
msgstr "سلام. لطفا برای اینکه بتوانیم به شما کمک کنیم مشخصات خود را وارد کنید."
|
661 |
+
|
662 |
+
#: wp-live-chat-support.php:430 wp-live-chat-support.php:735
|
663 |
+
msgid ""
|
664 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
665 |
+
"shortly."
|
666 |
+
msgstr ""
|
667 |
+
"در حال حاظر ما آفلاین هستیم. لطفا یک پیام حاوی اطلاعات تماس خود را بگذارید "
|
668 |
+
"تا در اولین فرصت ممکن با شما ارتباط برقرار کنیم."
|
669 |
+
|
670 |
+
#: wp-live-chat-support.php:431 wp-live-chat-support.php:736
|
671 |
+
msgid "Sending message..."
|
672 |
+
msgstr "ارسال پیام..."
|
673 |
+
|
674 |
+
#: wp-live-chat-support.php:432 wp-live-chat-support.php:737
|
675 |
+
msgid "Thank you for your message. We will be in contact soon."
|
676 |
+
msgstr ""
|
677 |
+
"از اینکه پیام خود را ارسال کردید متشکریم. به زودی با شما تماس خواهیم گرفت."
|
678 |
+
|
679 |
+
#: wp-live-chat-support.php:436
|
680 |
+
msgid "Start live chat"
|
681 |
+
msgstr "شروع گفتگوی آنلاین"
|
682 |
+
|
683 |
+
#: wp-live-chat-support.php:438
|
684 |
+
msgid "Connecting. Please be patient..."
|
685 |
+
msgstr "لطفا صبور باشید. در حال اتصال..."
|
686 |
+
|
687 |
+
#: wp-live-chat-support.php:440 wp-live-chat-support.php:1317
|
688 |
+
msgid "Welcome. How may I help you?"
|
689 |
+
msgstr "خوش آمدید. چطور میتونم به شما کمک کنم؟"
|
690 |
+
|
691 |
+
#: wp-live-chat-support.php:457 wp-live-chat-support.php:2209
|
692 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
693 |
+
msgstr ""
|
694 |
+
"لطفا جهت گفتگو با یکی از مسئولین سایت بر روی دکمه \"شروع گفتگو\" کلیک کنید"
|
695 |
+
|
696 |
+
#: wp-live-chat-support.php:551
|
697 |
+
msgid "Live Chat"
|
698 |
+
msgstr "گفتگوی آنلاین"
|
699 |
+
|
700 |
+
#: wp-live-chat-support.php:552
|
701 |
+
msgid "Settings"
|
702 |
+
msgstr "تنظیمات"
|
703 |
+
|
704 |
+
#: wp-live-chat-support.php:557
|
705 |
+
msgid "History"
|
706 |
+
msgstr "تاریخچه"
|
707 |
+
|
708 |
+
#: wp-live-chat-support.php:558
|
709 |
+
msgid "Missed Chats"
|
710 |
+
msgstr "گفتگو های از دست رفته"
|
711 |
+
|
712 |
+
#: wp-live-chat-support.php:579 wp-live-chat-support.php:3006
|
713 |
+
msgid "Support"
|
714 |
+
msgstr "پشتیبانی"
|
715 |
+
|
716 |
+
#: wp-live-chat-support.php:580
|
717 |
+
msgid "Extensions"
|
718 |
+
msgstr "برنامه های افزودنی"
|
719 |
+
|
720 |
+
#: wp-live-chat-support.php:590
|
721 |
+
msgid "API Keys"
|
722 |
+
msgstr "API Keys"
|
723 |
+
|
724 |
+
#: wp-live-chat-support.php:596
|
725 |
+
msgid "Premium Extension API Keys"
|
726 |
+
msgstr "Premium Extension API Keys"
|
727 |
+
|
728 |
+
#: wp-live-chat-support.php:597
|
729 |
+
msgid ""
|
730 |
+
"To find and manage your premium API keys, please visit your <a "
|
731 |
+
"target='_BLANK' href='https://wp-livechat.com/my-account/'>my account</a> "
|
732 |
+
"page."
|
733 |
+
msgstr ""
|
734 |
+
"لطفا جهت یافتن و مدیریت premium API keys ی مورد نظر خود، از صفحه <a "
|
735 |
+
"target='_BLANK' href='https://wp-livechat.com/my-account/'>my account</a> "
|
736 |
+
"بازدید کنید."
|
737 |
+
|
738 |
+
#: wp-live-chat-support.php:1168
|
739 |
+
msgid "Start chat"
|
740 |
+
msgstr "شروع گفتگو"
|
741 |
+
|
742 |
+
#: wp-live-chat-support.php:1236
|
743 |
+
msgid "Send message"
|
744 |
+
msgstr "ارسال پیام"
|
745 |
+
|
746 |
+
#: wp-live-chat-support.php:1297 wp-live-chat-support.php:1313
|
747 |
+
msgid "Connecting. Please be patient."
|
748 |
+
msgstr "لطفا صبور باشید. در حال اتصال."
|
749 |
+
|
750 |
+
#: wp-live-chat-support.php:1387
|
751 |
+
msgid "Initiate Chat"
|
752 |
+
msgstr "شروع گفتگو"
|
753 |
+
|
754 |
+
#: wp-live-chat-support.php:1683
|
755 |
+
msgid "New chat received"
|
756 |
+
msgstr "درخواست گفتگوی جدید دریافت شده"
|
757 |
+
|
758 |
+
#: wp-live-chat-support.php:1685
|
759 |
+
msgid ""
|
760 |
+
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
761 |
+
"chat"
|
762 |
+
msgstr ""
|
763 |
+
"درخواست گفتگوی جدید دریافت شده. لطفا جهت شروع گفتگو به صفحه \"گفتگوی آنلاین"
|
764 |
+
"\" بروید."
|
765 |
+
|
766 |
+
#: wp-live-chat-support.php:1727
|
767 |
+
msgid "Remove"
|
768 |
+
msgstr "حذف کردن"
|
769 |
+
|
770 |
+
#: wp-live-chat-support.php:1746 wp-live-chat-support.php:1761
|
771 |
+
msgid "Dear Pro User"
|
772 |
+
msgstr "کاربر نسخه پیشرفته عزیز"
|
773 |
+
|
774 |
+
#: wp-live-chat-support.php:1747
|
775 |
+
msgid ""
|
776 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
777 |
+
"strong>. Please"
|
778 |
+
msgstr ""
|
779 |
+
"شما از نسخه تاریخ گذشته <strong>WP Live Chat Support Pro</strong> استفاده می "
|
780 |
+
"کنید. لطفا"
|
781 |
+
|
782 |
+
#: wp-live-chat-support.php:1747
|
783 |
+
msgid "update to at least version"
|
784 |
+
msgstr "به آخرین نسخه به روز کنید"
|
785 |
+
|
786 |
+
#: wp-live-chat-support.php:1747
|
787 |
+
msgid "to ensure all functionality is in working order"
|
788 |
+
msgstr "جهت اطمینان از کارکرد صحیح همه توابع"
|
789 |
+
|
790 |
+
#: wp-live-chat-support.php:1748
|
791 |
+
msgid ""
|
792 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
793 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
794 |
+
"experience for both yourself and your visitors."
|
795 |
+
msgstr ""
|
796 |
+
"پنجره گفتگو در سایت شما به صورت موقت تا زمانی که نسخه پیشرفته پلاگین خود را "
|
797 |
+
"به روز نمایید غیر فعال می باشد. این کار به منظور اطمینان یافتن از اینکه "
|
798 |
+
"گفتگوی شما و بازدید کنندگان سایت شما به صورت کارآمد و بی دردسر می باشد، "
|
799 |
+
"انجام شده."
|
800 |
+
|
801 |
+
#: wp-live-chat-support.php:1749 wp-live-chat-support.php:1769
|
802 |
+
msgid ""
|
803 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
804 |
+
"plugins.php'>here</a> or <a href='https://wp-livechat.com/get-updated-"
|
805 |
+
"version/' target='_BLANK'>here</a>."
|
806 |
+
msgstr ""
|
807 |
+
"شما میتوانید پلاگین خود را به روز کنید <a href='./update-core.php'>here</a>, "
|
808 |
+
"<a href='./plugins.php'>here</a> یا <a href='https://wp-livechat.com/get-"
|
809 |
+
"updated-version/' target='_BLANK'>here</a>"
|
810 |
+
|
811 |
+
#: wp-live-chat-support.php:1750 wp-live-chat-support.php:1770
|
812 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
813 |
+
msgstr ""
|
814 |
+
"در صورتی که قصد دارید به صورت دیگری پلاگین خود را به روز نمایید لطفا تماس "
|
815 |
+
"بگیرید"
|
816 |
+
|
817 |
+
#: wp-live-chat-support.php:1762
|
818 |
+
msgid ""
|
819 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
820 |
+
"strong>."
|
821 |
+
msgstr ""
|
822 |
+
"شما از نسخه تاریخ گذشته <strong>WP Live Chat Support Pro</strong> استفاده می "
|
823 |
+
"کنید."
|
824 |
+
|
825 |
+
#: wp-live-chat-support.php:1764
|
826 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
827 |
+
msgstr "لطفا WP Live Chat Support Pro را به آخرین نسخه ارتقاء دهید"
|
828 |
+
|
829 |
+
#: wp-live-chat-support.php:1765
|
830 |
+
msgid "Version 5.0.1"
|
831 |
+
msgstr "نسخه 5.0.1"
|
832 |
+
|
833 |
+
#: wp-live-chat-support.php:1766
|
834 |
+
msgid "to ensure everything is working correctly."
|
835 |
+
msgstr "جهت اطمینان از اینکه همه چیز به صورت صحیح کار می کند."
|
836 |
+
|
837 |
+
#: wp-live-chat-support.php:1798
|
838 |
+
msgid "Congratulations"
|
839 |
+
msgstr "تبریک عرض میکنم"
|
840 |
+
|
841 |
+
#: wp-live-chat-support.php:1799
|
842 |
+
msgid "You are now accepting live chat requests on your site."
|
843 |
+
msgstr "حالا شما قادر به قبول درخواست گفتگوی آنلاین در سایت خود می باشید."
|
844 |
+
|
845 |
+
#: wp-live-chat-support.php:1800
|
846 |
+
msgid "The live chat box has automatically been enabled on your website."
|
847 |
+
msgstr "پنجره گفتگوی زنده به صورت خودکار در سایت شما فعال خواهد شد."
|
848 |
+
|
849 |
+
#: wp-live-chat-support.php:1801
|
850 |
+
msgid "Chat notifications will start appearing once visitors send a request."
|
851 |
+
msgstr ""
|
852 |
+
"زمانی که بازدید کننده درخواست خود را ارسال نماید، نمایه ی تذکر برای شما "
|
853 |
+
"آشکار خواهد شد."
|
854 |
+
|
855 |
+
#: wp-live-chat-support.php:1802
|
856 |
+
msgid ""
|
857 |
+
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
858 |
+
"chat box settings here."
|
859 |
+
msgstr ""
|
860 |
+
"شما می توانید اینجا <a href='?page=wplivechat-menu-settings' "
|
861 |
+
"target='_BLANK'> تنظیمات پنجره گفتگوی خود را ویرایش کنید."
|
862 |
+
|
863 |
+
#: wp-live-chat-support.php:1803
|
864 |
+
msgid "Experiencing issues?"
|
865 |
+
msgstr "تجربه کردن مسائل؟"
|
866 |
+
|
867 |
+
#: wp-live-chat-support.php:1803
|
868 |
+
msgid "Visit our troubleshooting section."
|
869 |
+
msgstr "بخش عیب یابی ما را ببینید."
|
870 |
+
|
871 |
+
#: wp-live-chat-support.php:1805
|
872 |
+
msgid "Hide"
|
873 |
+
msgstr "مخفی"
|
874 |
+
|
875 |
+
#: wp-live-chat-support.php:1824
|
876 |
+
msgid "Agent(s) online"
|
877 |
+
msgstr "مسئول (ین) سایت آنلاین هستند."
|
878 |
+
|
879 |
+
#: wp-live-chat-support.php:1839
|
880 |
+
msgid ""
|
881 |
+
"With the <strong>Initiate Chats</strong> Extension for WP Live Chat Support, "
|
882 |
+
"you can"
|
883 |
+
msgstr ""
|
884 |
+
"با ابزار توسعه <strong>Initiate Chats</strong> از پلاگین WP Live Chat "
|
885 |
+
"Support شما می توانید"
|
886 |
+
|
887 |
+
#: wp-live-chat-support.php:1840 wp-live-chat-support.php:3026
|
888 |
+
msgid "see who's online and initiate chats"
|
889 |
+
msgstr "ببینید چه کسی برای شروع گفتگوی جدید آنلاین است"
|
890 |
+
|
891 |
+
#: wp-live-chat-support.php:1841 wp-live-chat-support.php:3026
|
892 |
+
msgid "initiate chats"
|
893 |
+
msgstr "شروع گفتگو"
|
894 |
+
|
895 |
+
#: wp-live-chat-support.php:1843 wp-live-chat-support.php:3026
|
896 |
+
msgid "with your online visitors with the click of a button."
|
897 |
+
msgstr "با بازدید کنندگان آنلاین. با کلیک بر روی یک دکمه."
|
898 |
+
|
899 |
+
#: wp-live-chat-support.php:1844 wp-live-chat-support.php:1846
|
900 |
+
msgid "Buy the Initiate Chats Extension now."
|
901 |
+
msgstr "همین حالا ابزار توسعه را بخرید."
|
902 |
+
|
903 |
+
#: wp-live-chat-support.php:1892 wp-live-chat-support.php:1959
|
904 |
+
msgid "Chat Dashboard"
|
905 |
+
msgstr "پیشخوان گفتگو"
|
906 |
+
|
907 |
+
#: wp-live-chat-support.php:1895
|
908 |
+
msgid ""
|
909 |
+
"Please note: This window must be open in order to receive new chat "
|
910 |
+
"notifications."
|
911 |
+
msgstr ""
|
912 |
+
"لطفا توجه کنید: به منظور دریافت نمایه تذکر گفتگوی جدید، این پنجره باید باز "
|
913 |
+
"باشد."
|
914 |
+
|
915 |
+
#: wp-live-chat-support.php:1907
|
916 |
+
msgid "Visitors online"
|
917 |
+
msgstr "بازدید کنندگان آنلاین"
|
918 |
+
|
919 |
+
#: wp-live-chat-support.php:1919
|
920 |
+
msgid "Visitor"
|
921 |
+
msgstr "بازدید کننده"
|
922 |
+
|
923 |
+
#: wp-live-chat-support.php:1920
|
924 |
+
msgid "Time"
|
925 |
+
msgstr "زمان"
|
926 |
+
|
927 |
+
#: wp-live-chat-support.php:1921
|
928 |
+
msgid "Type"
|
929 |
+
msgstr "نوع"
|
930 |
+
|
931 |
+
#: wp-live-chat-support.php:1922
|
932 |
+
msgid "Data"
|
933 |
+
msgstr "تاریخ"
|
934 |
+
|
935 |
+
#: wp-live-chat-support.php:1923 wp-live-chat-support.php:2449
|
936 |
+
msgid "Status"
|
937 |
+
msgstr "وضعیت"
|
938 |
+
|
939 |
+
#: wp-live-chat-support.php:1924 wp-live-chat-support.php:2450
|
940 |
+
msgid "Action"
|
941 |
+
msgstr "کنش"
|
942 |
+
|
943 |
+
#: wp-live-chat-support.php:1962
|
944 |
+
msgid "Oh no!"
|
945 |
+
msgstr "وای نه کاکو!"
|
946 |
+
|
947 |
+
#: wp-live-chat-support.php:1965
|
948 |
+
msgid ""
|
949 |
+
"You do not have access to this page as <strong>you are not a chat agent</"
|
950 |
+
"strong>."
|
951 |
+
msgstr ""
|
952 |
+
"شما تا زمانی که یکی از <strong> مسئولین سایت <strong> نباشید قادر به دسترسی "
|
953 |
+
"به این صفحه نیستید."
|
954 |
+
|
955 |
+
#: wp-live-chat-support.php:2051
|
956 |
+
msgid "Previous"
|
957 |
+
msgstr "قبلی"
|
958 |
+
|
959 |
+
#: wp-live-chat-support.php:2053
|
960 |
+
msgid "Active"
|
961 |
+
msgstr "فعال"
|
962 |
+
|
963 |
+
#: wp-live-chat-support.php:2062
|
964 |
+
msgid "Chat with"
|
965 |
+
msgstr "گفتگو با"
|
966 |
+
|
967 |
+
#: wp-live-chat-support.php:2065
|
968 |
+
msgid "End chat"
|
969 |
+
msgstr "پلیان گفتگو"
|
970 |
+
|
971 |
+
#: wp-live-chat-support.php:2102 wp-live-chat-support.php:2841
|
972 |
+
msgid "Add-ons"
|
973 |
+
msgstr "افزونه ها"
|
974 |
+
|
975 |
+
#: wp-live-chat-support.php:2104
|
976 |
+
msgid "Get more add-ons"
|
977 |
+
msgstr "افزونه بیشتری دریافت کنید"
|
978 |
+
|
979 |
+
#: wp-live-chat-support.php:2110
|
980 |
+
msgid "Assign Quick Response"
|
981 |
+
msgstr "درخواست پاسخ سریع"
|
982 |
+
|
983 |
+
#: wp-live-chat-support.php:2110 wp-live-chat-support.php:3114
|
984 |
+
msgid "Select"
|
985 |
+
msgstr "انتخاب"
|
986 |
+
|
987 |
+
#: wp-live-chat-support.php:2110
|
988 |
+
msgid "Add Quick Responses to your Live Chat"
|
989 |
+
msgstr "افزودن درخواست پاسخ سریع با گفتگوی آنلاین شما"
|
990 |
+
|
991 |
+
#: wp-live-chat-support.php:2110
|
992 |
+
msgid "Pro version only"
|
993 |
+
msgstr "فقط نسخه پیشرفته"
|
994 |
+
|
995 |
+
#: wp-live-chat-support.php:2121
|
996 |
+
msgid "type here..."
|
997 |
+
msgstr "اینجا بنویسید..."
|
998 |
+
|
999 |
+
#: wp-live-chat-support.php:2191
|
1000 |
+
msgid "User has opened the chat window"
|
1001 |
+
msgstr "کاربر پنجره گفتگو را باز کرده"
|
1002 |
+
|
1003 |
+
#: wp-live-chat-support.php:2192
|
1004 |
+
msgid "User has minimized the chat window"
|
1005 |
+
msgstr "کاربر پنجره گفتگو را به حالت مینیمایز تنظیم کرده"
|
1006 |
+
|
1007 |
+
#: wp-live-chat-support.php:2193
|
1008 |
+
msgid "User has maximized the chat window"
|
1009 |
+
msgstr "کاربر پنجره گفتگو را به حالت ماکزیمایز تنظیم کرده"
|
1010 |
+
|
1011 |
+
#: wp-live-chat-support.php:2194
|
1012 |
+
msgid "The chat has been ended"
|
1013 |
+
msgstr "گفتگو پایان یافت"
|
1014 |
+
|
1015 |
+
#: wp-live-chat-support.php:2439
|
1016 |
+
msgid "Delete History"
|
1017 |
+
msgstr "پاک کردن تاریخچه"
|
1018 |
+
|
1019 |
+
#: wp-live-chat-support.php:2456
|
1020 |
+
msgid "No chats available at the moment"
|
1021 |
+
msgstr "در این لحظه هیچ درخواست گفتگویی وجود ندارد"
|
1022 |
+
|
1023 |
+
#: wp-live-chat-support.php:2466
|
1024 |
+
msgid "View Chat History"
|
1025 |
+
msgstr "نمایش تاریخچه گفتگو"
|
1026 |
+
|
1027 |
+
#: wp-live-chat-support.php:2466
|
1028 |
+
msgid "Download Chat History"
|
1029 |
+
msgstr "دانلود تاریخچه گفتگو"
|
1030 |
+
|
1031 |
+
#: wp-live-chat-support.php:2488
|
1032 |
+
msgid "WP Live Chat History"
|
1033 |
+
msgstr "تاریخچه WP Live Chat"
|
1034 |
+
|
1035 |
+
#: wp-live-chat-support.php:2508
|
1036 |
+
msgid "WP Live Chat Missed Chats"
|
1037 |
+
msgstr "گفتگو های از دست رفته WP Live Chat "
|
1038 |
+
|
1039 |
+
#: wp-live-chat-support.php:2523
|
1040 |
+
msgid ""
|
1041 |
+
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1042 |
+
"recording any offline messages."
|
1043 |
+
msgstr ""
|
1044 |
+
"لطفا به منظور ذخیره پیام های آفلاین، افزونه خود را به WP Live Chat Support "
|
1045 |
+
"Pro ارتقاء دهید."
|
1046 |
+
|
1047 |
+
#: wp-live-chat-support.php:2526
|
1048 |
+
msgid "This option is only available in the "
|
1049 |
+
msgstr "این گزینه فقط زمانی در دسترسترس است که"
|
1050 |
+
|
1051 |
+
#: wp-live-chat-support.php:2526
|
1052 |
+
msgid "Pro Add-on"
|
1053 |
+
msgstr "افزونه پیشرفته"
|
1054 |
+
|
1055 |
+
#: wp-live-chat-support.php:2538
|
1056 |
+
msgid "WP Live Chat Offline Messages"
|
1057 |
+
msgstr "پیام آفلاین از WP Live Chat"
|
1058 |
+
|
1059 |
+
#: wp-live-chat-support.php:2568
|
1060 |
+
msgid "You have not received any offline messages."
|
1061 |
+
msgstr "شما هیچ پیام آفلاینی دریافت نکردید."
|
1062 |
+
|
1063 |
+
#: wp-live-chat-support.php:2661
|
1064 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1065 |
+
msgstr ""
|
1066 |
+
"لطفا جهت گفتگو با یکی از مسئولین سایت، بر روی دکمه \"شروع گفتگو\" کلیک کنید"
|
1067 |
+
|
1068 |
+
#: wp-live-chat-support.php:2744
|
1069 |
+
msgid "Your settings have been saved."
|
1070 |
+
msgstr "تنظیمات شما ذخیره شد"
|
1071 |
+
|
1072 |
+
#: wp-live-chat-support.php:2759
|
1073 |
+
msgid "Thank You for your feedback!"
|
1074 |
+
msgstr "تشکر از ارسال بازخورد!"
|
1075 |
+
|
1076 |
+
#: wp-live-chat-support.php:2763 wp-live-chat-support.php:2776
|
1077 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1078 |
+
msgstr "تشکر از ارسال بازخورد. به زودی با شما تماس خواهیم گرفت"
|
1079 |
+
|
1080 |
+
#: wp-live-chat-support.php:2779
|
1081 |
+
#, fuzzy
|
1082 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1083 |
+
msgstr ""
|
1084 |
+
"مشکلی برای ارسال بازخورد شما به وجود آمده. لطفا بازخورد خود را وارد کنید"
|
1085 |
+
|
1086 |
+
#: wp-live-chat-support.php:2813
|
1087 |
+
msgid ""
|
1088 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
1089 |
+
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1090 |
+
"contact your host to get this function enabled."
|
1091 |
+
msgstr ""
|
1092 |
+
"بر روی سرور میزبان سایت شما WPLC: set_time_limit() فعال نیست. این مسئله ممکن "
|
1093 |
+
"است شما را حین استفاده از WP Live Chat Support با مشکل مواجه کند. لطفا به "
|
1094 |
+
"منظور فعال کردن این تابع با مسئول سرور میزبان سایت خود تماس بگیرید."
|
1095 |
+
|
1096 |
+
#: wp-live-chat-support.php:2819
|
1097 |
+
msgid ""
|
1098 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
1099 |
+
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1100 |
+
"get safe mode disabled."
|
1101 |
+
msgstr ""
|
1102 |
+
"گزینه Safe mode از تابع WPLC: در تنظیمات هاست شما فعال می باشد. این مسئله "
|
1103 |
+
"ممکن است شما را حین استفاده از WP Live Chat Support با مشکل مواجه کند. لطفا "
|
1104 |
+
"جهت غیر فعال کردن این گزینه، با مسئول سرور میزبان سایت خود تماس بگیرید."
|
1105 |
+
|
1106 |
+
#: wp-live-chat-support.php:2841
|
1107 |
+
msgid "Suggested Plugins"
|
1108 |
+
msgstr "افزونه های توصیه شده"
|
1109 |
+
|
1110 |
+
#: wp-live-chat-support.php:2852 wp-live-chat-support.php:2853
|
1111 |
+
#: wp-live-chat-support.php:2854 wp-live-chat-support.php:2859
|
1112 |
+
msgid "Sola Support Tickets"
|
1113 |
+
msgstr "تیکت پشتیبانی Sola "
|
1114 |
+
|
1115 |
+
#: wp-live-chat-support.php:2857
|
1116 |
+
msgid ""
|
1117 |
+
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
1118 |
+
"desk quickly and easily with Sola Support Tickets."
|
1119 |
+
msgstr ""
|
1120 |
+
"به منظور اتفاده آسانتر از افزونه Help Desk & Support Ticket. توسط Sola "
|
1121 |
+
"Support Tickets یک اشتراک پشتیبانی ایجاد کنید."
|
1122 |
+
|
1123 |
+
#: wp-live-chat-support.php:2859 wp-live-chat-support.php:2870
|
1124 |
+
msgid "Get this Plugin"
|
1125 |
+
msgstr "دریافت این افزونه"
|
1126 |
+
|
1127 |
+
#: wp-live-chat-support.php:2863 wp-live-chat-support.php:2864
|
1128 |
+
#: wp-live-chat-support.php:2865 wp-live-chat-support.php:2870
|
1129 |
+
msgid "Nifty Newsletters"
|
1130 |
+
msgstr "Nifty Newsletters"
|
1131 |
+
|
1132 |
+
#: wp-live-chat-support.php:2868
|
1133 |
+
msgid ""
|
1134 |
+
"Create and send newsletters, automatic post notifications and autoresponders "
|
1135 |
+
"that are modern and beautiful with Nifty Newsletters."
|
1136 |
+
msgstr ""
|
1137 |
+
"به کمک افزونه Nifty Newsletters، به راحتی و به صورت پیشرفته \"ایجاد و ارسال "
|
1138 |
+
"خبرنامه\" - \"ارسال خودکار یادآوری\" - \"پاسخگویی خودکار\" را انجام دهید."
|
1139 |
+
|
1140 |
+
#: wp-live-chat-support.php:2902
|
1141 |
+
msgid "Price:"
|
1142 |
+
msgstr "قیمت:"
|
1143 |
+
|
1144 |
+
#: wp-live-chat-support.php:2903
|
1145 |
+
msgid "All"
|
1146 |
+
msgstr "همه"
|
1147 |
+
|
1148 |
+
#: wp-live-chat-support.php:2904
|
1149 |
+
msgid "Free"
|
1150 |
+
msgstr "مجانی"
|
1151 |
+
|
1152 |
+
#: wp-live-chat-support.php:2905
|
1153 |
+
msgid "Paid"
|
1154 |
+
msgstr "پرداخت شده"
|
1155 |
+
|
1156 |
+
#: wp-live-chat-support.php:2908
|
1157 |
+
msgid "For:"
|
1158 |
+
msgstr "برای:"
|
1159 |
+
|
1160 |
+
#: wp-live-chat-support.php:2909
|
1161 |
+
msgid "Both"
|
1162 |
+
msgstr "هردو"
|
1163 |
+
|
1164 |
+
#: wp-live-chat-support.php:2910
|
1165 |
+
msgid "Free version"
|
1166 |
+
msgstr "نسخه مجانی"
|
1167 |
+
|
1168 |
+
#: wp-live-chat-support.php:2911
|
1169 |
+
msgid "Pro version"
|
1170 |
+
msgstr "نسخه پیشرفته"
|
1171 |
+
|
1172 |
+
#: wp-live-chat-support.php:2947
|
1173 |
+
msgid "Already installed"
|
1174 |
+
msgstr "پیش از این نصب شده"
|
1175 |
+
|
1176 |
+
#. Plugin Name of the plugin/theme
|
1177 |
+
#: wp-live-chat-support.php:2974
|
1178 |
+
msgid "WP Live Chat Support"
|
1179 |
+
msgstr "WP Live Chat Support"
|
1180 |
+
|
1181 |
+
#: wp-live-chat-support.php:2977
|
1182 |
+
msgid "Documentation"
|
1183 |
+
msgstr "مستندات"
|
1184 |
+
|
1185 |
+
#: wp-live-chat-support.php:2979
|
1186 |
+
msgid ""
|
1187 |
+
"Getting started? Read through some of these articles to help you along your "
|
1188 |
+
"way."
|
1189 |
+
msgstr ""
|
1190 |
+
"شروع کردید؟ به منظور کمک به شما جهت پیمودن این مسیر، تعدادی از این مقاله ها "
|
1191 |
+
"را مطالعه کنید."
|
1192 |
+
|
1193 |
+
#: wp-live-chat-support.php:2980
|
1194 |
+
msgid "Documentation:"
|
1195 |
+
msgstr "مستندات:"
|
1196 |
+
|
1197 |
+
#: wp-live-chat-support.php:2982
|
1198 |
+
msgid "Minimum System Requirements"
|
1199 |
+
msgstr "حداقا مشخصات سیستم مورد نیاز"
|
1200 |
+
|
1201 |
+
#: wp-live-chat-support.php:2983
|
1202 |
+
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1203 |
+
msgstr "آیا برای گفتگو با بازدید کنندگان، نیاز به ورود به پیشخوان هست؟"
|
1204 |
+
|
1205 |
+
#: wp-live-chat-support.php:2984
|
1206 |
+
msgid "What are Quick Responses?"
|
1207 |
+
msgstr "Quick Responses چیست؟"
|
1208 |
+
|
1209 |
+
#: wp-live-chat-support.php:2985
|
1210 |
+
msgid "Can I use this plugin on my multi-site?"
|
1211 |
+
msgstr "آیا امکان استفاده از این افزونه در حالت multi-site وجود دارد؟"
|
1212 |
+
|
1213 |
+
#: wp-live-chat-support.php:2986
|
1214 |
+
msgid "How do I disable APC Object Cache?"
|
1215 |
+
msgstr "چگونه می توانم APC Object Cache را غیر فعال کنم؟ "
|
1216 |
+
|
1217 |
+
#: wp-live-chat-support.php:2987
|
1218 |
+
msgid "Do you have a mobile app?"
|
1219 |
+
msgstr "آیا شما اپلیکیشن موبایل هم دارید؟"
|
1220 |
+
|
1221 |
+
#: wp-live-chat-support.php:2988
|
1222 |
+
msgid "How do I check for JavaScript errors on my site?"
|
1223 |
+
msgstr "چگونه می توانم خطاهای JavaScript را در سایت خود بررسی کنم؟"
|
1224 |
+
|
1225 |
+
#: wp-live-chat-support.php:2992
|
1226 |
+
msgid "Troubleshooting"
|
1227 |
+
msgstr "عیب یابی"
|
1228 |
+
|
1229 |
+
#: wp-live-chat-support.php:2994
|
1230 |
+
#, fuzzy
|
1231 |
+
msgid ""
|
1232 |
+
"WP Live Chat Support has a diverse and wide range of features which may, "
|
1233 |
+
"from time to time, run into conflicts with the thousands of themes and other "
|
1234 |
+
"plugins on the market."
|
1235 |
+
msgstr ""
|
1236 |
+
"WP Live Chat Support دارای طیف متنوع و گسترده ای از ویژگی های است که ممکن "
|
1237 |
+
"است، از زمان به زمان، اجرا را به درگیری با هزاران نفر از تم ها و پلاگین های "
|
1238 |
+
"دیگر در بازار است."
|
1239 |
+
|
1240 |
+
#: wp-live-chat-support.php:2995
|
1241 |
+
msgid "Common issues:"
|
1242 |
+
msgstr "ایرادهای معمول:"
|
1243 |
+
|
1244 |
+
#: wp-live-chat-support.php:2997
|
1245 |
+
msgid "The chat box doesnt show up"
|
1246 |
+
msgstr "پنجره گفتگو نمایش داده نمی شود"
|
1247 |
+
|
1248 |
+
#: wp-live-chat-support.php:2998
|
1249 |
+
msgid "The chat window disappears when I logout or go offline"
|
1250 |
+
msgstr ""
|
1251 |
+
"زمانی که از سایت خارج می شوم یا به حالت آفلاین در می آیم، پنجره گفتگو پنهان "
|
1252 |
+
"می شود"
|
1253 |
+
|
1254 |
+
#: wp-live-chat-support.php:2999
|
1255 |
+
msgid "This chat has already been answered. Please close the chat window"
|
1256 |
+
msgstr "به این گفتگو پاسخ داده شده است. لطفا پنجره گفتگو را ببندید"
|
1257 |
+
|
1258 |
+
#: wp-live-chat-support.php:3000
|
1259 |
+
msgid "Messages only show when I refresh the chat window"
|
1260 |
+
msgstr "پیام ها فقط زمانی قابل مشاهده است که من پنجره گفتگو را refresh میکنم"
|
1261 |
+
|
1262 |
+
#: wp-live-chat-support.php:3001
|
1263 |
+
msgid "I'm not getting any notifications of a new chat"
|
1264 |
+
msgstr "من هنگام شروع گفتگوی جدید، هیچ پیام هشداری دریافت نمی کنم"
|
1265 |
+
|
1266 |
+
#: wp-live-chat-support.php:3002
|
1267 |
+
msgid "The chat window never goes offline"
|
1268 |
+
msgstr "پنجره گفتگو هیچگاه به حالت آفلاین در نمی آید"
|
1269 |
+
|
1270 |
+
#: wp-live-chat-support.php:3008
|
1271 |
+
msgid "Still need help? Use one of these links below."
|
1272 |
+
msgstr "هنوز هم به کمک بیشتری نیاز دارید؟ از یکی از لینک های زیر استفاده کنید."
|
1273 |
+
|
1274 |
+
#: wp-live-chat-support.php:3010
|
1275 |
+
msgid "Support desk"
|
1276 |
+
msgstr "پنل پشتیبانی"
|
1277 |
+
|
1278 |
+
#: wp-live-chat-support.php:3011
|
1279 |
+
msgid "Contact us"
|
1280 |
+
msgstr "تماس با ما"
|
1281 |
+
|
1282 |
+
#: wp-live-chat-support.php:3026 wp-live-chat-support.php:3291
|
1283 |
+
#: wp-live-chat-support.php:3355
|
1284 |
+
msgid "Initiate Chats"
|
1285 |
+
msgstr "شروع گفتگو"
|
1286 |
+
|
1287 |
+
#: wp-live-chat-support.php:3026
|
1288 |
+
msgid ""
|
1289 |
+
"With the <strong>Initiate Chats Extension</strong> of WP Live Chat Support, "
|
1290 |
+
"you can"
|
1291 |
+
msgstr "توسط افزونه <strong>Initiate Chats Extension</strong> شما می توانید"
|
1292 |
+
|
1293 |
+
#: wp-live-chat-support.php:3026 wp-live-chat-support.php:3027
|
1294 |
+
msgid "Buy the Initiate Chats Extension now (once off payment)."
|
1295 |
+
msgstr ""
|
1296 |
+
"همین حالا در ازای پرداخت وجه افزونه Initiate Chats Extension را خریداری کنید."
|
1297 |
+
|
1298 |
+
#: wp-live-chat-support.php:3027
|
1299 |
+
msgid "Multiple Chats"
|
1300 |
+
msgstr "گفتگو با چند نفر"
|
1301 |
+
|
1302 |
+
#: wp-live-chat-support.php:3027
|
1303 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1304 |
+
msgstr "توسط افزونه های پیشرفته WP Live Chat Support شما می توانید"
|
1305 |
+
|
1306 |
+
#: wp-live-chat-support.php:3027
|
1307 |
+
msgid "accept and handle multiple chats."
|
1308 |
+
msgstr "دریافت گفتگو با چند نفر"
|
1309 |
+
|
1310 |
+
#: wp-live-chat-support.php:3028
|
1311 |
+
msgid "Add unlimited agents"
|
1312 |
+
msgstr "افزودن تعداد نا محدود مسئول پاسخ گویی"
|
1313 |
+
|
1314 |
+
#: wp-live-chat-support.php:3028
|
1315 |
+
msgid ""
|
1316 |
+
" with the <strong>Mutliple Agents Extension</strong> of WP Live Chat Support"
|
1317 |
+
msgstr "با <strong>Mutliple Agents Extension</strong> از WP Live Chat Support"
|
1318 |
+
|
1319 |
+
#: wp-live-chat-support.php:3028
|
1320 |
+
#, fuzzy
|
1321 |
+
msgid "(once off payment)."
|
1322 |
+
msgstr "یک بار پرداخت کنید"
|
1323 |
+
|
1324 |
+
#: wp-live-chat-support.php:3042
|
1325 |
+
#, php-format
|
1326 |
+
msgid ""
|
1327 |
+
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</"
|
1328 |
+
"a>! Please <a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s"
|
1329 |
+
"\" target=\"_blank\">WordPress.org</a>"
|
1330 |
+
msgstr ""
|
1331 |
+
"تشکر از شما به خاطر استفاده از <a href=\"%1$s\" target=\"_blank\">WP Live "
|
1332 |
+
"Chat Support</a>! Please <a href=\"%2$s\" target=\"_blank\">rate us</a>! "
|
1333 |
+
"لطفا <a href=\"%2$s\" target=\"_blank\">rate us</a> در <a href=\"%2$s\" "
|
1334 |
+
"target=\"_blank\">WordPress.org</a>"
|
1335 |
+
|
1336 |
+
#: wp-live-chat-support.php:3047
|
1337 |
+
msgid "WP Live Chat Support is a product of"
|
1338 |
+
msgstr "WP Live Chat Support تولید شده توسط"
|
1339 |
+
|
1340 |
+
#: wp-live-chat-support.php:3089
|
1341 |
+
#, fuzzy
|
1342 |
+
msgid "Current Users that are Chat Agents"
|
1343 |
+
msgstr "Current Users that are Chat Agents"
|
1344 |
+
|
1345 |
+
#: wp-live-chat-support.php:3099
|
1346 |
+
msgid "Online"
|
1347 |
+
msgstr "آنلاین"
|
1348 |
+
|
1349 |
+
#: wp-live-chat-support.php:3120
|
1350 |
+
msgid "Administrator"
|
1351 |
+
msgstr "مدیر کل"
|
1352 |
+
|
1353 |
+
#: wp-live-chat-support.php:3129
|
1354 |
+
msgid "Editor"
|
1355 |
+
msgstr "ویرایشگر"
|
1356 |
+
|
1357 |
+
#: wp-live-chat-support.php:3138
|
1358 |
+
msgid "Author"
|
1359 |
+
msgstr "نویسنده"
|
1360 |
+
|
1361 |
+
#: wp-live-chat-support.php:3149
|
1362 |
+
msgid "Add New Agent"
|
1363 |
+
msgstr "افزودن مسئول جدید"
|
1364 |
+
|
1365 |
+
#: wp-live-chat-support.php:3150
|
1366 |
+
msgid "Add Agent"
|
1367 |
+
msgstr "افزودن مسئول"
|
1368 |
+
|
1369 |
+
#: wp-live-chat-support.php:3151
|
1370 |
+
msgid "Add as many agents as you need with the "
|
1371 |
+
msgstr "به هر تعداد که دوست دارید مسئول اضافه کنید با"
|
1372 |
+
|
1373 |
+
#: wp-live-chat-support.php:3151
|
1374 |
+
msgid "Multiple Agents Extension."
|
1375 |
+
msgstr "Multiple Agents Extension."
|
1376 |
+
|
1377 |
+
#: wp-live-chat-support.php:3155
|
1378 |
+
#, php-format
|
1379 |
+
msgid "Change the default chat agent from <strong>%1$s</strong> to "
|
1380 |
+
msgstr "مسئول پیش فرض گفتگو را از <strong>%1$s</strong> تغییر دهید به"
|
1381 |
+
|
1382 |
+
#: wp-live-chat-support.php:3246
|
1383 |
+
msgid "API Key"
|
1384 |
+
msgstr "API Key"
|
1385 |
+
|
1386 |
+
#: wp-live-chat-support.php:3249
|
1387 |
+
msgid "Verify"
|
1388 |
+
msgstr "بررسی"
|
1389 |
+
|
1390 |
+
#: wp-live-chat-support.php:3252
|
1391 |
+
msgid "Status: "
|
1392 |
+
msgstr "وضعیت:"
|
1393 |
+
|
1394 |
+
#: wp-live-chat-support.php:3255
|
1395 |
+
msgid "Valid"
|
1396 |
+
msgstr "صحیح"
|
1397 |
+
|
1398 |
+
#: wp-live-chat-support.php:3256 wp-live-chat-support.php:3260
|
1399 |
+
msgid "Manage this extension"
|
1400 |
+
msgstr "مدیریت این افزونه"
|
1401 |
+
|
1402 |
+
#: wp-live-chat-support.php:3259
|
1403 |
+
msgid "Invalid"
|
1404 |
+
msgstr "غلط"
|
1405 |
+
|
1406 |
+
#: wp-live-chat-support.php:3265
|
1407 |
+
msgid "Linked Domains"
|
1408 |
+
msgstr "Linked Domains"
|
1409 |
+
|
1410 |
+
#: wp-live-chat-support.php:3300 wp-live-chat-support.php:3364
|
1411 |
+
msgid "Initiate a chat with any visitor at any time."
|
1412 |
+
msgstr "شروع گفتگو با هر بازدید کننده ای در هر زمانی."
|
1413 |
+
|
1414 |
+
#: wp-live-chat-support.php:3302 wp-live-chat-support.php:3323
|
1415 |
+
#: wp-live-chat-support.php:3344 wp-live-chat-support.php:3366
|
1416 |
+
#: wp-live-chat-support.php:3387 wp-live-chat-support.php:3408
|
1417 |
+
msgid "Get this extension"
|
1418 |
+
msgstr "این افزونه را دریافت کنید"
|
1419 |
+
|
1420 |
+
#: wp-live-chat-support.php:3312
|
1421 |
+
msgid "Mobile & Desktop App"
|
1422 |
+
msgstr "نرم افزار موبایل و ویندوز دسکتاپ"
|
1423 |
+
|
1424 |
+
#: wp-live-chat-support.php:3321
|
1425 |
+
msgid ""
|
1426 |
+
"Answer chats directly from your mobile phone or dekstop with our mobile app "
|
1427 |
+
"and desktop client"
|
1428 |
+
msgstr ""
|
1429 |
+
"توسط نرم افزار موبایل یا ویندوز خود به صورت مستقیم به گفتگو ها پاسخ دهید"
|
1430 |
+
|
1431 |
+
#: wp-live-chat-support.php:3333
|
1432 |
+
msgid "Cloud Server"
|
1433 |
+
msgstr "Cloud Server"
|
1434 |
+
|
1435 |
+
#: wp-live-chat-support.php:3342
|
1436 |
+
msgid ""
|
1437 |
+
"Reduce the resources required by your server - use our cloud server to host "
|
1438 |
+
"your chats."
|
1439 |
+
msgstr ""
|
1440 |
+
"با استفاده از سرویس ابری (Cloud Server) ما - اسفاده از منابع سرور خود را "
|
1441 |
+
"کاهش دهید."
|
1442 |
+
|
1443 |
+
#: wp-live-chat-support.php:3376
|
1444 |
+
msgid "Advanced Chat Box Control"
|
1445 |
+
msgstr "کنترلر پیشرفته مدیریت پنجره گفتگو"
|
1446 |
+
|
1447 |
+
#: wp-live-chat-support.php:3385
|
1448 |
+
msgid ""
|
1449 |
+
"Add your company logo, avatar and name to the chat box and add more advanced "
|
1450 |
+
"features."
|
1451 |
+
msgstr ""
|
1452 |
+
"افزودن لوگوی شرکت، نماد شرکت، نام شرکت و بسیاری از ابزارهای پیشرفته در پنجره "
|
1453 |
+
"گفتگو."
|
1454 |
+
|
1455 |
+
#: wp-live-chat-support.php:3397
|
1456 |
+
msgid "Include and Exclude Pages"
|
1457 |
+
msgstr "حذف و اضافه کردن صفحات"
|
1458 |
+
|
1459 |
+
#: wp-live-chat-support.php:3406
|
1460 |
+
msgid ""
|
1461 |
+
"Control where the chat box is displayed on your website. Choose which pages "
|
1462 |
+
"to include and/or exclude."
|
1463 |
+
msgstr ""
|
1464 |
+
"تعیین کنید که پنجره گفتگو در چه مکانی از سایت نمایش داده شود. انتخاب کنید چه "
|
1465 |
+
"صفحه هایی از سایت شما پنجره گفتگو داشته باشد."
|
1466 |
+
|
1467 |
+
#: wp-live-chat-support.php:3426 wp-live-chat-support.php:3447
|
1468 |
+
msgid "Relevant Extensions"
|
1469 |
+
msgstr "افزونه های مرتبط"
|
1470 |
+
|
1471 |
+
#: wp-live-chat-support.php:3474
|
1472 |
+
msgid "Chat ID"
|
1473 |
+
msgstr "شناسه گفتگو"
|
1474 |
+
|
1475 |
+
#: wp-live-chat-support.php:3475
|
1476 |
+
msgid "From"
|
1477 |
+
msgstr "از"
|
1478 |
+
|
1479 |
+
#: wp-live-chat-support.php:3477
|
1480 |
+
#, fuzzy
|
1481 |
+
msgid "Timestamp"
|
1482 |
+
msgstr "زمان انتشار"
|
1483 |
+
|
1484 |
+
#: wp-live-chat-support.php:3478
|
1485 |
+
msgid "Origin"
|
1486 |
+
msgstr "مبدا"
|
1487 |
+
|
1488 |
+
#: wp-live-chat-support.php:3483
|
1489 |
+
msgid "user"
|
1490 |
+
msgstr "کاربر"
|
1491 |
+
|
1492 |
+
#: wp-live-chat-support.php:3485
|
1493 |
+
msgid "agent"
|
1494 |
+
msgstr "مسئول"
|
1495 |
+
|
1496 |
+
#: wp-live-chat-support.php:3530
|
1497 |
+
msgid ""
|
1498 |
+
"Your API Key is Invalid. You are not eligible for future updates. Please "
|
1499 |
+
"enter your API key <a href=\"admin.php?page=wplivechat-menu-api-keys-page"
|
1500 |
+
"\">here</a>."
|
1501 |
+
msgstr ""
|
1502 |
+
"API Key شما اشتباه است. شما برای به روز رسانی های بعدی واجد شرایط نیستید. "
|
1503 |
+
"لطفا API Key خود را اینجا<a href=\"admin.php?page=wplivechat-menu-api-keys-"
|
1504 |
+
"page\">here</a> وارد کنید."
|
1505 |
+
|
1506 |
+
#. Plugin URI of the plugin/theme
|
1507 |
+
#. Author URI of the plugin/theme
|
1508 |
+
msgid "http://www.wp-livechat.com"
|
1509 |
+
msgstr "http://www.wp-livechat.com"
|
1510 |
+
|
1511 |
+
#. Description of the plugin/theme
|
1512 |
+
msgid ""
|
1513 |
+
"The easiest to use website live chat plugin. Let your visitors chat with you "
|
1514 |
+
"and increase sales conversion rates with WP Live Chat Support. No third "
|
1515 |
+
"party connection required!"
|
1516 |
+
msgstr ""
|
1517 |
+
"راحت ترین پلاگین گفتگوی آنلاین برای سایت شما. به کمک WP Live Chat Support به "
|
1518 |
+
"بازدید کنندگانه سایتتان اجازه بدهید با شما گفتگو کنند و بدین وسیله نرخ فروش "
|
1519 |
+
"محصولات خود را افزایش دهید. بدون نیاز به اتصال به شرکت های ثالث!"
|
1520 |
+
|
1521 |
+
#. Author of the plugin/theme
|
1522 |
+
msgid "WP-LiveChat"
|
1523 |
+
msgstr "WP-LiveChat"
|
languages/wplivechat-fr_FR.mo
CHANGED
Binary file
|
languages/wplivechat-fr_FR.po
CHANGED
@@ -2,22 +2,23 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplc\n"
|
4 |
"POT-Creation-Date: 2015-04-13 14:49+0200\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Marcello Cavallucci <contact@fbmediaworks.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
-
"
|
16 |
-
"live-chat-
|
17 |
-
"
|
18 |
-
"live-chat-
|
19 |
-
"
|
20 |
-
"
|
|
|
21 |
|
22 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/functions-chat-experience.php:116
|
23 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:636
|
@@ -67,7 +68,7 @@ msgstr "Statut"
|
|
67 |
|
68 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/functions-chat-experience.php:127
|
69 |
msgid "Rating"
|
70 |
-
msgstr "
|
71 |
|
72 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/functions-chat-experience.php:128
|
73 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:647
|
@@ -91,7 +92,7 @@ msgid ""
|
|
91 |
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
92 |
msgstr ""
|
93 |
"Une erreur HTTP à eu lieu durant la demande de l'API.</p> <p><a href=\"?\" "
|
94 |
-
"onclick=\"document.location.reload(); return false;\">
|
95 |
|
96 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:100
|
97 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1802
|
@@ -112,7 +113,7 @@ msgid ""
|
|
112 |
msgstr ""
|
113 |
"Votre version de WP Live Chat Support est incompatible avec cette version de "
|
114 |
"WP Live Chat Experience Ratings. Veuillez mettre à jour la dernière version "
|
115 |
-
"via votre tableau de bord Wordpress, ou en la téléchargeant
|
116 |
|
117 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:118
|
118 |
msgid ""
|
@@ -130,17 +131,15 @@ msgid ""
|
|
130 |
msgstr ""
|
131 |
"Votre version de WP Live Chat Support est incompatible avec cette version de "
|
132 |
"WP Live Chat Experience Ratings. Veuillez mettre à jour la dernière version "
|
133 |
-
"via votre tableau de bord Wordpress, ou en la téléchargeant
|
134 |
|
135 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:123
|
136 |
msgid "or"
|
137 |
-
msgstr "
|
138 |
|
139 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:154
|
140 |
msgid "Please tell us more about your experience?"
|
141 |
-
msgstr ""
|
142 |
-
"Si vous le souhaitez, nous vous invitons à laisser un avis sur votre "
|
143 |
-
"relation avec notre opérateur."
|
144 |
|
145 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:155
|
146 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
@@ -184,7 +183,7 @@ msgstr ""
|
|
184 |
|
185 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:21
|
186 |
msgid "Allow visitors to enter additional feedback"
|
187 |
-
msgstr "Autoriser les visiteurs à entrer un
|
188 |
|
189 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:21
|
190 |
msgid ""
|
@@ -196,19 +195,20 @@ msgstr ""
|
|
196 |
|
197 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:29
|
198 |
msgid "Additional feedback text"
|
199 |
-
msgstr "Texte de
|
200 |
|
201 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:29
|
202 |
msgid "The text prompting your visitor to enter additional feedback."
|
203 |
-
msgstr "Texte invitant votre visiteur à entrer un
|
204 |
|
205 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:37
|
206 |
msgid "Send feedback button text"
|
207 |
-
msgstr "Texte
|
208 |
|
209 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:37
|
210 |
msgid "The text displayed in the button used to submit the final feedback."
|
211 |
-
msgstr "
|
|
|
212 |
|
213 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:45
|
214 |
msgid "Thank you text"
|
@@ -216,11 +216,11 @@ msgstr "Texte de remerciement"
|
|
216 |
|
217 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:45
|
218 |
msgid "The text displayed after the feedback has been submitted."
|
219 |
-
msgstr "Texte affiché après
|
220 |
|
221 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:2
|
222 |
msgid "WP Live Chat Support - Chat Experience Ratings Statistics"
|
223 |
-
msgstr "
|
224 |
|
225 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:158
|
226 |
msgid "Chats Per Day"
|
@@ -228,11 +228,11 @@ msgstr "Tchats par jour"
|
|
228 |
|
229 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:211
|
230 |
msgid "From Date"
|
231 |
-
msgstr "
|
232 |
|
233 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:214
|
234 |
msgid "To Date"
|
235 |
-
msgstr "
|
236 |
|
237 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:217
|
238 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
@@ -257,7 +257,7 @@ msgstr "Durées moyenne des tchats"
|
|
257 |
|
258 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:257
|
259 |
msgid "Most Popular Agent"
|
260 |
-
msgstr "
|
261 |
|
262 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:279
|
263 |
msgid "Chat Agent Participation"
|
@@ -265,7 +265,7 @@ msgstr "Notifications de discussion"
|
|
265 |
|
266 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:284
|
267 |
msgid "10 Recent Feedback Comments"
|
268 |
-
msgstr "10 derniers
|
269 |
|
270 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:295
|
271 |
msgid "Support Forum"
|
@@ -280,7 +280,7 @@ msgid ""
|
|
280 |
"Would you like to see more stats on this page? Send us your feedback via our "
|
281 |
msgstr ""
|
282 |
"Souhaitez-vous voir plus de statistiques sur cette page? Faites nous part de "
|
283 |
-
"
|
284 |
|
285 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:305
|
286 |
msgid "Statistics not available."
|
@@ -289,12 +289,12 @@ msgstr "Statistiques non disponibles"
|
|
289 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:283
|
290 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:230
|
291 |
msgid "Admin has closed and ended the chat"
|
292 |
-
msgstr "L'administrateur a mis fin à la discussion"
|
293 |
|
294 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:318
|
295 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:254
|
296 |
msgid "There is No Answer. Please Try Again Later"
|
297 |
-
msgstr "Pas de réponse. Merci de
|
298 |
|
299 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
|
300 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:913
|
@@ -315,7 +315,7 @@ msgstr "Vous devez être un Opérateur pour démarrer une discussion"
|
|
315 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
|
316 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:979
|
317 |
msgid "IP Address not recorded"
|
318 |
-
msgstr "Adresse IP"
|
319 |
|
320 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:55
|
321 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:207
|
@@ -339,7 +339,7 @@ msgstr "Info site"
|
|
339 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:243
|
340 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1005
|
341 |
msgid "Chat initiated on:"
|
342 |
-
msgstr "
|
343 |
|
344 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:93
|
345 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:263
|
@@ -377,7 +377,7 @@ msgstr "Pas de session de discussion disponible pour le moment"
|
|
377 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:184
|
378 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:190
|
379 |
msgid "Active Chats"
|
380 |
-
msgstr "Tchat"
|
381 |
|
382 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
383 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
@@ -387,7 +387,7 @@ msgstr "Accepter la discussion"
|
|
387 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
388 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
389 |
msgid "Incoming Chat"
|
390 |
-
msgstr "
|
391 |
|
392 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
393 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
@@ -406,12 +406,12 @@ msgstr "Ouvrir la fenêtre de discussion"
|
|
406 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
407 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
408 |
msgid "Chat Active"
|
409 |
-
msgstr "
|
410 |
|
411 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
412 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
413 |
msgid "This chat is active"
|
414 |
-
msgstr "Cette discussion est
|
415 |
|
416 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:229
|
417 |
msgid "Chat has been answered by another agent"
|
@@ -419,7 +419,7 @@ msgstr "La discussion à été prise en charge par un autre opérateur"
|
|
419 |
|
420 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
|
421 |
msgid "Chat answered by another agent"
|
422 |
-
msgstr "La discussion à été
|
423 |
|
424 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:288
|
425 |
msgid "WP Live Chat Support - Offline Message from "
|
@@ -433,7 +433,7 @@ msgstr "Message"
|
|
433 |
|
434 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
435 |
msgid "Via WP Live Chat Support"
|
436 |
-
msgstr "
|
437 |
|
438 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:337
|
439 |
msgid "Alert: Someone wants to chat with you on "
|
@@ -456,7 +456,7 @@ msgstr "Opérateur"
|
|
456 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:517
|
457 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:533
|
458 |
msgid "Make this user a chat agent"
|
459 |
-
msgstr "Faire de
|
460 |
|
461 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:547
|
462 |
msgid "Your user role does not allow you to make yourself a chat agent."
|
@@ -509,11 +509,11 @@ msgstr "Messages hors-ligne"
|
|
509 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
510 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:329
|
511 |
msgid "Styling"
|
512 |
-
msgstr "
|
513 |
|
514 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
|
515 |
msgid "Chat Agents"
|
516 |
-
msgstr "
|
517 |
|
518 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
|
519 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
@@ -524,12 +524,12 @@ msgstr "Visiteurs bloqués"
|
|
524 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:580
|
525 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
526 |
msgid "Chat Experience Ratings"
|
527 |
-
msgstr "
|
528 |
|
529 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
|
530 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
|
531 |
msgid "Main Settings"
|
532 |
-
msgstr "Paramètres
|
533 |
|
534 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
|
535 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:36
|
@@ -558,7 +558,7 @@ msgid ""
|
|
558 |
"the Live Chat page."
|
559 |
msgstr ""
|
560 |
"Cochez ici, vous permettra de changer votre statut en \"En ligne \" ou "
|
561 |
-
"\"Hors ligne \" sur la page
|
562 |
|
563 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
|
564 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
@@ -569,12 +569,12 @@ msgstr "Masquer la fenêtre de discussion"
|
|
569 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
570 |
msgid "Hides chat for 24hrs when user clicks X"
|
571 |
msgstr ""
|
572 |
-
"Masquer fenêtre de discussion durant 24 h si le visiteur a cliqué sur
|
573 |
|
574 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
575 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
576 |
msgid "Require Name And Email"
|
577 |
-
msgstr "Nom et
|
578 |
|
579 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
580 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
@@ -592,7 +592,8 @@ msgstr "Remplacement de texte dans champs de saisie"
|
|
592 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
593 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
594 |
msgid "This is the text that will show in place of the Name And Email fields"
|
595 |
-
msgstr "
|
|
|
596 |
|
597 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
598 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
@@ -605,7 +606,7 @@ msgid ""
|
|
605 |
"A user's Name and Email Address will be used by default if they are logged "
|
606 |
"in."
|
607 |
msgstr ""
|
608 |
-
"
|
609 |
"connectés."
|
610 |
|
611 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:94
|
@@ -634,7 +635,7 @@ msgstr "Désactiver cette option pour permettre l'anonymat pour vos visiteurs"
|
|
634 |
|
635 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:110
|
636 |
msgid "Include chat window on the following pages:"
|
637 |
-
msgstr "Inclure la fenêtre de
|
638 |
|
639 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:110
|
640 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
@@ -642,12 +643,13 @@ msgid ""
|
|
642 |
"Show the chat window on the following pages. Leave blank to show on all. "
|
643 |
"(Use comma-separated Page ID's)"
|
644 |
msgstr ""
|
645 |
-
"Afficher la fenêtre de
|
646 |
-
"affichage sur toutes les pages. ( ID des pages séparées par des
|
|
|
647 |
|
648 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
649 |
msgid "Exclude chat window on the following pages:"
|
650 |
-
msgstr "Exclure la fenêtre de
|
651 |
|
652 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
653 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
@@ -655,8 +657,8 @@ msgid ""
|
|
655 |
"Do not show the chat window on the following pages. Leave blank to show on "
|
656 |
"all. (Use comma-separated Page ID's)"
|
657 |
msgstr ""
|
658 |
-
"Ne
|
659 |
-
"pour
|
660 |
"virgules )"
|
661 |
|
662 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
|
@@ -668,8 +670,8 @@ msgid ""
|
|
668 |
"Checking this will allow any of your users to make themselves a chat agent "
|
669 |
"when editing their profile."
|
670 |
msgstr ""
|
671 |
-
"En cochant cette case vous
|
672 |
-
"opérateur lors de la modification de
|
673 |
|
674 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:136
|
675 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
@@ -722,17 +724,17 @@ msgstr "Nom"
|
|
722 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:174
|
723 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
|
724 |
msgid "Picture"
|
725 |
-
msgstr "
|
726 |
|
727 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
728 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
|
729 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
730 |
msgid "Upload Image"
|
731 |
-
msgstr "Importer
|
732 |
|
733 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:184
|
734 |
msgid "Remove Image"
|
735 |
-
msgstr "Retirer
|
736 |
|
737 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:185
|
738 |
msgid "Recomended Size 40px x 40px"
|
@@ -758,11 +760,12 @@ msgstr "Taille recommandée 250px x 40px"
|
|
758 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
759 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
760 |
msgid "Chat delay (seconds)"
|
761 |
-
msgstr "
|
762 |
|
763 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
764 |
msgid "How long it takes for your chat window to pop up"
|
765 |
-
msgstr "
|
|
|
766 |
|
767 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
|
768 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:235
|
@@ -772,19 +775,20 @@ msgstr "Notifications de discussion"
|
|
772 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
|
773 |
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
774 |
msgstr ""
|
775 |
-
"Alertez-moi par
|
|
|
776 |
|
777 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
|
778 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
779 |
msgid "Display name and avatar in chat"
|
780 |
-
msgstr "Afficher nom et avatar dans
|
781 |
|
782 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
|
783 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
784 |
msgid "Display the agent and user name above each message in the chat window."
|
785 |
msgstr ""
|
786 |
-
"Afficher l'opérateur et le nom
|
787 |
-
"dans la fenêtre de
|
788 |
|
789 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:235
|
790 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
|
@@ -813,8 +817,8 @@ msgid ""
|
|
813 |
"The chat window will be hidden when it is offline. Users will not be able to "
|
814 |
"send offline messages to you"
|
815 |
msgstr ""
|
816 |
-
"La fenêtre de
|
817 |
-
"seront pas en mesure de vous envoyer des messages hors ligne"
|
818 |
|
819 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
820 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:287
|
@@ -826,8 +830,8 @@ msgid ""
|
|
826 |
"Email address where offline messages are delivered to. Use comma separated "
|
827 |
"email addresses to send to more than one email address"
|
828 |
msgstr ""
|
829 |
-
"
|
830 |
-
"plusieurs"
|
831 |
|
832 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:277
|
833 |
msgid "Sending Method"
|
@@ -900,13 +904,12 @@ msgstr ""
|
|
900 |
|
901 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:391
|
902 |
msgid "Custom. Enter Colour Values Below"
|
903 |
-
msgstr ""
|
904 |
-
"Personnalisation. Allez dans \"Réglage couleur de la fenêtre de discussion\""
|
905 |
|
906 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
|
907 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
|
908 |
msgid "Chat box fill color"
|
909 |
-
msgstr "
|
910 |
|
911 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:411
|
912 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
@@ -915,11 +918,11 @@ msgstr "Couleur de police de la fenêtre de discussion"
|
|
915 |
|
916 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:418
|
917 |
msgid "I'm using a localization plugin"
|
918 |
-
msgstr "J'utilise un plugin de
|
919 |
|
920 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:421
|
921 |
msgid "documentation"
|
922 |
-
msgstr "
|
923 |
|
924 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:424
|
925 |
msgid ""
|
@@ -928,10 +931,11 @@ msgid ""
|
|
928 |
"plugins as possible. <br/> For more information on how to change these "
|
929 |
"strings, please consult the "
|
930 |
msgstr ""
|
931 |
-
"Vous ne serez plus en mesure de modifier les
|
932 |
-
"fenêtre de
|
933 |
-
"de
|
934 |
-
"modifier ces
|
|
|
935 |
|
936 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:428
|
937 |
msgid "First Section Text"
|
@@ -947,7 +951,7 @@ msgstr "Texte de seconde partie"
|
|
947 |
|
948 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:448
|
949 |
msgid "Reactivate Chat Section Text"
|
950 |
-
msgstr "
|
951 |
|
952 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:456
|
953 |
msgid "User chat welcome"
|
@@ -969,7 +973,10 @@ msgid ""
|
|
969 |
"update your plugin to allow for animations to function"
|
970 |
msgstr ""
|
971 |
"Vous utilisez une version périmée de WP Live Chat Support Basic. S'il vous "
|
972 |
-
"plait"
|
|
|
|
|
|
|
973 |
|
974 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:500
|
975 |
msgid "Choose an animation"
|
@@ -978,17 +985,17 @@ msgstr "Choisir une animation"
|
|
978 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:506
|
979 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:426
|
980 |
msgid "Slide Up"
|
981 |
-
msgstr "
|
982 |
|
983 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:510
|
984 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:430
|
985 |
msgid "Slide From The Side"
|
986 |
-
msgstr "
|
987 |
|
988 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:514
|
989 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
|
990 |
msgid "Fade In"
|
991 |
-
msgstr "
|
992 |
|
993 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
994 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:438
|
@@ -997,26 +1004,25 @@ msgstr "Pas d'animation"
|
|
997 |
|
998 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:548
|
999 |
msgid "Current Users that are Chat Agents"
|
1000 |
-
msgstr "
|
1001 |
|
1002 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:562
|
1003 |
msgid ""
|
1004 |
"To add or remove a user as a chat agent, go into the users profile and "
|
1005 |
"select the checkbox Chat Agent and click save."
|
1006 |
msgstr ""
|
1007 |
-
"Pour ajouter ou supprimer un utilisateur comme Opérateur,
|
1008 |
-
"profil utilisateur et cochez
|
1009 |
-
"
|
1010 |
|
1011 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:563
|
1012 |
msgid "If there are no chat agents online, the chat will show as offline"
|
1013 |
-
msgstr ""
|
1014 |
-
"S'il n'y a pas d'opérateur en ligne, le Tchat vous annoncera hors ligne"
|
1015 |
|
1016 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:567
|
1017 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:450
|
1018 |
msgid "Blocked Visitors - Based on IP Address"
|
1019 |
-
msgstr "Visiteurs bloqués -
|
1020 |
|
1021 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
1022 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
@@ -1030,13 +1036,16 @@ msgid ""
|
|
1030 |
"Blocking a user's IP Address here will hide the chat window from them, "
|
1031 |
"preventing them from chatting with you. Each IP Address must be on a new line"
|
1032 |
msgstr ""
|
1033 |
-
"Bloquer une adresse IP d'un visiteur masquera la fenêtre de
|
1034 |
-
"se connectera à votre site"
|
|
|
1035 |
|
1036 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
1037 |
msgid ""
|
1038 |
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
1039 |
-
msgstr "
|
|
|
|
|
1040 |
|
1041 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:590
|
1042 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
|
@@ -1050,18 +1059,18 @@ msgstr "Cher utilisateur"
|
|
1050 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
1051 |
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
1052 |
msgstr ""
|
1053 |
-
"Vous utilisez une version
|
1054 |
"plait"
|
1055 |
|
1056 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
1057 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:838
|
1058 |
msgid "update to at least version"
|
1059 |
-
msgstr "mettez
|
1060 |
|
1061 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
1062 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:838
|
1063 |
msgid "to ensure all functionality is in working order"
|
1064 |
-
msgstr "pour
|
1065 |
|
1066 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
|
1067 |
msgid ""
|
@@ -1078,8 +1087,8 @@ msgid ""
|
|
1078 |
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
1079 |
"href='./plugins.php'>here</a>."
|
1080 |
msgstr ""
|
1081 |
-
"Vous pouvez mettre à jour votre plugin <a href='./update-core.php'>
|
1082 |
-
"
|
1083 |
|
1084 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
1085 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:841
|
@@ -1124,7 +1133,7 @@ msgstr "Discutez avec nous"
|
|
1124 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:534
|
1125 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:758
|
1126 |
msgid "Start live chat"
|
1127 |
-
msgstr "Démarrer une discussion"
|
1128 |
|
1129 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:535
|
1130 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:760
|
@@ -1145,19 +1154,19 @@ msgstr ""
|
|
1145 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
|
1146 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:525
|
1147 |
msgid "Reactivating your previous chat..."
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:538
|
1151 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:765
|
1152 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
|
1153 |
msgid "Chat offline. Leave a message"
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:539
|
1157 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:767
|
1158 |
msgid "Hello. Please input your details so that I may help you."
|
1159 |
msgstr ""
|
1160 |
-
"Bonjour.
|
1161 |
|
1162 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:540
|
1163 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:769
|
@@ -1166,17 +1175,17 @@ msgid ""
|
|
1166 |
"We are currently offline. Please leave a message and we'll get back to you "
|
1167 |
"shortly."
|
1168 |
msgstr ""
|
1169 |
-
"Nous sommes actuellement
|
1170 |
-
"reviendrons vers vous
|
1171 |
|
1172 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:541
|
1173 |
msgid "Sending message..."
|
1174 |
-
msgstr "
|
1175 |
|
1176 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:542
|
1177 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:771
|
1178 |
msgid "Thank you for your message. We will be in contact soon."
|
1179 |
-
msgstr "Merci pour votre
|
1180 |
|
1181 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
|
1182 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:773
|
@@ -1192,15 +1201,15 @@ msgstr "Bonjour. Comment puis-je vous aider ?"
|
|
1192 |
|
1193 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:583
|
1194 |
msgid "Rating Unavailable"
|
1195 |
-
msgstr "
|
1196 |
|
1197 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:587
|
1198 |
msgid "You are currently accepting chats"
|
1199 |
-
msgstr "Vous acceptez actuellement des
|
1200 |
|
1201 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:588
|
1202 |
msgid "You are not accepting chats"
|
1203 |
-
msgstr "Vous n'acceptez pas
|
1204 |
|
1205 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:777
|
1206 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:954
|
@@ -1212,15 +1221,15 @@ msgstr ""
|
|
1212 |
|
1213 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:798
|
1214 |
msgid "Minimize Chat Window"
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:799
|
1218 |
msgid "Close Chat Window"
|
1219 |
-
msgstr "
|
1220 |
|
1221 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:887
|
1222 |
msgid "Send message"
|
1223 |
-
msgstr "Envoyer message"
|
1224 |
|
1225 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:913
|
1226 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:534
|
@@ -1244,8 +1253,8 @@ msgid ""
|
|
1244 |
"Please note: This window must be open in order to receive new chat "
|
1245 |
"notifications."
|
1246 |
msgstr ""
|
1247 |
-
"
|
1248 |
-
"notifications de discussion."
|
1249 |
|
1250 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1121
|
1251 |
msgid ""
|
@@ -1253,7 +1262,7 @@ msgid ""
|
|
1253 |
"chat to visitors"
|
1254 |
msgstr ""
|
1255 |
"Vous n'êtes pas un Opérateur. Veuillez svp, vous enregistrer comme Opérateur "
|
1256 |
-
"avant d'essayer de
|
1257 |
|
1258 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1221
|
1259 |
msgid "Unknown"
|
@@ -1267,14 +1276,13 @@ msgstr "Terminer la discussion"
|
|
1267 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1242
|
1268 |
msgid "Attempting to open the chat window... Please be patient."
|
1269 |
msgstr ""
|
1270 |
-
"En attente d'ouverture de la fenêtre de discussion...Merci
|
1271 |
-
"patience."
|
1272 |
|
1273 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1337
|
1274 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1632
|
1275 |
msgid "This chat has already been answered. Please close the chat window"
|
1276 |
msgstr ""
|
1277 |
-
"
|
1278 |
"discussion"
|
1279 |
|
1280 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1405
|
@@ -1290,17 +1298,17 @@ msgstr "Le visiteur a réduit la fenêtre de discussion"
|
|
1290 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1415
|
1291 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1156
|
1292 |
msgid "User has maximized the chat window"
|
1293 |
-
msgstr "Le visiteur a
|
1294 |
|
1295 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1420
|
1296 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1161
|
1297 |
msgid "User has closed and ended the chat"
|
1298 |
-
msgstr "
|
1299 |
|
1300 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1964
|
1301 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:274
|
1302 |
msgid "Live Chat"
|
1303 |
-
msgstr "
|
1304 |
|
1305 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1965
|
1306 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:275
|
@@ -1321,13 +1329,13 @@ msgstr "Historique"
|
|
1321 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1969
|
1322 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:277
|
1323 |
msgid "Missed Chats"
|
1324 |
-
msgstr "
|
1325 |
|
1326 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1971
|
1327 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1328 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:278
|
1329 |
msgid "Feedback"
|
1330 |
-
msgstr "
|
1331 |
|
1332 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1975
|
1333 |
msgid "Error Log"
|
@@ -1335,13 +1343,13 @@ msgstr "Erreur de connexion"
|
|
1335 |
|
1336 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1978
|
1337 |
msgid "Statistics"
|
1338 |
-
msgstr "
|
1339 |
|
1340 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1981
|
1341 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:279
|
1342 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1639
|
1343 |
msgid "Support"
|
1344 |
-
msgstr ""
|
1345 |
|
1346 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1988
|
1347 |
msgid "Quick Response"
|
@@ -1358,7 +1366,7 @@ msgstr "Ajouter une nouvelle réponse rapide"
|
|
1358 |
|
1359 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1991
|
1360 |
msgid "Edit Quick Response"
|
1361 |
-
msgstr "Éditer
|
1362 |
|
1363 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1993
|
1364 |
msgid "All Quick Responses"
|
@@ -1401,7 +1409,7 @@ msgstr "Quest-ce que c'est ?"
|
|
1401 |
|
1402 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:566
|
1403 |
msgid "complete"
|
1404 |
-
msgstr "
|
1405 |
|
1406 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:569
|
1407 |
msgid "pending"
|
@@ -1409,7 +1417,7 @@ msgstr "en attente"
|
|
1409 |
|
1410 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:572
|
1411 |
msgid "active"
|
1412 |
-
msgstr "
|
1413 |
|
1414 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:575
|
1415 |
msgid "deleted"
|
@@ -1417,7 +1425,7 @@ msgstr "supprimé"
|
|
1417 |
|
1418 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:578
|
1419 |
msgid "browsing"
|
1420 |
-
msgstr "
|
1421 |
|
1422 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:581
|
1423 |
msgid "requesting chat"
|
@@ -1433,11 +1441,11 @@ msgstr "Le visiteur navigue sur votre site et ne souhaite pas discuter"
|
|
1433 |
|
1434 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:668
|
1435 |
msgid "Get Pro Add-on to accept more chats"
|
1436 |
-
msgstr "Prenez la version PRO pour accepter plus de discussions"
|
1437 |
|
1438 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:912
|
1439 |
msgid "You have not missed any chat requests."
|
1440 |
-
msgstr "Vous n'avez pas manqué de demande de
|
1441 |
|
1442 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1443 |
msgid "WP Live Chat Support Feedback"
|
@@ -1510,11 +1518,11 @@ msgstr "Les mises à jours seront incluent de manière permanentes."
|
|
1510 |
|
1511 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
1512 |
msgid "Include chat window on the following pages"
|
1513 |
-
msgstr "Inclure la fenêtre de
|
1514 |
|
1515 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
1516 |
msgid "Exclude chat window on the following pages"
|
1517 |
-
msgstr "Exclure la fenêtre de
|
1518 |
|
1519 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
1520 |
msgid "Alert me via email as soon as someone wants to chat"
|
@@ -1536,7 +1544,8 @@ msgstr "Editer ces champs de textes en utilisant le"
|
|
1536 |
|
1537 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1538 |
msgid "Choose a colour scheme. Only available in the"
|
1539 |
-
msgstr "
|
|
|
1540 |
|
1541 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1542 |
msgid "Pro add-on"
|
@@ -1583,15 +1592,15 @@ msgstr ""
|
|
1583 |
|
1584 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1585 |
msgid "Reactivate chat section text"
|
1586 |
-
msgstr "
|
1587 |
|
1588 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:418
|
1589 |
msgid "Choose an animation. Only available in the"
|
1590 |
-
msgstr "Cette option est uniquement possible
|
1591 |
|
1592 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:419
|
1593 |
msgid "Pro"
|
1594 |
-
msgstr ""
|
1595 |
|
1596 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:446
|
1597 |
msgid "Multiple Agents"
|
@@ -1611,11 +1620,11 @@ msgstr "Bienvenue à"
|
|
1611 |
|
1612 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1613 |
msgid "Version 4"
|
1614 |
-
msgstr ""
|
1615 |
|
1616 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1617 |
msgid "Provide Instant Live Chat Support!"
|
1618 |
-
msgstr "
|
1619 |
|
1620 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1621 |
msgid "How did you find us?"
|
@@ -1658,15 +1667,15 @@ msgstr ""
|
|
1658 |
|
1659 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:464
|
1660 |
msgid "Start Live Chat"
|
1661 |
-
msgstr "Démarrer une discussion"
|
1662 |
|
1663 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:838
|
1664 |
msgid ""
|
1665 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1666 |
"strong>. Please"
|
1667 |
msgstr ""
|
1668 |
-
"Vous utilisez actuellement une version
|
1669 |
-
"Support Pro</strong>."
|
1670 |
|
1671 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:839
|
1672 |
msgid ""
|
@@ -1685,8 +1694,8 @@ msgid ""
|
|
1685 |
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1686 |
"version/' target='_BLANK'>here</a>."
|
1687 |
msgstr ""
|
1688 |
-
"Vous pouvez mettre à jour votre plugin <a href='./update-core.php'>
|
1689 |
-
"<a href='./plugins.php'>
|
1690 |
"updated-version/' target='_BLANK'>ici</a>."
|
1691 |
|
1692 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:853
|
@@ -1694,24 +1703,24 @@ msgid ""
|
|
1694 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1695 |
"strong>."
|
1696 |
msgstr ""
|
1697 |
-
"Vous utilisez actuellement une version
|
1698 |
"Support Pro</strong>."
|
1699 |
|
1700 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:855
|
1701 |
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1702 |
msgstr ""
|
1703 |
-
"
|
1704 |
-
"
|
1705 |
|
1706 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:856
|
1707 |
msgid "Version 4.4.5"
|
1708 |
-
msgstr ""
|
1709 |
|
1710 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:857
|
1711 |
msgid "to take advantage of chat window transitions and colour schemes."
|
1712 |
msgstr ""
|
1713 |
-
"
|
1714 |
-
"
|
1715 |
|
1716 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:884
|
1717 |
msgid "Experiencing problems with the plugin?"
|
@@ -1727,7 +1736,7 @@ msgstr "ou posez une question sur notre"
|
|
1727 |
|
1728 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:887
|
1729 |
msgid "Support forum."
|
1730 |
-
msgstr ""
|
1731 |
|
1732 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:915
|
1733 |
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
@@ -1745,13 +1754,13 @@ msgstr "avec vos visiteurs en ligne en 1 clic."
|
|
1745 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:919
|
1746 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1747 |
msgstr ""
|
1748 |
-
" Achetez la version Pro pour seulement $
|
1749 |
-
"jour
|
1750 |
|
1751 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:921
|
1752 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1753 |
msgstr ""
|
1754 |
-
" Achetez la version Pro pour seulement $
|
1755 |
"jour illimitées."
|
1756 |
|
1757 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:973
|
@@ -1776,7 +1785,7 @@ msgstr "Version Pro uniquement"
|
|
1776 |
|
1777 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1032
|
1778 |
msgid "type here..."
|
1779 |
-
msgstr "
|
1780 |
|
1781 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1413
|
1782 |
msgid "WP Live Chat History"
|
@@ -1785,28 +1794,28 @@ msgstr "Historique WP Live Chat "
|
|
1785 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1420
|
1786 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1787 |
msgid "This option is only available in the "
|
1788 |
-
msgstr "Cette option est uniquement possible
|
1789 |
|
1790 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1420
|
1791 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1792 |
msgid "Get it now for only $19.95 once off!"
|
1793 |
-
msgstr "Achetez maintenant pour seulement $
|
1794 |
|
1795 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1425
|
1796 |
msgid "WP Live Chat Missed Chats"
|
1797 |
-
msgstr "
|
1798 |
|
1799 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1432
|
1800 |
msgid "WP Live Chat Offline Messages"
|
1801 |
-
msgstr "WP Live Chat
|
1802 |
|
1803 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1437
|
1804 |
msgid ""
|
1805 |
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1806 |
"recording any offline messages."
|
1807 |
msgstr ""
|
1808 |
-
"
|
1809 |
-
"
|
1810 |
|
1811 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1530
|
1812 |
msgid "Thank You for your feedback!"
|
@@ -1831,8 +1840,7 @@ msgid ""
|
|
1831 |
msgstr ""
|
1832 |
"WPLC : set_time_limit() n'est pas activée sur votre serveur. Vous pouvez "
|
1833 |
"rencontrer des problèmes lors de l'utilisation WP Live Chat Support. S'il "
|
1834 |
-
"vous plaît,
|
1835 |
-
"fonction."
|
1836 |
|
1837 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1589
|
1838 |
msgid ""
|
@@ -1842,15 +1850,15 @@ msgid ""
|
|
1842 |
msgstr ""
|
1843 |
"WPLC: Safe Mode est activé sur ce serveur. Vous pouvez rencontrer des "
|
1844 |
"problèmes lors de l'utilisation WP Live Chat Support. S' il vous plaît "
|
1845 |
-
"
|
1846 |
|
1847 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1601
|
1848 |
msgid "WP Live Chat Support"
|
1849 |
-
msgstr "
|
1850 |
|
1851 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1604
|
1852 |
msgid "Documentation"
|
1853 |
-
msgstr "
|
1854 |
|
1855 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1606
|
1856 |
msgid ""
|
@@ -1860,15 +1868,15 @@ msgstr "Prêt? Lisez certains de ces articles pour vous aider."
|
|
1860 |
|
1861 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1607
|
1862 |
msgid "Documentation:"
|
1863 |
-
msgstr "
|
1864 |
|
1865 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1609
|
1866 |
msgid "Installing the WP Live Chat Support Pro add-on"
|
1867 |
-
msgstr "
|
1868 |
|
1869 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1610
|
1870 |
msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
|
1871 |
-
msgstr "
|
1872 |
|
1873 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1611
|
1874 |
msgid "Upgrading your licence (Pro)"
|
@@ -1880,7 +1888,7 @@ msgstr "Système minimum requis"
|
|
1880 |
|
1881 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1614
|
1882 |
msgid "FAQ's:"
|
1883 |
-
msgstr ""
|
1884 |
|
1885 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1616
|
1886 |
msgid "How do I check for JavaScript errors on my site?"
|
@@ -1888,11 +1896,11 @@ msgstr "Comment dois-je contrôler les erreurs javascript sur mon site?"
|
|
1888 |
|
1889 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1617
|
1890 |
msgid "What are Quick Responses?"
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1618
|
1894 |
msgid "Can I use this plugin on my multi-site?"
|
1895 |
-
msgstr "
|
1896 |
|
1897 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1619
|
1898 |
msgid "How do I disable APC Object Cache?"
|
@@ -1905,7 +1913,7 @@ msgstr "Avez-vous une application mobile?"
|
|
1905 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1621
|
1906 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1907 |
msgstr ""
|
1908 |
-
"Dois-je être connecté sur le tableau de bord pour
|
1909 |
"visiteurs?"
|
1910 |
|
1911 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1625
|
@@ -1918,34 +1926,36 @@ msgid ""
|
|
1918 |
"from time to time, run into conflicts with the thousands of themes and other "
|
1919 |
"plugins on the market."
|
1920 |
msgstr ""
|
1921 |
-
"WP Live Chat Support Pro dispose d'
|
1922 |
"peuvent, de temps à autre, entrer en conflits avec les milliers de thèmes et "
|
1923 |
-
"
|
1924 |
|
1925 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1628
|
1926 |
msgid "Common issues:"
|
1927 |
-
msgstr "
|
1928 |
|
1929 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1630
|
1930 |
msgid "The chat box doesnt show up"
|
1931 |
-
msgstr "La fenêtre de
|
1932 |
|
1933 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1631
|
1934 |
msgid "The chat window disappears when I logout or go offline"
|
1935 |
msgstr ""
|
1936 |
-
"La fenêtre de
|
|
|
1937 |
|
1938 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1633
|
1939 |
msgid "Messages only show when I refresh the chat window"
|
1940 |
-
msgstr "
|
|
|
1941 |
|
1942 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1634
|
1943 |
msgid "I'm not getting any notifications of a new chat"
|
1944 |
-
msgstr "Je n'ai
|
1945 |
|
1946 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1635
|
1947 |
msgid "The chat window never goes offline"
|
1948 |
-
msgstr "La fenêtre de
|
1949 |
|
1950 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1641
|
1951 |
msgid "Still need help? Use one of these links below."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplc\n"
|
4 |
"POT-Creation-Date: 2015-04-13 14:49+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-01-18 17:21+0100\n"
|
6 |
"Last-Translator: Marcello Cavallucci <contact@fbmediaworks.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
+
"Language: fr_FR\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.8.6\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
16 |
+
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-"
|
17 |
+
"support\n"
|
18 |
+
"X-Poedit-SearchPath-1: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-"
|
19 |
+
"support-pro\n"
|
20 |
+
"X-Poedit-SearchPath-2: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-"
|
21 |
+
"support-chat-experience\n"
|
22 |
|
23 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/functions-chat-experience.php:116
|
24 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:636
|
68 |
|
69 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/functions-chat-experience.php:127
|
70 |
msgid "Rating"
|
71 |
+
msgstr "Évaluation"
|
72 |
|
73 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/functions-chat-experience.php:128
|
74 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:647
|
92 |
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
93 |
msgstr ""
|
94 |
"Une erreur HTTP à eu lieu durant la demande de l'API.</p> <p><a href=\"?\" "
|
95 |
+
"onclick=\"document.location.reload(); return false;\">Réessayer</a>"
|
96 |
|
97 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:100
|
98 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1802
|
113 |
msgstr ""
|
114 |
"Votre version de WP Live Chat Support est incompatible avec cette version de "
|
115 |
"WP Live Chat Experience Ratings. Veuillez mettre à jour la dernière version "
|
116 |
+
"via votre tableau de bord Wordpress, ou en la téléchargeant."
|
117 |
|
118 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:118
|
119 |
msgid ""
|
131 |
msgstr ""
|
132 |
"Votre version de WP Live Chat Support est incompatible avec cette version de "
|
133 |
"WP Live Chat Experience Ratings. Veuillez mettre à jour la dernière version "
|
134 |
+
"via votre tableau de bord Wordpress, ou en la téléchargeant"
|
135 |
|
136 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:123
|
137 |
msgid "or"
|
138 |
+
msgstr "ou"
|
139 |
|
140 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:154
|
141 |
msgid "Please tell us more about your experience?"
|
142 |
+
msgstr "SVP pourriez-vous nous faire part de votre expérience?"
|
|
|
|
|
143 |
|
144 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wp-live-chat-support-chat-experience.php:155
|
145 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
183 |
|
184 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:21
|
185 |
msgid "Allow visitors to enter additional feedback"
|
186 |
+
msgstr "Autoriser les visiteurs à entrer un avis supplémentaire"
|
187 |
|
188 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:21
|
189 |
msgid ""
|
195 |
|
196 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:29
|
197 |
msgid "Additional feedback text"
|
198 |
+
msgstr "Texte de commentaire supplémentaire"
|
199 |
|
200 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:29
|
201 |
msgid "The text prompting your visitor to enter additional feedback."
|
202 |
+
msgstr "Texte invitant votre visiteur à entrer un commentaire"
|
203 |
|
204 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:37
|
205 |
msgid "Send feedback button text"
|
206 |
+
msgstr "Texte du bouton envoyer commentaire"
|
207 |
|
208 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:37
|
209 |
msgid "The text displayed in the button used to submit the final feedback."
|
210 |
+
msgstr ""
|
211 |
+
"Texte affiché dans le bouton utilisé pour soumettre le commentaire final."
|
212 |
|
213 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:45
|
214 |
msgid "Thank you text"
|
216 |
|
217 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-settings.php:45
|
218 |
msgid "The text displayed after the feedback has been submitted."
|
219 |
+
msgstr "Texte affiché après l'envoi du commentaire"
|
220 |
|
221 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:2
|
222 |
msgid "WP Live Chat Support - Chat Experience Ratings Statistics"
|
223 |
+
msgstr "WP Live Chat Support - Statisques des évaluations du chat"
|
224 |
|
225 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:158
|
226 |
msgid "Chats Per Day"
|
228 |
|
229 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:211
|
230 |
msgid "From Date"
|
231 |
+
msgstr "Depuis le"
|
232 |
|
233 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:214
|
234 |
msgid "To Date"
|
235 |
+
msgstr "au"
|
236 |
|
237 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:217
|
238 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
257 |
|
258 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:257
|
259 |
msgid "Most Popular Agent"
|
260 |
+
msgstr "Opérateur le plus populaire"
|
261 |
|
262 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:279
|
263 |
msgid "Chat Agent Participation"
|
265 |
|
266 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:284
|
267 |
msgid "10 Recent Feedback Comments"
|
268 |
+
msgstr "10 derniers commentaires"
|
269 |
|
270 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:295
|
271 |
msgid "Support Forum"
|
280 |
"Would you like to see more stats on this page? Send us your feedback via our "
|
281 |
msgstr ""
|
282 |
"Souhaitez-vous voir plus de statistiques sur cette page? Faites nous part de "
|
283 |
+
"vos commentaires via notre"
|
284 |
|
285 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-chat-experience/wplc-ce-stats.php:305
|
286 |
msgid "Statistics not available."
|
289 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:283
|
290 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:230
|
291 |
msgid "Admin has closed and ended the chat"
|
292 |
+
msgstr "L'administrateur a fermé et mis fin à la discussion"
|
293 |
|
294 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:318
|
295 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:254
|
296 |
msgid "There is No Answer. Please Try Again Later"
|
297 |
+
msgstr "Pas de réponse. Merci de réessayer plus tard"
|
298 |
|
299 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
|
300 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:913
|
315 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
|
316 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:979
|
317 |
msgid "IP Address not recorded"
|
318 |
+
msgstr "Adresse IP non enregistrées"
|
319 |
|
320 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:55
|
321 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:207
|
339 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:243
|
340 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1005
|
341 |
msgid "Chat initiated on:"
|
342 |
+
msgstr "Tchat lancé sur:"
|
343 |
|
344 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:93
|
345 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:263
|
377 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:184
|
378 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:190
|
379 |
msgid "Active Chats"
|
380 |
+
msgstr "Tchat actifs"
|
381 |
|
382 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
383 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
387 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
388 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
389 |
msgid "Incoming Chat"
|
390 |
+
msgstr "Tchat entrant"
|
391 |
|
392 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
393 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
406 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
407 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
408 |
msgid "Chat Active"
|
409 |
+
msgstr "Tchat en cours"
|
410 |
|
411 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
412 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
413 |
msgid "This chat is active"
|
414 |
+
msgstr "Cette discussion est en cours"
|
415 |
|
416 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:229
|
417 |
msgid "Chat has been answered by another agent"
|
419 |
|
420 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
|
421 |
msgid "Chat answered by another agent"
|
422 |
+
msgstr "La discussion à été répondu en charge par un autre opérateur"
|
423 |
|
424 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:288
|
425 |
msgid "WP Live Chat Support - Offline Message from "
|
433 |
|
434 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
435 |
msgid "Via WP Live Chat Support"
|
436 |
+
msgstr "via WP Live Chat Support"
|
437 |
|
438 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:337
|
439 |
msgid "Alert: Someone wants to chat with you on "
|
456 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:517
|
457 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:533
|
458 |
msgid "Make this user a chat agent"
|
459 |
+
msgstr "Faire de cet utilisateur un opérateur"
|
460 |
|
461 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:547
|
462 |
msgid "Your user role does not allow you to make yourself a chat agent."
|
509 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
510 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:329
|
511 |
msgid "Styling"
|
512 |
+
msgstr "Esthétique"
|
513 |
|
514 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
|
515 |
msgid "Chat Agents"
|
516 |
+
msgstr "Opérateurs de discussion"
|
517 |
|
518 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
|
519 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
524 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:580
|
525 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
526 |
msgid "Chat Experience Ratings"
|
527 |
+
msgstr "Evaluation de l'expérience de discussion"
|
528 |
|
529 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:40
|
530 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
|
531 |
msgid "Main Settings"
|
532 |
+
msgstr "Paramètres principaux"
|
533 |
|
534 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:43
|
535 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:36
|
558 |
"the Live Chat page."
|
559 |
msgstr ""
|
560 |
"Cochez ici, vous permettra de changer votre statut en \"En ligne \" ou "
|
561 |
+
"\"Hors ligne \" sur la page de discussion"
|
562 |
|
563 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:61
|
564 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
569 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
570 |
msgid "Hides chat for 24hrs when user clicks X"
|
571 |
msgstr ""
|
572 |
+
"Masquer la fenêtre de discussion durant 24 h si le visiteur a cliqué sur X"
|
573 |
|
574 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
575 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
576 |
msgid "Require Name And Email"
|
577 |
+
msgstr "Exiger le Nom et l' email "
|
578 |
|
579 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
580 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
592 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
593 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
594 |
msgid "This is the text that will show in place of the Name And Email fields"
|
595 |
+
msgstr ""
|
596 |
+
"Ceci est le texte qui apparaîtra à la place des champs de Nom et d'email"
|
597 |
|
598 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
599 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
606 |
"A user's Name and Email Address will be used by default if they are logged "
|
607 |
"in."
|
608 |
msgstr ""
|
609 |
+
"Le Nom et l'email de votre visiteur seront utilisés par défaut si ils sont "
|
610 |
"connectés."
|
611 |
|
612 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:94
|
635 |
|
636 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:110
|
637 |
msgid "Include chat window on the following pages:"
|
638 |
+
msgstr "Inclure la fenêtre de discussion dans les pages suivantes :"
|
639 |
|
640 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:110
|
641 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
643 |
"Show the chat window on the following pages. Leave blank to show on all. "
|
644 |
"(Use comma-separated Page ID's)"
|
645 |
msgstr ""
|
646 |
+
"Afficher la fenêtre de discussion dans les pages suivantes. Laissez vide "
|
647 |
+
"pour affichage sur toutes les pages. ( ID des pages séparées par des "
|
648 |
+
"virgules )"
|
649 |
|
650 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
651 |
msgid "Exclude chat window on the following pages:"
|
652 |
+
msgstr "Exclure la fenêtre de discussion dans les pages suivantes :"
|
653 |
|
654 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
655 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
657 |
"Do not show the chat window on the following pages. Leave blank to show on "
|
658 |
"all. (Use comma-separated Page ID's)"
|
659 |
msgstr ""
|
660 |
+
"Ne pas afficher la fenêtre de discussion dans les pages suivantes. Laissez "
|
661 |
+
"vide pour afficher sur toutes les pages. ( ID des pages séparées par des "
|
662 |
"virgules )"
|
663 |
|
664 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:126
|
670 |
"Checking this will allow any of your users to make themselves a chat agent "
|
671 |
"when editing their profile."
|
672 |
msgstr ""
|
673 |
+
"En cochant cette case vous permettrez àtout vos utilisateurs de devenir "
|
674 |
+
"opérateur lors de la modification de leur profil."
|
675 |
|
676 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:136
|
677 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
724 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:174
|
725 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
|
726 |
msgid "Picture"
|
727 |
+
msgstr "Photo"
|
728 |
|
729 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
730 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
|
731 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
732 |
msgid "Upload Image"
|
733 |
+
msgstr "Importer une photo"
|
734 |
|
735 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:184
|
736 |
msgid "Remove Image"
|
737 |
+
msgstr "Retirer la photo"
|
738 |
|
739 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:185
|
740 |
msgid "Recomended Size 40px x 40px"
|
760 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
761 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
762 |
msgid "Chat delay (seconds)"
|
763 |
+
msgstr "Retardement de la discussion (secondes)"
|
764 |
|
765 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
766 |
msgid "How long it takes for your chat window to pop up"
|
767 |
+
msgstr ""
|
768 |
+
"Combien de temps cela prend à votre fenêtre de discusssion pour apparaître"
|
769 |
|
770 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
|
771 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:235
|
775 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:217
|
776 |
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
777 |
msgstr ""
|
778 |
+
"Alertez-moi par email dès qu'un visiteur souhaite ouvrir une discussion (en "
|
779 |
+
"ligne seulement)"
|
780 |
|
781 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
|
782 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
783 |
msgid "Display name and avatar in chat"
|
784 |
+
msgstr "Afficher nom et avatar dans la discuccion"
|
785 |
|
786 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:225
|
787 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
788 |
msgid "Display the agent and user name above each message in the chat window."
|
789 |
msgstr ""
|
790 |
+
"Afficher l'opérateur et le nom de l'utilisateur au dessus de chaque message "
|
791 |
+
"dans la fenêtre de discussion"
|
792 |
|
793 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:235
|
794 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
|
817 |
"The chat window will be hidden when it is offline. Users will not be able to "
|
818 |
"send offline messages to you"
|
819 |
msgstr ""
|
820 |
+
"La fenêtre de discussion sera cachée quand vous êtes déconnecté. Les "
|
821 |
+
"visiteurs ne seront pas en mesure de vous envoyer des messages hors ligne"
|
822 |
|
823 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
824 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:287
|
830 |
"Email address where offline messages are delivered to. Use comma separated "
|
831 |
"email addresses to send to more than one email address"
|
832 |
msgstr ""
|
833 |
+
"Adresse e-mail où les messages hors ligne sont envoyés.Séparez les adresses "
|
834 |
+
"email par des virgules si vous voulez en utiliser plusieurs"
|
835 |
|
836 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:277
|
837 |
msgid "Sending Method"
|
904 |
|
905 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:391
|
906 |
msgid "Custom. Enter Colour Values Below"
|
907 |
+
msgstr "Personnalisation. Entrez les valeurs de couleur ci-dessous"
|
|
|
908 |
|
909 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
|
910 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
|
911 |
msgid "Chat box fill color"
|
912 |
+
msgstr "Couleur de remplissage de la fenêtre de discussion"
|
913 |
|
914 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:411
|
915 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
918 |
|
919 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:418
|
920 |
msgid "I'm using a localization plugin"
|
921 |
+
msgstr "J'utilise un plugin de localisation"
|
922 |
|
923 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:421
|
924 |
msgid "documentation"
|
925 |
+
msgstr "Documentation"
|
926 |
|
927 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:424
|
928 |
msgid ""
|
931 |
"plugins as possible. <br/> For more information on how to change these "
|
932 |
"strings, please consult the "
|
933 |
msgstr ""
|
934 |
+
"Vous ne serez plus en mesure de modifier les chaînes affichées dans la "
|
935 |
+
"fenêtre de discussion du code maintenant. <br/> Cela a été conçu pour "
|
936 |
+
"accueillir autant de plugins de localosation que possible. <br/> Pour plus "
|
937 |
+
"d'informations sur la façon de modifier ces chaîne, veuillez, svp consulter "
|
938 |
+
"le,"
|
939 |
|
940 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:428
|
941 |
msgid "First Section Text"
|
951 |
|
952 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:448
|
953 |
msgid "Reactivate Chat Section Text"
|
954 |
+
msgstr "Réactiver la partie texte de la discussion"
|
955 |
|
956 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:456
|
957 |
msgid "User chat welcome"
|
973 |
"update your plugin to allow for animations to function"
|
974 |
msgstr ""
|
975 |
"Vous utilisez une version périmée de WP Live Chat Support Basic. S'il vous "
|
976 |
+
"plait\n"
|
977 |
+
"Vous utilisez une ancienne version de WP Live Chat Support Basic. SVP "
|
978 |
+
"veuillez mettre à jour votre plugin pour pemettre aux animations de "
|
979 |
+
"fonctionner"
|
980 |
|
981 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:500
|
982 |
msgid "Choose an animation"
|
985 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:506
|
986 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:426
|
987 |
msgid "Slide Up"
|
988 |
+
msgstr "Glisser vers le haut"
|
989 |
|
990 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:510
|
991 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:430
|
992 |
msgid "Slide From The Side"
|
993 |
+
msgstr "coulisser depuis le côté"
|
994 |
|
995 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:514
|
996 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
|
997 |
msgid "Fade In"
|
998 |
+
msgstr "fondu d'entrée"
|
999 |
|
1000 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
1001 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:438
|
1004 |
|
1005 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:548
|
1006 |
msgid "Current Users that are Chat Agents"
|
1007 |
+
msgstr "Visiteurs actuels qui sont des Opérateurs"
|
1008 |
|
1009 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:562
|
1010 |
msgid ""
|
1011 |
"To add or remove a user as a chat agent, go into the users profile and "
|
1012 |
"select the checkbox Chat Agent and click save."
|
1013 |
msgstr ""
|
1014 |
+
"Pour ajouter ou supprimer un utilisateur comme un Opérateur, aller dans le "
|
1015 |
+
"profil de l'utilisateur et cochez la case Opérateur et cliquez sur "
|
1016 |
+
"enregistrer."
|
1017 |
|
1018 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:563
|
1019 |
msgid "If there are no chat agents online, the chat will show as offline"
|
1020 |
+
msgstr "S'il n'y a pas d'opérateur en ligne, le Tchat sera affiché hors ligne"
|
|
|
1021 |
|
1022 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:567
|
1023 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:450
|
1024 |
msgid "Blocked Visitors - Based on IP Address"
|
1025 |
+
msgstr "Visiteurs bloqués - Celon leur adresse IP"
|
1026 |
|
1027 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
1028 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
1036 |
"Blocking a user's IP Address here will hide the chat window from them, "
|
1037 |
"preventing them from chatting with you. Each IP Address must be on a new line"
|
1038 |
msgstr ""
|
1039 |
+
"Bloquer une adresse IP d'un visiteur masquera la fenêtre de discussion "
|
1040 |
+
"lorsqu'il se connectera à votre site. Chaque adresse IP doit être sur une "
|
1041 |
+
"nouvelle ligne."
|
1042 |
|
1043 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
1044 |
msgid ""
|
1045 |
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
1046 |
+
msgstr ""
|
1047 |
+
"ne sont disponibles que pour WP Live Chat Support Chat Experience Ratings "
|
1048 |
+
"add-on"
|
1049 |
|
1050 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:590
|
1051 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
|
1059 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
1060 |
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
1061 |
msgstr ""
|
1062 |
+
"Vous utilisez une ancienne version de WP Live Chat Support Basic. S'il vous "
|
1063 |
"plait"
|
1064 |
|
1065 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
1066 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:838
|
1067 |
msgid "update to at least version"
|
1068 |
+
msgstr "mettez à jour la dernière la version"
|
1069 |
|
1070 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
1071 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:838
|
1072 |
msgid "to ensure all functionality is in working order"
|
1073 |
+
msgstr "pour assurer que l'ensemble des fonctionnalités fonctionnent"
|
1074 |
|
1075 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
|
1076 |
msgid ""
|
1087 |
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
1088 |
"href='./plugins.php'>here</a>."
|
1089 |
msgstr ""
|
1090 |
+
"Vous pouvez mettre à jour votre plugin <a href='./update-core.php'>ici</a> "
|
1091 |
+
"ou <a href='./plugins.php'>ici</a>."
|
1092 |
|
1093 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
1094 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:841
|
1133 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:534
|
1134 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:758
|
1135 |
msgid "Start live chat"
|
1136 |
+
msgstr "Démarrer une discussion en direct"
|
1137 |
|
1138 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:535
|
1139 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:760
|
1154 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
|
1155 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:525
|
1156 |
msgid "Reactivating your previous chat..."
|
1157 |
+
msgstr "Réactivation de votre conversation précédente ..."
|
1158 |
|
1159 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:538
|
1160 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:765
|
1161 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
|
1162 |
msgid "Chat offline. Leave a message"
|
1163 |
+
msgstr "Discussion hors-ligne. Laissez un message"
|
1164 |
|
1165 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:539
|
1166 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:767
|
1167 |
msgid "Hello. Please input your details so that I may help you."
|
1168 |
msgstr ""
|
1169 |
+
"Bonjour. Merci de saisir vos coordonnées afin que je puisse vous aider."
|
1170 |
|
1171 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:540
|
1172 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:769
|
1175 |
"We are currently offline. Please leave a message and we'll get back to you "
|
1176 |
"shortly."
|
1177 |
msgstr ""
|
1178 |
+
"Nous sommes actuellement déconnecté. Veuillez laisser un message et nous "
|
1179 |
+
"reviendrons vers vous prochainement."
|
1180 |
|
1181 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:541
|
1182 |
msgid "Sending message..."
|
1183 |
+
msgstr "Envoi du message ..."
|
1184 |
|
1185 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:542
|
1186 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:771
|
1187 |
msgid "Thank you for your message. We will be in contact soon."
|
1188 |
+
msgstr "Merci pour votre message. Nous vous contacterons prochainement"
|
1189 |
|
1190 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
|
1191 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:773
|
1201 |
|
1202 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:583
|
1203 |
msgid "Rating Unavailable"
|
1204 |
+
msgstr "Note non disponible"
|
1205 |
|
1206 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:587
|
1207 |
msgid "You are currently accepting chats"
|
1208 |
+
msgstr "Vous acceptez actuellement des discussions"
|
1209 |
|
1210 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:588
|
1211 |
msgid "You are not accepting chats"
|
1212 |
+
msgstr "Vous n'acceptez pas de discussion"
|
1213 |
|
1214 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:777
|
1215 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:954
|
1221 |
|
1222 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:798
|
1223 |
msgid "Minimize Chat Window"
|
1224 |
+
msgstr "Réduire la fenêtre de discussion"
|
1225 |
|
1226 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:799
|
1227 |
msgid "Close Chat Window"
|
1228 |
+
msgstr "Fermer la fenêtre de discussion"
|
1229 |
|
1230 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:887
|
1231 |
msgid "Send message"
|
1232 |
+
msgstr "Envoyer le message"
|
1233 |
|
1234 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:913
|
1235 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:534
|
1253 |
"Please note: This window must be open in order to receive new chat "
|
1254 |
"notifications."
|
1255 |
msgstr ""
|
1256 |
+
"Veuillez note SVP : Cette fenêtre doit être ouverte pour recevoir de "
|
1257 |
+
"nouvelles notifications de discussion."
|
1258 |
|
1259 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1121
|
1260 |
msgid ""
|
1262 |
"chat to visitors"
|
1263 |
msgstr ""
|
1264 |
"Vous n'êtes pas un Opérateur. Veuillez svp, vous enregistrer comme Opérateur "
|
1265 |
+
"avant d'essayer de discuter avec les visiteurs"
|
1266 |
|
1267 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1221
|
1268 |
msgid "Unknown"
|
1276 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1242
|
1277 |
msgid "Attempting to open the chat window... Please be patient."
|
1278 |
msgstr ""
|
1279 |
+
"En attente d'ouverture de la fenêtre de discussion...Merci de patienter"
|
|
|
1280 |
|
1281 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1337
|
1282 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1632
|
1283 |
msgid "This chat has already been answered. Please close the chat window"
|
1284 |
msgstr ""
|
1285 |
+
"Cette discussion a déjà été répondu. Merci de fermer cette fenêtre de "
|
1286 |
"discussion"
|
1287 |
|
1288 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1405
|
1298 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1415
|
1299 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1156
|
1300 |
msgid "User has maximized the chat window"
|
1301 |
+
msgstr "Le visiteur a agrandi la fenêtre de discussion"
|
1302 |
|
1303 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1420
|
1304 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1161
|
1305 |
msgid "User has closed and ended the chat"
|
1306 |
+
msgstr "L'utilisateur a fermé et fini la discussion"
|
1307 |
|
1308 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1964
|
1309 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:274
|
1310 |
msgid "Live Chat"
|
1311 |
+
msgstr "Discussion en temps réel"
|
1312 |
|
1313 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1965
|
1314 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:275
|
1329 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1969
|
1330 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:277
|
1331 |
msgid "Missed Chats"
|
1332 |
+
msgstr "Discussions manqués"
|
1333 |
|
1334 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1971
|
1335 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1336 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:278
|
1337 |
msgid "Feedback"
|
1338 |
+
msgstr "Avis"
|
1339 |
|
1340 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1975
|
1341 |
msgid "Error Log"
|
1343 |
|
1344 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1978
|
1345 |
msgid "Statistics"
|
1346 |
+
msgstr "Statistiques"
|
1347 |
|
1348 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1981
|
1349 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:279
|
1350 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1639
|
1351 |
msgid "Support"
|
1352 |
+
msgstr "Support"
|
1353 |
|
1354 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1988
|
1355 |
msgid "Quick Response"
|
1366 |
|
1367 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1991
|
1368 |
msgid "Edit Quick Response"
|
1369 |
+
msgstr "Éditer réponse rapide"
|
1370 |
|
1371 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1993
|
1372 |
msgid "All Quick Responses"
|
1409 |
|
1410 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:566
|
1411 |
msgid "complete"
|
1412 |
+
msgstr "terminer"
|
1413 |
|
1414 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:569
|
1415 |
msgid "pending"
|
1417 |
|
1418 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:572
|
1419 |
msgid "active"
|
1420 |
+
msgstr "actif"
|
1421 |
|
1422 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:575
|
1423 |
msgid "deleted"
|
1425 |
|
1426 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:578
|
1427 |
msgid "browsing"
|
1428 |
+
msgstr "navigation"
|
1429 |
|
1430 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:581
|
1431 |
msgid "requesting chat"
|
1441 |
|
1442 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:668
|
1443 |
msgid "Get Pro Add-on to accept more chats"
|
1444 |
+
msgstr "Prenez la version PRO pour pouvoir accepter plus de discussions"
|
1445 |
|
1446 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:912
|
1447 |
msgid "You have not missed any chat requests."
|
1448 |
+
msgstr "Vous n'avez pas manqué de demande de discussion"
|
1449 |
|
1450 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1451 |
msgid "WP Live Chat Support Feedback"
|
1518 |
|
1519 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
1520 |
msgid "Include chat window on the following pages"
|
1521 |
+
msgstr "Inclure la fenêtre de discussion pour les pages suivantes :"
|
1522 |
|
1523 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
1524 |
msgid "Exclude chat window on the following pages"
|
1525 |
+
msgstr "Exclure la fenêtre de discussion pour les pages suivantes :"
|
1526 |
|
1527 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
1528 |
msgid "Alert me via email as soon as someone wants to chat"
|
1544 |
|
1545 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1546 |
msgid "Choose a colour scheme. Only available in the"
|
1547 |
+
msgstr ""
|
1548 |
+
"Choisissez un jeu de couleurs. Cette option est uniquement possible pour la"
|
1549 |
|
1550 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1551 |
msgid "Pro add-on"
|
1592 |
|
1593 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1594 |
msgid "Reactivate chat section text"
|
1595 |
+
msgstr "Réactiver la partie texte de la discussion"
|
1596 |
|
1597 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:418
|
1598 |
msgid "Choose an animation. Only available in the"
|
1599 |
+
msgstr "Choisissez une animation. Cette option est uniquement possible pour"
|
1600 |
|
1601 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:419
|
1602 |
msgid "Pro"
|
1603 |
+
msgstr "PRO"
|
1604 |
|
1605 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:446
|
1606 |
msgid "Multiple Agents"
|
1620 |
|
1621 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1622 |
msgid "Version 4"
|
1623 |
+
msgstr "Version 4"
|
1624 |
|
1625 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1626 |
msgid "Provide Instant Live Chat Support!"
|
1627 |
+
msgstr "Fournir Live Chat Support"
|
1628 |
|
1629 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1630 |
msgid "How did you find us?"
|
1667 |
|
1668 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:464
|
1669 |
msgid "Start Live Chat"
|
1670 |
+
msgstr "Démarrer une discussion en direct"
|
1671 |
|
1672 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:838
|
1673 |
msgid ""
|
1674 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1675 |
"strong>. Please"
|
1676 |
msgstr ""
|
1677 |
+
"Vous utilisez actuellement une version obsolète de <strong>WP Live Chat "
|
1678 |
+
"Support Pro</strong>. SVP"
|
1679 |
|
1680 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:839
|
1681 |
msgid ""
|
1694 |
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1695 |
"version/' target='_BLANK'>here</a>."
|
1696 |
msgstr ""
|
1697 |
+
"Vous pouvez mettre à jour votre plugin <a href='./update-core.php'>ici</a>, "
|
1698 |
+
"<a href='./plugins.php'>ici</a> ou <a href='http://wp-livechat.com/get-"
|
1699 |
"updated-version/' target='_BLANK'>ici</a>."
|
1700 |
|
1701 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:853
|
1703 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1704 |
"strong>."
|
1705 |
msgstr ""
|
1706 |
+
"Vous utilisez actuellement une version obsolète de <strong>WP Live Chat "
|
1707 |
"Support Pro</strong>."
|
1708 |
|
1709 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:855
|
1710 |
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1711 |
msgstr ""
|
1712 |
+
"S'il vous plaît veuillez mettre à jour la dernière version de WP Live Chat "
|
1713 |
+
"Support Pro"
|
1714 |
|
1715 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:856
|
1716 |
msgid "Version 4.4.5"
|
1717 |
+
msgstr "Version 4.4.5"
|
1718 |
|
1719 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:857
|
1720 |
msgid "to take advantage of chat window transitions and colour schemes."
|
1721 |
msgstr ""
|
1722 |
+
"pour profiter des avantages de transition de la fenêtre de discussion et des "
|
1723 |
+
"arrangements de couleur."
|
1724 |
|
1725 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:884
|
1726 |
msgid "Experiencing problems with the plugin?"
|
1736 |
|
1737 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:887
|
1738 |
msgid "Support forum."
|
1739 |
+
msgstr "Forum d'entraide."
|
1740 |
|
1741 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:915
|
1742 |
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1754 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:919
|
1755 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1756 |
msgstr ""
|
1757 |
+
" Achetez la version Pro pour seulement $19.95 une fois pour toute. Mises à "
|
1758 |
+
"jour ILLIMITÉES"
|
1759 |
|
1760 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:921
|
1761 |
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1762 |
msgstr ""
|
1763 |
+
" Achetez la version Pro pour seulement $19.95 une fois pour toute. Mises à "
|
1764 |
"jour illimitées."
|
1765 |
|
1766 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:973
|
1785 |
|
1786 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1032
|
1787 |
msgid "type here..."
|
1788 |
+
msgstr "Ecrire ici..."
|
1789 |
|
1790 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1413
|
1791 |
msgid "WP Live Chat History"
|
1794 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1420
|
1795 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1796 |
msgid "This option is only available in the "
|
1797 |
+
msgstr "Cette option est uniquement possible pour"
|
1798 |
|
1799 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1420
|
1800 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1440
|
1801 |
msgid "Get it now for only $19.95 once off!"
|
1802 |
+
msgstr "Achetez maintenant pour seulement $19.95, une fois pour toute!"
|
1803 |
|
1804 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1425
|
1805 |
msgid "WP Live Chat Missed Chats"
|
1806 |
+
msgstr "Discussions manqués WP Live Chat "
|
1807 |
|
1808 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1432
|
1809 |
msgid "WP Live Chat Offline Messages"
|
1810 |
+
msgstr "WP Live Chat - Message hors-ligne "
|
1811 |
|
1812 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1437
|
1813 |
msgid ""
|
1814 |
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1815 |
"recording any offline messages."
|
1816 |
msgstr ""
|
1817 |
+
"Veuillez mettre à jour la dernière version de WP Live Chat Support Pro pour "
|
1818 |
+
"commencer à enregistrer les messages hors ligne."
|
1819 |
|
1820 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1530
|
1821 |
msgid "Thank You for your feedback!"
|
1840 |
msgstr ""
|
1841 |
"WPLC : set_time_limit() n'est pas activée sur votre serveur. Vous pouvez "
|
1842 |
"rencontrer des problèmes lors de l'utilisation WP Live Chat Support. S'il "
|
1843 |
+
"vous plaît, contactez votre hébergeur pour activer cette fonction."
|
|
|
1844 |
|
1845 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1589
|
1846 |
msgid ""
|
1850 |
msgstr ""
|
1851 |
"WPLC: Safe Mode est activé sur ce serveur. Vous pouvez rencontrer des "
|
1852 |
"problèmes lors de l'utilisation WP Live Chat Support. S' il vous plaît "
|
1853 |
+
"contactez votre hébergeur pour désactiver cette fonction."
|
1854 |
|
1855 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1601
|
1856 |
msgid "WP Live Chat Support"
|
1857 |
+
msgstr "WP Live Chat Support"
|
1858 |
|
1859 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1604
|
1860 |
msgid "Documentation"
|
1861 |
+
msgstr "Documentation."
|
1862 |
|
1863 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1606
|
1864 |
msgid ""
|
1868 |
|
1869 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1607
|
1870 |
msgid "Documentation:"
|
1871 |
+
msgstr "Documentation."
|
1872 |
|
1873 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1609
|
1874 |
msgid "Installing the WP Live Chat Support Pro add-on"
|
1875 |
+
msgstr "Installation de WP Live Chat Support Pro add-on"
|
1876 |
|
1877 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1610
|
1878 |
msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
|
1879 |
+
msgstr "Démarrer le plugin WP Live Chat Support pour la première fois (Pro)"
|
1880 |
|
1881 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1611
|
1882 |
msgid "Upgrading your licence (Pro)"
|
1888 |
|
1889 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1614
|
1890 |
msgid "FAQ's:"
|
1891 |
+
msgstr "FAQ"
|
1892 |
|
1893 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1616
|
1894 |
msgid "How do I check for JavaScript errors on my site?"
|
1896 |
|
1897 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1617
|
1898 |
msgid "What are Quick Responses?"
|
1899 |
+
msgstr "C'est quoi les réponses rapides"
|
1900 |
|
1901 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1618
|
1902 |
msgid "Can I use this plugin on my multi-site?"
|
1903 |
+
msgstr "Puis-je utiliser ce plugin sur mon Multisite?"
|
1904 |
|
1905 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1619
|
1906 |
msgid "How do I disable APC Object Cache?"
|
1913 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1621
|
1914 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1915 |
msgstr ""
|
1916 |
+
"Dois-je être connecté sur le tableau de bord pour discuter avec les "
|
1917 |
"visiteurs?"
|
1918 |
|
1919 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1625
|
1926 |
"from time to time, run into conflicts with the thousands of themes and other "
|
1927 |
"plugins on the market."
|
1928 |
msgstr ""
|
1929 |
+
"WP Live Chat Support Pro dispose d'une variéte de fonctionnalités qui "
|
1930 |
"peuvent, de temps à autre, entrer en conflits avec les milliers de thèmes et "
|
1931 |
+
"autres plugins sur le marché."
|
1932 |
|
1933 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1628
|
1934 |
msgid "Common issues:"
|
1935 |
+
msgstr "Problèmes communs:"
|
1936 |
|
1937 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1630
|
1938 |
msgid "The chat box doesnt show up"
|
1939 |
+
msgstr "La fenêtre de discussion n'apparaît pas"
|
1940 |
|
1941 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1631
|
1942 |
msgid "The chat window disappears when I logout or go offline"
|
1943 |
msgstr ""
|
1944 |
+
"La fenêtre de discussion disparaît lorsque je me déconnecte ou suis hors-"
|
1945 |
+
"ligne"
|
1946 |
|
1947 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1633
|
1948 |
msgid "Messages only show when I refresh the chat window"
|
1949 |
+
msgstr ""
|
1950 |
+
"Les messages s'affichent que lorsque je rafraîchis la fenêtre de discussion"
|
1951 |
|
1952 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1634
|
1953 |
msgid "I'm not getting any notifications of a new chat"
|
1954 |
+
msgstr "Je n'ai pas de notification d'une nouvelle discussion"
|
1955 |
|
1956 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1635
|
1957 |
msgid "The chat window never goes offline"
|
1958 |
+
msgstr "La fenêtre de discussion n'est jamais hors-ligne"
|
1959 |
|
1960 |
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1641
|
1961 |
msgid "Still need help? Use one of these links below."
|
languages/wplivechat-hr.mo
ADDED
Binary file
|
languages/wplivechat-hr.po
ADDED
@@ -0,0 +1,2189 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2015-10-14 14:17+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 15:54+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: en_US\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.8.4\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress38/wp-content/plugins/wp-live-"
|
17 |
+
"chat-support\n"
|
18 |
+
"X-Poedit-SearchPath-1: C:/wamp/www/wordpress38/wp-content/plugins/wp-live-"
|
19 |
+
"chat-support-pro\n"
|
20 |
+
|
21 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:248
|
22 |
+
msgid "Guest"
|
23 |
+
msgstr "Gost"
|
24 |
+
|
25 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:320
|
26 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:214
|
27 |
+
msgid "Admin has closed and ended the chat"
|
28 |
+
msgstr "Administrator je zatvorio i završio razgovor"
|
29 |
+
|
30 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:355
|
31 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:238
|
32 |
+
msgid "There is No Answer. Please Try Again Later"
|
33 |
+
msgstr "Nema odgovora. Molimo pokušajte kasnije"
|
34 |
+
|
35 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:50
|
36 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:169
|
37 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:321
|
38 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1671
|
39 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:288
|
40 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:446
|
41 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1904
|
42 |
+
msgid "IP Address not recorded"
|
43 |
+
msgstr "IP adresa nije zabilježena"
|
44 |
+
|
45 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:52
|
46 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:171
|
47 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:323
|
48 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1673
|
49 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:290
|
50 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:448
|
51 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1906
|
52 |
+
msgid "Whois for"
|
53 |
+
msgstr "Tko je za"
|
54 |
+
|
55 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:57
|
56 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:329
|
57 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:295
|
58 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
|
59 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1036
|
60 |
+
msgid "Accept Chat"
|
61 |
+
msgstr "Prihvati razgovor"
|
62 |
+
|
63 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
64 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
65 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
66 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
67 |
+
msgid "Incoming Chat"
|
68 |
+
msgstr "Dolazni razgovor"
|
69 |
+
|
70 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
71 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
72 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
73 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
74 |
+
msgid "You have an incoming chat."
|
75 |
+
msgstr "Imate dolazni razgovor."
|
76 |
+
|
77 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
|
78 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
|
79 |
+
msgid "Open Chat"
|
80 |
+
msgstr "Otvori razgovor"
|
81 |
+
|
82 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
83 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
84 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
85 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
86 |
+
msgid "Chat Active"
|
87 |
+
msgstr "Razgovor je aktivan"
|
88 |
+
|
89 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
90 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
91 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
92 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
93 |
+
msgid "This chat is active"
|
94 |
+
msgstr "Ovaj razgovor je aktivan"
|
95 |
+
|
96 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
|
97 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:156
|
98 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:467
|
99 |
+
msgid "Initiate Chat"
|
100 |
+
msgstr "Pokreni razgovor"
|
101 |
+
|
102 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:72
|
103 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:158
|
104 |
+
msgid "You must be a chat agent to initiate chats"
|
105 |
+
msgstr "Morate biti razgovorni agent kako bi pokrenuli razgovore"
|
106 |
+
|
107 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
|
108 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:488
|
109 |
+
msgid "New"
|
110 |
+
msgstr "Novi"
|
111 |
+
|
112 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:97
|
113 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:490
|
114 |
+
msgid "Returning"
|
115 |
+
msgstr "Korisnik koji se vratio"
|
116 |
+
|
117 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
|
118 |
+
msgid "Visitors on site"
|
119 |
+
msgstr "Posjetitelji na stranici"
|
120 |
+
|
121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:203
|
122 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:373
|
123 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1711
|
124 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:326
|
125 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1929
|
126 |
+
msgid "Site Info"
|
127 |
+
msgstr "Informacije o stranici"
|
128 |
+
|
129 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
|
130 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:375
|
131 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1713
|
132 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:328
|
133 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1931
|
134 |
+
msgid "Chat initiated on:"
|
135 |
+
msgstr "Razgovor pokrenut:"
|
136 |
+
|
137 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:209
|
138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:379
|
139 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1717
|
140 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:332
|
141 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1935
|
142 |
+
msgid "Advanced Info"
|
143 |
+
msgstr "Napredne informacije"
|
144 |
+
|
145 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:211
|
146 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:381
|
147 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1719
|
148 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:334
|
149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1937
|
150 |
+
msgid "Browser:"
|
151 |
+
msgstr "Preglednik:"
|
152 |
+
|
153 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:212
|
154 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
|
155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1720
|
156 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:335
|
157 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1938
|
158 |
+
msgid "IP Address:"
|
159 |
+
msgstr "IP adresa:"
|
160 |
+
|
161 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:255
|
162 |
+
msgid "No visitors on-line at the moment"
|
163 |
+
msgstr "Trenutno nema posjetitelja na vezi"
|
164 |
+
|
165 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:298
|
166 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:271
|
167 |
+
msgid "No chat sessions available at the moment"
|
168 |
+
msgstr "Trenutno nema dostupnih sesija razgovora"
|
169 |
+
|
170 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:300
|
171 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:273
|
172 |
+
msgid "Active Chats"
|
173 |
+
msgstr "Aktivni razgovori"
|
174 |
+
|
175 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
|
176 |
+
msgid "You must be a chat agent to answer chats"
|
177 |
+
msgstr "Morate biti razgovorni agent kako bi odgovarali na razgovore"
|
178 |
+
|
179 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:341
|
180 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:301
|
181 |
+
msgid "Open Chat Window"
|
182 |
+
msgstr "Otvori razgovorni prozor"
|
183 |
+
|
184 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
185 |
+
msgid "Chat has been answered by another agent"
|
186 |
+
msgstr "Na razgovor je bio odgovorio drugi agent"
|
187 |
+
|
188 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:346
|
189 |
+
msgid "Chat answered by another agent"
|
190 |
+
msgstr "Na razgovor je odgovorio drugi agent"
|
191 |
+
|
192 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:404
|
193 |
+
msgid "WP Live Chat Support - Offline Message from "
|
194 |
+
msgstr "WP podrška razgovorom uživo - offline poruka od"
|
195 |
+
|
196 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
197 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:851
|
198 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:734
|
199 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:945
|
200 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:983
|
201 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1194
|
202 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1223
|
203 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1254
|
204 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:184
|
205 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:822
|
206 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1005
|
207 |
+
msgid "Name"
|
208 |
+
msgstr "Ime"
|
209 |
+
|
210 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
211 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:852
|
212 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:735
|
213 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:946
|
214 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:984
|
215 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1195
|
216 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1224
|
217 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1255
|
218 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:823
|
219 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1006
|
220 |
+
msgid "Email"
|
221 |
+
msgstr "E-pošta"
|
222 |
+
|
223 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
224 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:853
|
225 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1316
|
226 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:985
|
227 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1225
|
228 |
+
msgid "Message"
|
229 |
+
msgstr "Poruka"
|
230 |
+
|
231 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
232 |
+
msgid "Via WP Live Chat Support"
|
233 |
+
msgstr "Putem WP podrške razgovorom uživo "
|
234 |
+
|
235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:457
|
236 |
+
msgid "Alert: Someone wants to chat with you on "
|
237 |
+
msgstr "Pozor: netko želi razgovarati s vama na"
|
238 |
+
|
239 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
240 |
+
msgid "Someone wants to chat with you on your website"
|
241 |
+
msgstr "Netko želi razgovarati s vama na vašoj internetskoj stranici"
|
242 |
+
|
243 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
244 |
+
msgid "Log in"
|
245 |
+
msgstr "Prijavite se"
|
246 |
+
|
247 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:631
|
248 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:647
|
249 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:662
|
250 |
+
msgid "Chat Agent"
|
251 |
+
msgstr "Razgovorni agent"
|
252 |
+
|
253 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
|
254 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:652
|
255 |
+
msgid "Make this user a chat agent"
|
256 |
+
msgstr "Postavi ovog korisnika za razgovornog agenta"
|
257 |
+
|
258 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:666
|
259 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
260 |
+
msgstr ""
|
261 |
+
"Tvoja korisnička uloga ti ne dozvoljava da sebe postaviš kao razgovornog "
|
262 |
+
"agenta"
|
263 |
+
|
264 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:667
|
265 |
+
msgid "Please contact the administrator of this website to change this."
|
266 |
+
msgstr ""
|
267 |
+
"Molimo kontaktirajte administratora ove internetske stranice kako bi "
|
268 |
+
"promijenili ovo."
|
269 |
+
|
270 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:752
|
271 |
+
msgid "Chat Agent Online"
|
272 |
+
msgstr "Razgovorni agent online"
|
273 |
+
|
274 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:754
|
275 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:759
|
276 |
+
msgid "Chat Agents Online"
|
277 |
+
msgstr "Razgovorni agenti online"
|
278 |
+
|
279 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:850
|
280 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:733
|
281 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1253
|
282 |
+
msgid "Date"
|
283 |
+
msgstr "Datum"
|
284 |
+
|
285 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:867
|
286 |
+
msgid "You have not received any offline messages."
|
287 |
+
msgstr "Niste primili nijednu offline poruku"
|
288 |
+
|
289 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1180
|
290 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:788
|
291 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:523
|
292 |
+
msgid "Administrator"
|
293 |
+
msgstr "Administrator"
|
294 |
+
|
295 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1181
|
296 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:794
|
297 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:529
|
298 |
+
msgid "Editor"
|
299 |
+
msgstr "Urednik"
|
300 |
+
|
301 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1182
|
302 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:800
|
303 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:535
|
304 |
+
msgid "Author"
|
305 |
+
msgstr "Autor"
|
306 |
+
|
307 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1183
|
308 |
+
msgid "Contributor"
|
309 |
+
msgstr "Suradnik"
|
310 |
+
|
311 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1184
|
312 |
+
msgid "Subscriber"
|
313 |
+
msgstr "Pretplatnik"
|
314 |
+
|
315 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1314
|
316 |
+
msgid "Chat ID"
|
317 |
+
msgstr "ID razgovora"
|
318 |
+
|
319 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1315
|
320 |
+
msgid "From"
|
321 |
+
msgstr "Od"
|
322 |
+
|
323 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1317
|
324 |
+
msgid "Timestamp"
|
325 |
+
msgstr "Vremenska oznaka"
|
326 |
+
|
327 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1318
|
328 |
+
msgid "Origin"
|
329 |
+
msgstr "Podrijetlo"
|
330 |
+
|
331 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1323
|
332 |
+
msgid "user"
|
333 |
+
msgstr "korisnik"
|
334 |
+
|
335 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1325
|
336 |
+
msgid "agent"
|
337 |
+
msgstr "agent"
|
338 |
+
|
339 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:48
|
340 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:11
|
341 |
+
msgid "WP Live Chat Support Settings"
|
342 |
+
msgstr "Postavke WP podrške razgovorom uživo"
|
343 |
+
|
344 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:71
|
345 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:604
|
346 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1699
|
347 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1714
|
348 |
+
msgid "Dear Pro User"
|
349 |
+
msgstr "Dragi Pro korisniče"
|
350 |
+
|
351 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:72
|
352 |
+
msgid ""
|
353 |
+
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
354 |
+
"to do this will result in you no longer receiving updates for this plugin."
|
355 |
+
msgstr ""
|
356 |
+
"Molimo vas unesite ispravan API ključ na stranici 'razgovor uživo' -> "
|
357 |
+
"'Postavke'. Ako to ne uspijete napraviti prestati će te dobivati nadopune za "
|
358 |
+
"ovaj dodatak."
|
359 |
+
|
360 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
361 |
+
msgid "You can obtain a copy of your API key "
|
362 |
+
msgstr "Možete dobiti kopiju vašeg API ključa "
|
363 |
+
|
364 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
365 |
+
msgid "here"
|
366 |
+
msgstr "ovdje"
|
367 |
+
|
368 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
369 |
+
msgid ""
|
370 |
+
"An account has been created for you while purchasing the plugin. If you have "
|
371 |
+
"lost your password, please reset it "
|
372 |
+
msgstr ""
|
373 |
+
"Dok ste kupovali dodatak za vas je stvoren korisnički račun. Ako ste "
|
374 |
+
"izgubili lozinku molimo vas resetirajte ju "
|
375 |
+
|
376 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:74
|
377 |
+
msgid ""
|
378 |
+
"If you feel you are getting this message in error, please try refreshing the "
|
379 |
+
"page."
|
380 |
+
msgstr ""
|
381 |
+
"Ako mislite da dobivate ovu poruku greškom, molimo vas osvježite stranicu"
|
382 |
+
|
383 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
|
384 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
385 |
+
msgid "General Settings"
|
386 |
+
msgstr "Opće postavke"
|
387 |
+
|
388 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
|
389 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
390 |
+
msgid "Chat Box"
|
391 |
+
msgstr "Okvir razgovora"
|
392 |
+
|
393 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
394 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
|
395 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2708
|
396 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
|
397 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:288
|
398 |
+
msgid "Offline Messages"
|
399 |
+
msgstr "Offline poruke"
|
400 |
+
|
401 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:86
|
402 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:485
|
403 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
404 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
|
405 |
+
msgid "Styling"
|
406 |
+
msgstr "Stiliziranje"
|
407 |
+
|
408 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
409 |
+
msgid "Chat Agents"
|
410 |
+
msgstr "Razgovorni agenti"
|
411 |
+
|
412 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
413 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
414 |
+
msgid "Blocked Visitors"
|
415 |
+
msgstr "Blokirani posjetitelji"
|
416 |
+
|
417 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
|
418 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:830
|
419 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
420 |
+
msgid "Chat Experience Ratings"
|
421 |
+
msgstr "Ocjena iskustva razgovorom"
|
422 |
+
|
423 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
424 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
|
425 |
+
msgid "Encryption"
|
426 |
+
msgstr "Šifriranje razgovora"
|
427 |
+
|
428 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:93
|
429 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
|
430 |
+
msgid "Main Settings"
|
431 |
+
msgstr "Glavne postavke"
|
432 |
+
|
433 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
|
434 |
+
msgid "Find out more."
|
435 |
+
msgstr "Pronađi više."
|
436 |
+
|
437 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
|
438 |
+
msgid "Cloud Server"
|
439 |
+
msgstr "Poslužitelj u oblaku"
|
440 |
+
|
441 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
|
442 |
+
msgid "Use our server to host your chat server."
|
443 |
+
msgstr ""
|
444 |
+
"Koristite našeg poslužitelja kako bi bio domaćin vašem poslužitelju "
|
445 |
+
"razgovora."
|
446 |
+
|
447 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:107
|
448 |
+
msgid "API Key"
|
449 |
+
msgstr "API ključ"
|
450 |
+
|
451 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
452 |
+
msgid "This API key is "
|
453 |
+
msgstr "Ovaj API ključ je "
|
454 |
+
|
455 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:115
|
456 |
+
msgid "valid"
|
457 |
+
msgstr "ispravan"
|
458 |
+
|
459 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
460 |
+
msgid "invalid"
|
461 |
+
msgstr "neispravan"
|
462 |
+
|
463 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:122
|
464 |
+
msgid ""
|
465 |
+
"A valid API key means that you will be able to get the latest version of the "
|
466 |
+
"plugin as and when it is released, as well as get access to support should "
|
467 |
+
"you require it."
|
468 |
+
msgstr ""
|
469 |
+
"Ispravan API ključ vam omogućava da dobijete posljednju inačicu ovog dodatka "
|
470 |
+
"kada bude objavljen, kao i pristup podršci ukoliko ju budete trebali."
|
471 |
+
|
472 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
|
473 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:37
|
474 |
+
msgid "Chat enabled"
|
475 |
+
msgstr "Razgovor omogućen"
|
476 |
+
|
477 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:135
|
478 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
|
479 |
+
msgid "Yes"
|
480 |
+
msgstr "Da"
|
481 |
+
|
482 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:138
|
483 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:41
|
484 |
+
msgid "No"
|
485 |
+
msgstr "Ne"
|
486 |
+
|
487 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
488 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
489 |
+
msgid "Choose when I want to be online"
|
490 |
+
msgstr "Izaberi kada želim biti online"
|
491 |
+
|
492 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
493 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
494 |
+
msgid ""
|
495 |
+
"Checking this will allow you to change your status to Online or Offline on "
|
496 |
+
"the Live Chat page."
|
497 |
+
msgstr ""
|
498 |
+
"Ako potvrdite ovo omogućeno će vam biti mijenjati status na online ili "
|
499 |
+
"offline na stranici Razgovor uživo"
|
500 |
+
|
501 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
502 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:61
|
503 |
+
msgid "Hide Chat"
|
504 |
+
msgstr "Sakrij razgovor"
|
505 |
+
|
506 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
507 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:61
|
508 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
509 |
+
msgstr "Sakrije razgovor na 24 sata kada korisnik stisne X"
|
510 |
+
|
511 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
512 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
513 |
+
msgid "Require Name And Email"
|
514 |
+
msgstr "Obavezno ime i e-pošta"
|
515 |
+
|
516 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
517 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
518 |
+
msgid ""
|
519 |
+
"Users will have to enter their Name and Email Address when starting a chat"
|
520 |
+
msgstr ""
|
521 |
+
"Korisnici će morati unijeti svoje ime i e-poštu kako bi započeli razgovor"
|
522 |
+
|
523 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
524 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
525 |
+
msgid "Input Field Replacement Text"
|
526 |
+
msgstr "Tekst koji će zamijeniti polja za unos"
|
527 |
+
|
528 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
529 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
530 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
531 |
+
msgstr "Ovo je tekst koji će se prikazivati umjesto polja imena i e-pošte"
|
532 |
+
|
533 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
534 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
535 |
+
msgid "Use Logged In User Details"
|
536 |
+
msgstr "Koristite korisničke detalje iste kao i za prijavu"
|
537 |
+
|
538 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
539 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
540 |
+
msgid ""
|
541 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
542 |
+
"in."
|
543 |
+
msgstr ""
|
544 |
+
"Ako je korisnik prijavljen koristit će se njegovo zadano ime i e-pošta."
|
545 |
+
|
546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
547 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
548 |
+
msgid "Enable On Mobile Devices"
|
549 |
+
msgstr "Omogući na mobilnim uređajima."
|
550 |
+
|
551 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
552 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
553 |
+
msgid ""
|
554 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
555 |
+
"devices. (Smartphones and Tablets)"
|
556 |
+
msgstr ""
|
557 |
+
"Ukoliko ovo onemogućite, razgovorni okvir se neće prikazivati na mobilnim "
|
558 |
+
"uređajima. (Pametnim telefonima i tabletima)"
|
559 |
+
|
560 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
561 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
562 |
+
msgid "Record a visitor's IP Address"
|
563 |
+
msgstr "Zabilježi IP adresu posjetitelja"
|
564 |
+
|
565 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
566 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
567 |
+
msgid "Disable this to enable anonymity for your visitors"
|
568 |
+
msgstr "Onemogućite ovo kako bi omogućili anonimnost vašim posjetiteljima"
|
569 |
+
|
570 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
571 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
572 |
+
msgid "Play a sound when a new message is received"
|
573 |
+
msgstr "Proizvedi zvuk kada je nova poruka primljena"
|
574 |
+
|
575 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
576 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
577 |
+
msgid ""
|
578 |
+
"Disable this to mute the sound that is played when a new chat message is "
|
579 |
+
"received"
|
580 |
+
msgstr ""
|
581 |
+
"Onemogućite ovo kako bi isključili zvuk koji se proizvede kada je primljena "
|
582 |
+
"nova poruka"
|
583 |
+
|
584 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
585 |
+
msgid "Include chat window on the following pages:"
|
586 |
+
msgstr "Uključite prozor razgovora na sljedećim stranicama"
|
587 |
+
|
588 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
589 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
590 |
+
msgid ""
|
591 |
+
"Show the chat window on the following pages. Leave blank to show on all. "
|
592 |
+
"(Use comma-separated Page ID's)"
|
593 |
+
msgstr ""
|
594 |
+
"Prikaži prozor razgovora na sljedećim stranicama. Ostavite prazno kako bi se "
|
595 |
+
"pokazivao na svim stranicama. (ID stranica odvojite zarezom)"
|
596 |
+
|
597 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
598 |
+
msgid "Exclude chat window on the following pages:"
|
599 |
+
msgstr "Isključite prozor razgovora na sljedećim stranicama:"
|
600 |
+
|
601 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
602 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
603 |
+
msgid ""
|
604 |
+
"Do not show the chat window on the following pages. Leave blank to show on "
|
605 |
+
"all. (Use comma-separated Page ID's)"
|
606 |
+
msgstr ""
|
607 |
+
"Ne prikazuj prozor razgovora na sljedećim stranicama. Ostavite prazno kako "
|
608 |
+
"bi se pokazivao na svim stranicama. (ID stranica odvojite zarezom)"
|
609 |
+
|
610 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
611 |
+
msgid "Allow any user to make themselves a chat agent"
|
612 |
+
msgstr "Dopustite da bilo koji korisnik postane razgovorni agent"
|
613 |
+
|
614 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
615 |
+
msgid ""
|
616 |
+
"Checking this will allow any of your users to make themselves a chat agent "
|
617 |
+
"when editing their profile."
|
618 |
+
msgstr ""
|
619 |
+
"Označite ovo kako bi dopustili da bilo koji korisnik postane razgovorni "
|
620 |
+
"agent prilikom uređivanja svog profila."
|
621 |
+
|
622 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:255
|
623 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
|
624 |
+
msgid "Chat Window Settings"
|
625 |
+
msgstr "Postavke razgovornog prozora."
|
626 |
+
|
627 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:258
|
628 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:163
|
629 |
+
msgid "Chat box alignment"
|
630 |
+
msgstr "Poravnavanje razgovornog okvira"
|
631 |
+
|
632 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:263
|
633 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:166
|
634 |
+
msgid "Bottom left"
|
635 |
+
msgstr "Na dnu lijevo"
|
636 |
+
|
637 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:266
|
638 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:167
|
639 |
+
msgid "Bottom right"
|
640 |
+
msgstr "Na dnu desno"
|
641 |
+
|
642 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:269
|
643 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:168
|
644 |
+
msgid "Left"
|
645 |
+
msgstr "Lijevo"
|
646 |
+
|
647 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:272
|
648 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:169
|
649 |
+
msgid "Right"
|
650 |
+
msgstr "Desno"
|
651 |
+
|
652 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
653 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:175
|
654 |
+
msgid "Auto Pop-up"
|
655 |
+
msgstr "Automatski iskoči"
|
656 |
+
|
657 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
658 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:175
|
659 |
+
msgid ""
|
660 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
661 |
+
"email address)."
|
662 |
+
msgstr ""
|
663 |
+
"Automatski raširi razgovorni okvir (pita korisnika da unese svoje ime i e-"
|
664 |
+
"poštu)"
|
665 |
+
|
666 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:289
|
667 |
+
msgid "Name "
|
668 |
+
msgstr "Ime"
|
669 |
+
|
670 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:303
|
671 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
|
672 |
+
msgid "Picture"
|
673 |
+
msgstr "Slika"
|
674 |
+
|
675 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:311
|
676 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
|
677 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
678 |
+
msgid "Upload Image"
|
679 |
+
msgstr "Prijenos slike"
|
680 |
+
|
681 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:313
|
682 |
+
msgid "Remove Image"
|
683 |
+
msgstr "Ukloni sliku"
|
684 |
+
|
685 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:314
|
686 |
+
msgid "Recomended Size 40px x 40px"
|
687 |
+
msgstr "Preporučena veličina 40px puta 40 px"
|
688 |
+
|
689 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:320
|
690 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
|
691 |
+
msgid "Logo"
|
692 |
+
msgstr "Logo"
|
693 |
+
|
694 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:328
|
695 |
+
msgid "Upload Logo"
|
696 |
+
msgstr "Prijenos loga"
|
697 |
+
|
698 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:330
|
699 |
+
msgid "Remove Logo"
|
700 |
+
msgstr "Ukloni logo"
|
701 |
+
|
702 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:331
|
703 |
+
msgid "Recomended Size 250px x 40px"
|
704 |
+
msgstr "Preporučena veličina 250px puta 40px"
|
705 |
+
|
706 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
707 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
|
708 |
+
msgid "Chat delay (seconds)"
|
709 |
+
msgstr "Odgoda razgovora (sekunde)"
|
710 |
+
|
711 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
712 |
+
msgid "How long it takes for your chat window to pop up"
|
713 |
+
msgstr "Koliko dugo je potrebno kako bi vaš razgovorni prozor iskočio"
|
714 |
+
|
715 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
716 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:248
|
717 |
+
msgid "Chat notifications"
|
718 |
+
msgstr "Obavijesti razgovora"
|
719 |
+
|
720 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
721 |
+
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
722 |
+
msgstr ""
|
723 |
+
"Upozorite me putem e-pošte čim netko želi razgovarati (samo dok sam online)"
|
724 |
+
|
725 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
726 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
727 |
+
msgid "Display name and avatar in chat"
|
728 |
+
msgstr "Prikaži ime i avatara u razgovoru"
|
729 |
+
|
730 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
731 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
732 |
+
msgid "Display the agent and user name above each message in the chat window."
|
733 |
+
msgstr ""
|
734 |
+
"Prikaži ime agenta i ime korisnika iznad svake poruke u razgovornom prozoru"
|
735 |
+
|
736 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
737 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
738 |
+
msgid "Only show the chat window to users that are logged in"
|
739 |
+
msgstr "Prikazuj razgovorni prozor samo korisnicima koji su prijavljeni"
|
740 |
+
|
741 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
742 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
743 |
+
msgid ""
|
744 |
+
"By checking this, only users that are logged in will be able to chat with "
|
745 |
+
"you."
|
746 |
+
msgstr ""
|
747 |
+
"Ako označite ovo, samo korisnici koji su prijavljeni će moći razgovarati s "
|
748 |
+
"vama"
|
749 |
+
|
750 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
751 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
752 |
+
msgid "Do not allow users to send offline messages"
|
753 |
+
msgstr "Ne dopuštaj korisnicima da šalju offline poruke."
|
754 |
+
|
755 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
756 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
757 |
+
msgid ""
|
758 |
+
"The chat window will be hidden when it is offline. Users will not be able to "
|
759 |
+
"send offline messages to you"
|
760 |
+
msgstr ""
|
761 |
+
"Razgovorni prozor biti će sakriven kada je offline. Korisnici neće moći "
|
762 |
+
"slati offline poruke."
|
763 |
+
|
764 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
765 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
|
766 |
+
msgid "Email Address"
|
767 |
+
msgstr "Adresa e-pošte"
|
768 |
+
|
769 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
770 |
+
msgid ""
|
771 |
+
"Email address where offline messages are delivered to. Use comma separated "
|
772 |
+
"email addresses to send to more than one email address"
|
773 |
+
msgstr ""
|
774 |
+
"Adresa e-pošte gdje će offline poruke biti dostavljene. Ukoliko želite "
|
775 |
+
"poslati poruku na više adresa e-pošte, odvojite svaku adresu e-pošte zarezom."
|
776 |
+
|
777 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:412
|
778 |
+
msgid "Sending Method"
|
779 |
+
msgstr "Način slanja"
|
780 |
+
|
781 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:413
|
782 |
+
msgid "WP Mail"
|
783 |
+
msgstr "WP pošta"
|
784 |
+
|
785 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:414
|
786 |
+
msgid "PHP Mailer"
|
787 |
+
msgstr "Slanje pošte PHP "
|
788 |
+
|
789 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:430
|
790 |
+
msgid "Host"
|
791 |
+
msgstr "Domaćin"
|
792 |
+
|
793 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:438
|
794 |
+
msgid "Port"
|
795 |
+
msgstr "Port"
|
796 |
+
|
797 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:446
|
798 |
+
msgid "Username"
|
799 |
+
msgstr "Korisničko ime"
|
800 |
+
|
801 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:454
|
802 |
+
msgid "Password"
|
803 |
+
msgstr "Zaporka"
|
804 |
+
|
805 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:463
|
806 |
+
msgid "Offline Chat Box Title"
|
807 |
+
msgstr "Naslov offline razgovornog prozora "
|
808 |
+
|
809 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:471
|
810 |
+
msgid "Offline Text Fields"
|
811 |
+
msgstr "Offline tekstualni prostor"
|
812 |
+
|
813 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:504
|
814 |
+
msgid "Choose a theme"
|
815 |
+
msgstr "Izaberite temu"
|
816 |
+
|
817 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
818 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:512
|
819 |
+
msgid "Theme 1"
|
820 |
+
msgstr "Tema 1"
|
821 |
+
|
822 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:515
|
823 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
824 |
+
msgid "Theme 2"
|
825 |
+
msgstr "Tema 2"
|
826 |
+
|
827 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:521
|
828 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:524
|
829 |
+
msgid "Theme 3"
|
830 |
+
msgstr "Tema 3"
|
831 |
+
|
832 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:527
|
833 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:530
|
834 |
+
msgid "Theme 4"
|
835 |
+
msgstr "Tema 4"
|
836 |
+
|
837 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:533
|
838 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:536
|
839 |
+
msgid "Theme 5"
|
840 |
+
msgstr "Tema 5"
|
841 |
+
|
842 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:539
|
843 |
+
msgid "Theme 6"
|
844 |
+
msgstr "Tema 6"
|
845 |
+
|
846 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:542
|
847 |
+
msgid "Custom. Enter Colour Values Below"
|
848 |
+
msgstr "Vlastita tema. Unesite ispod vrijednost boje "
|
849 |
+
|
850 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
851 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
852 |
+
msgid "Chat box fill color"
|
853 |
+
msgstr "Boja ispune razgovornog okvira"
|
854 |
+
|
855 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:574
|
856 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:368
|
857 |
+
msgid "Chat box font color"
|
858 |
+
msgstr "Boja slova razgovornog okvira"
|
859 |
+
|
860 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:581
|
861 |
+
msgid "I'm using a localization plugin"
|
862 |
+
msgstr "Koristim dodatak za lokaliziranje"
|
863 |
+
|
864 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:584
|
865 |
+
msgid "documentation"
|
866 |
+
msgstr "dokumentacija"
|
867 |
+
|
868 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:589
|
869 |
+
msgid ""
|
870 |
+
"You will only be able to edit the strings shown in the chat window of the "
|
871 |
+
"code now. <br/> This has been done to accommodate as many localization "
|
872 |
+
"plugins as possible. <br/> For more information on how to change these "
|
873 |
+
"strings, please consult the "
|
874 |
+
msgstr ""
|
875 |
+
"Sada će te moći uređivati riječi prikazane u kodu razgovoranog prozora.<br/> "
|
876 |
+
"To je napravljeno kako bi se omogućilo korištenje što je više "
|
877 |
+
"lokalizacijskih dodataka.<br/> Za više informacija kako mijenjati te riječi, "
|
878 |
+
"molimo posavjetujte se sa"
|
879 |
+
|
880 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:594
|
881 |
+
msgid "First Section Text"
|
882 |
+
msgstr "Tekst prve sekcije"
|
883 |
+
|
884 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:601
|
885 |
+
msgid "Intro Text"
|
886 |
+
msgstr "Uvodni tekst"
|
887 |
+
|
888 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:607
|
889 |
+
msgid "Second Section Text"
|
890 |
+
msgstr "Tekst druge sekcije"
|
891 |
+
|
892 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:614
|
893 |
+
msgid "Reactivate Chat Section Text"
|
894 |
+
msgstr "Tekst sekcije Reaktiviraj razgovor"
|
895 |
+
|
896 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:622
|
897 |
+
msgid "User chat welcome"
|
898 |
+
msgstr "Dobrodošlica korisniku razgovora"
|
899 |
+
|
900 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:628
|
901 |
+
msgid "Other text"
|
902 |
+
msgstr "Ostali tekst"
|
903 |
+
|
904 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:630
|
905 |
+
msgid "This text is shown above the user chat input field"
|
906 |
+
msgstr "Ovaj tekst je prikazan iznad korisničkog polja za unos "
|
907 |
+
|
908 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:662
|
909 |
+
msgid ""
|
910 |
+
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
911 |
+
"update your plugin to allow for animations to function"
|
912 |
+
msgstr ""
|
913 |
+
"Koristite zastarjelu verziju WP osnovne podrške razgovorom uživo. Molimo vas "
|
914 |
+
"da ažurirate vaš dodatak kako bi dopustili da animacije funkcioniraju"
|
915 |
+
|
916 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:666
|
917 |
+
msgid "Choose an animation"
|
918 |
+
msgstr "Izaberite animaciju"
|
919 |
+
|
920 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:674
|
921 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:439
|
922 |
+
msgid "Slide Up"
|
923 |
+
msgstr "Kliži prema gore"
|
924 |
+
|
925 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:680
|
926 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:443
|
927 |
+
msgid "Slide From The Side"
|
928 |
+
msgstr "Kliži prema strani"
|
929 |
+
|
930 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:686
|
931 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
932 |
+
msgid "Fade In"
|
933 |
+
msgstr "Izblijedi"
|
934 |
+
|
935 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:692
|
936 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
937 |
+
msgid "No Animation"
|
938 |
+
msgstr "Bez animacije"
|
939 |
+
|
940 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:750
|
941 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:495
|
942 |
+
msgid "Current Users that are Chat Agents"
|
943 |
+
msgstr "Trenutni korisnici koji su razgovorni agenti"
|
944 |
+
|
945 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:761
|
946 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:503
|
947 |
+
msgid "Online"
|
948 |
+
msgstr "Online"
|
949 |
+
|
950 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:771
|
951 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:679
|
952 |
+
msgid "Remove"
|
953 |
+
msgstr "Uklonite"
|
954 |
+
|
955 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:780
|
956 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:514
|
957 |
+
msgid "Add New Agent"
|
958 |
+
msgstr "Dodajte novog agenta"
|
959 |
+
|
960 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:782
|
961 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2805
|
962 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:516
|
963 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
964 |
+
msgid "Select"
|
965 |
+
msgstr "Odaberite"
|
966 |
+
|
967 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:804
|
968 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:539
|
969 |
+
msgid "Add Agent"
|
970 |
+
msgstr "Dodajte agenta"
|
971 |
+
|
972 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:810
|
973 |
+
msgid ""
|
974 |
+
"Should you wish to add a user that has a role less than 'Author', please go "
|
975 |
+
"to the <a href='./users.php'>Users</a> page, select the relevant user, click "
|
976 |
+
"Edit and scroll to the bottom of the page and enable the 'Chat Agent' "
|
977 |
+
"checkbox."
|
978 |
+
msgstr ""
|
979 |
+
"Ukoliko želite dodati korisnika koji ima ulogu manju od 'Autora' molim vas "
|
980 |
+
"posjetite stranicu <a href='./users.php'>Korisnici</a>, odaberite željenog "
|
981 |
+
"korisnika, kliknite Uredi, spustite se na dno stranice i omogućite okvir za "
|
982 |
+
"izbor 'Razgovorni agent'"
|
983 |
+
|
984 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:811
|
985 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
986 |
+
msgstr ""
|
987 |
+
"Ukoliko nema razgovornih agenata online, razgovor će biti prikazan kao "
|
988 |
+
"offline"
|
989 |
+
|
990 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:815
|
991 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:551
|
992 |
+
msgid "Blocked Visitors - Based on IP Address"
|
993 |
+
msgstr "Blokirani posjetitelji - prema IP adresi"
|
994 |
+
|
995 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:816
|
996 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:552
|
997 |
+
msgid "Enter each IP Address you would like to block on a new line"
|
998 |
+
msgstr "Unesite svaku IP adresu koji bi željeli blokirati u novu liniju"
|
999 |
+
|
1000 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
|
1001 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:563
|
1002 |
+
msgid ""
|
1003 |
+
"Blocking a user's IP Address here will hide the chat window from them, "
|
1004 |
+
"preventing them from chatting with you. Each IP Address must be on a new line"
|
1005 |
+
msgstr ""
|
1006 |
+
"Kada ovdje blokirate korisničku IP adresu sakrit će mu se prozor razgovora, "
|
1007 |
+
"time će te ga spriječiti da s vama razgovara. Svaka IP adresa mora biti u "
|
1008 |
+
"novom redu"
|
1009 |
+
|
1010 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
1011 |
+
msgid ""
|
1012 |
+
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
1013 |
+
msgstr ""
|
1014 |
+
"su dostupni jedino u WP Live Chat Support Chat Experience Ratings add-on"
|
1015 |
+
|
1016 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:840
|
1017 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:566
|
1018 |
+
msgid "Chat Encryption"
|
1019 |
+
msgstr "Šifriranje razgovora"
|
1020 |
+
|
1021 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1022 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
1023 |
+
msgid "Enable Encryption"
|
1024 |
+
msgstr "Omogućite šifriranje"
|
1025 |
+
|
1026 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1027 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
1028 |
+
msgid ""
|
1029 |
+
"All messages will be encrypted when being sent to and from the user and "
|
1030 |
+
"agent."
|
1031 |
+
msgstr "Sve poruke koje se šalju između agenta i korisnika biti će šifrirane."
|
1032 |
+
|
1033 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:851
|
1034 |
+
msgid ""
|
1035 |
+
"Once enabled, all messages sent will be encrypted. This cannot be undone."
|
1036 |
+
msgstr ""
|
1037 |
+
"Jednom kada se omogući, sve će poruke koje se šalju biti će šifrirane. Ovo "
|
1038 |
+
"se nemože poništiti."
|
1039 |
+
|
1040 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:857
|
1041 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:583
|
1042 |
+
msgid "Save Settings"
|
1043 |
+
msgstr "Spremi postavke"
|
1044 |
+
|
1045 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:588
|
1046 |
+
msgid "Dear User"
|
1047 |
+
msgstr "Dragi korisniče"
|
1048 |
+
|
1049 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1050 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
1051 |
+
msgstr ""
|
1052 |
+
"Koristite zastarjelu verziju WP osnovne podrške razgovorom uživo. Molimo vas"
|
1053 |
+
|
1054 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1055 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1056 |
+
msgid "update to at least version"
|
1057 |
+
msgstr "ažurirajte na posljednju verziju"
|
1058 |
+
|
1059 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:589
|
1060 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1061 |
+
msgid "to ensure all functionality is in working order"
|
1062 |
+
msgstr "kako bi osigurali da sve funkcije rade pravilno"
|
1063 |
+
|
1064 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:590
|
1065 |
+
msgid ""
|
1066 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1067 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
1068 |
+
"user experience for both yourself and your visitors."
|
1069 |
+
msgstr ""
|
1070 |
+
"Razgovorni okvir na vašoj internetskoj stranici je privremeno onemogućen dok "
|
1071 |
+
"ne ažurirate osnovni dodatak. Ovo je napravljeno kako bi se osiguralo glatko "
|
1072 |
+
"i dobro iskustvo korisnika kako za vas tako i za vaše posjetitelje."
|
1073 |
+
|
1074 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:591
|
1075 |
+
msgid ""
|
1076 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
1077 |
+
"href='./plugins.php'>here</a>."
|
1078 |
+
msgstr ""
|
1079 |
+
"Vaš dodatak možete ažurirati <a href='./update-core.php'>ovdje</a> ili <a "
|
1080 |
+
"href='./plugins.php'>ovdje</a>."
|
1081 |
+
|
1082 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:592
|
1083 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1703
|
1084 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1723
|
1085 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
1086 |
+
msgstr ""
|
1087 |
+
"Ukoliko imate poteškoće prilikom ažuriranja dodatka, molimo kontaktirajte "
|
1088 |
+
|
1089 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:605
|
1090 |
+
msgid ""
|
1091 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
1092 |
+
"download the latest copy from"
|
1093 |
+
msgstr ""
|
1094 |
+
"WP Pro podrška razgovorom uživo zahtijeva da imate WP podršku razgovorom "
|
1095 |
+
"uživo kako bi mogla funkcionirati. Možete preuzeti posljednju kopiju sa"
|
1096 |
+
|
1097 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:617
|
1098 |
+
msgid "Admin"
|
1099 |
+
msgstr "Administrator"
|
1100 |
+
|
1101 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:621
|
1102 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:854
|
1103 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1103
|
1104 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:377
|
1105 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:781
|
1106 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:962
|
1107 |
+
msgid "Questions?"
|
1108 |
+
msgstr "Imate pitanja?"
|
1109 |
+
|
1110 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:622
|
1111 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:855
|
1112 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1104
|
1113 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1114 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:781
|
1115 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:962
|
1116 |
+
msgid "Chat with us"
|
1117 |
+
msgstr "Razgovarajte s nama"
|
1118 |
+
|
1119 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:623
|
1120 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
|
1121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1105
|
1122 |
+
msgid "Start live chat"
|
1123 |
+
msgstr "Započnite razgovor"
|
1124 |
+
|
1125 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:624
|
1126 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:858
|
1127 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1107
|
1128 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:384
|
1129 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:840
|
1130 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1024
|
1131 |
+
msgid "Start Chat"
|
1132 |
+
msgstr "Pokreni razgovor"
|
1133 |
+
|
1134 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:625
|
1135 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:859
|
1136 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1108
|
1137 |
+
msgid "Connecting. Please be patient..."
|
1138 |
+
msgstr "Spajam se. Molim vas budite strpljivi..."
|
1139 |
+
|
1140 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:626
|
1141 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:861
|
1142 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1110
|
1143 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:393
|
1144 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:846
|
1145 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1030
|
1146 |
+
msgid "Reactivating your previous chat..."
|
1147 |
+
msgstr "Ponovno aktiviram vaš prijašnji razgovor..."
|
1148 |
+
|
1149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:627
|
1150 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:863
|
1151 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1112
|
1152 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:310
|
1153 |
+
msgid "Chat offline. Leave a message"
|
1154 |
+
msgstr "Razgovor je offline. Ostavite poruku"
|
1155 |
+
|
1156 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:628
|
1157 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:865
|
1158 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1114
|
1159 |
+
msgid "Hello. Please input your details so that I may help you."
|
1160 |
+
msgstr "Pozdrav. Molim vas unesite detalje kako bi vam mogli pomoći."
|
1161 |
+
|
1162 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:629
|
1163 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:867
|
1164 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:868
|
1165 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1116
|
1166 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1117
|
1167 |
+
msgid ""
|
1168 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
1169 |
+
"shortly."
|
1170 |
+
msgstr ""
|
1171 |
+
"Trenutno smo offline. Molimo vas ostavite poruku i ubrzo ćemo vam se javiti."
|
1172 |
+
|
1173 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:630
|
1174 |
+
msgid "Sending message..."
|
1175 |
+
msgstr "Šaljem poruku..."
|
1176 |
+
|
1177 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:631
|
1178 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:869
|
1179 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
|
1180 |
+
msgid "Thank you for your message. We will be in contact soon."
|
1181 |
+
msgstr "Hvala vam na vašoj poruci. Kontaktirati ćemo vas uskoro."
|
1182 |
+
|
1183 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:632
|
1184 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:871
|
1185 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1120
|
1186 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:851
|
1187 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1035
|
1188 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1947
|
1189 |
+
msgid "Press ENTER to send your message"
|
1190 |
+
msgstr "Pritisnite ENTER kako bi poslali poruku"
|
1191 |
+
|
1192 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:633
|
1193 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:873
|
1194 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1122
|
1195 |
+
msgid "Welcome. How may I help you?"
|
1196 |
+
msgstr "Dobrodošli. Kako vam mogu pomoći?"
|
1197 |
+
|
1198 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:673
|
1199 |
+
msgid "Rating Unavailable"
|
1200 |
+
msgstr "Ocjenjivanje nije dostupno"
|
1201 |
+
|
1202 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:677
|
1203 |
+
msgid "You are currently accepting chats"
|
1204 |
+
msgstr "Trenutno prihvaćate razgovore"
|
1205 |
+
|
1206 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:678
|
1207 |
+
msgid "You are not accepting chats"
|
1208 |
+
msgstr "Ne prihvaćate razgovore"
|
1209 |
+
|
1210 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:727
|
1211 |
+
msgid "Delete History"
|
1212 |
+
msgstr "Izbriši povijest"
|
1213 |
+
|
1214 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:736
|
1215 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1256
|
1216 |
+
msgid "URL"
|
1217 |
+
msgstr "URL"
|
1218 |
+
|
1219 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:737
|
1220 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1569
|
1221 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1823
|
1222 |
+
msgid "Status"
|
1223 |
+
msgstr "Status"
|
1224 |
+
|
1225 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:738
|
1226 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1570
|
1227 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1824
|
1228 |
+
msgid "Action"
|
1229 |
+
msgstr "Akcija"
|
1230 |
+
|
1231 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:744
|
1232 |
+
msgid "No chats available at the moment"
|
1233 |
+
msgstr "Trenutno nema dostupnih razgovora"
|
1234 |
+
|
1235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
1236 |
+
msgid "View Chat History"
|
1237 |
+
msgstr "Pogledaj povijest razgovora"
|
1238 |
+
|
1239 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
1240 |
+
msgid "Download Chat History"
|
1241 |
+
msgstr "Preuzmi povijest razgovora"
|
1242 |
+
|
1243 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:875
|
1244 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1124
|
1245 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1304
|
1246 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2468
|
1247 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1248 |
+
msgstr ""
|
1249 |
+
"Molim vas stisnite \"Pokreni razgovor\" kako bi pokrenuli razgovor s agentom"
|
1250 |
+
|
1251 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:896
|
1252 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1146
|
1253 |
+
msgid "Minimize Chat Window"
|
1254 |
+
msgstr "Smanji razgovorni prozor"
|
1255 |
+
|
1256 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:897
|
1257 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1147
|
1258 |
+
msgid "Close Chat Window"
|
1259 |
+
msgstr "Zatvori razgovorni prozor"
|
1260 |
+
|
1261 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:997
|
1262 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1235
|
1263 |
+
msgid "Send message"
|
1264 |
+
msgstr "Pošalji poruku"
|
1265 |
+
|
1266 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1023
|
1267 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1261
|
1268 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:855
|
1269 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1039
|
1270 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1961
|
1271 |
+
msgid "Send"
|
1272 |
+
msgstr "Pošalji"
|
1273 |
+
|
1274 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1480
|
1275 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2511
|
1276 |
+
msgid "Your settings have been saved."
|
1277 |
+
msgstr "Vaše postavke su spremljene."
|
1278 |
+
|
1279 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1516
|
1280 |
+
msgid "Chat sessions"
|
1281 |
+
msgstr "Sesije razgovora"
|
1282 |
+
|
1283 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1518
|
1284 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1794
|
1285 |
+
msgid ""
|
1286 |
+
"Please note: This window must be open in order to receive new chat "
|
1287 |
+
"notifications."
|
1288 |
+
msgstr ""
|
1289 |
+
"Obratite pozornost: ovaj prozor mora biti otvoren kako bi mogli dobivati "
|
1290 |
+
"obavijesti o novim razgovorima"
|
1291 |
+
|
1292 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1522
|
1293 |
+
msgid ""
|
1294 |
+
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1295 |
+
"chat to visitors"
|
1296 |
+
msgstr ""
|
1297 |
+
"Vi niste razgovorni agent. Molimo vas da postanete razgovorni agent prije "
|
1298 |
+
"nego što pokušate razgovarati sa posjetiteljima"
|
1299 |
+
|
1300 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1550
|
1301 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1804
|
1302 |
+
msgid "Visitors online"
|
1303 |
+
msgstr "Online posjetitelji"
|
1304 |
+
|
1305 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1555
|
1306 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1809
|
1307 |
+
msgid "Agent(s) online"
|
1308 |
+
msgstr "Online agent(i)"
|
1309 |
+
|
1310 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1565
|
1311 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1819
|
1312 |
+
msgid "Visitor"
|
1313 |
+
msgstr "Posjetitelji"
|
1314 |
+
|
1315 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1566
|
1316 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1820
|
1317 |
+
msgid "Time"
|
1318 |
+
msgstr "Vrijeme"
|
1319 |
+
|
1320 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
|
1321 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1821
|
1322 |
+
msgid "Type"
|
1323 |
+
msgstr "Vrsta"
|
1324 |
+
|
1325 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
|
1326 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1822
|
1327 |
+
msgid "Data"
|
1328 |
+
msgstr "Podaci"
|
1329 |
+
|
1330 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1666
|
1331 |
+
msgid "Unknown"
|
1332 |
+
msgstr "Nepoznato"
|
1333 |
+
|
1334 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1682
|
1335 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1912
|
1336 |
+
msgid "End chat"
|
1337 |
+
msgstr "Završi razgovor"
|
1338 |
+
|
1339 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1687
|
1340 |
+
msgid "Attempting to open the chat window... Please be patient."
|
1341 |
+
msgstr "Pokušavam otvoriti razgovorni prozor... Molim za strpljenje."
|
1342 |
+
|
1343 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1798
|
1344 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2757
|
1345 |
+
msgid "This chat has already been answered. Please close the chat window"
|
1346 |
+
msgstr ""
|
1347 |
+
"Na ovaj razgovor je već odgovoreno. Molimo vas zatvorite razgovorni prozor"
|
1348 |
+
|
1349 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1873
|
1350 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2082
|
1351 |
+
msgid "User has opened the chat window"
|
1352 |
+
msgstr "Korisnik je otvorio razgovorni prozor"
|
1353 |
+
|
1354 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1878
|
1355 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2087
|
1356 |
+
msgid "User has minimized the chat window"
|
1357 |
+
msgstr "Korisnik je minimalizirao razgovorni prozor"
|
1358 |
+
|
1359 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1883
|
1360 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2092
|
1361 |
+
msgid "User has maximized the chat window"
|
1362 |
+
msgstr "Korisnik je maksimizirao razgovorni prozor"
|
1363 |
+
|
1364 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1888
|
1365 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2097
|
1366 |
+
msgid "User has closed and ended the chat"
|
1367 |
+
msgstr "Korisnik je završio i zatvorio razgovor"
|
1368 |
+
|
1369 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2477
|
1370 |
+
msgid ""
|
1371 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
1372 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1373 |
+
msgstr ""
|
1374 |
+
"Neočekivana HTTP greška se pojavila tijekom zahtijeva za API.</p> <p><a href="
|
1375 |
+
"\"?\" onclick=\"document.location.reload(); return false;\">Pokušajte "
|
1376 |
+
"ponovno</a>"
|
1377 |
+
|
1378 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2482
|
1379 |
+
msgid "An unknown error occurred"
|
1380 |
+
msgstr "Pojavila se nepoznata greška"
|
1381 |
+
|
1382 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1383 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1384 |
+
msgid "Add-ons"
|
1385 |
+
msgstr "Dodaci"
|
1386 |
+
|
1387 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1388 |
+
msgid "Supplimentary Plugins"
|
1389 |
+
msgstr "Dopunski dodaci"
|
1390 |
+
|
1391 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1392 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1393 |
+
msgid "Pro add-on"
|
1394 |
+
msgstr "Pro dodatkom"
|
1395 |
+
|
1396 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1397 |
+
msgid "Get this extension"
|
1398 |
+
msgstr "Nabavi ovu ekstenziju"
|
1399 |
+
|
1400 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2703
|
1401 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:446
|
1402 |
+
msgid "Live Chat"
|
1403 |
+
msgstr "Razgovor uživo"
|
1404 |
+
|
1405 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2704
|
1406 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:447
|
1407 |
+
msgid "Settings"
|
1408 |
+
msgstr "Postavke"
|
1409 |
+
|
1410 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2705
|
1411 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2729
|
1412 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2740
|
1413 |
+
msgid "Quick Responses"
|
1414 |
+
msgstr "Brzi odgovori"
|
1415 |
+
|
1416 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2706
|
1417 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:448
|
1418 |
+
msgid "History"
|
1419 |
+
msgstr "Povijest"
|
1420 |
+
|
1421 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2707
|
1422 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:449
|
1423 |
+
msgid "Missed Chats"
|
1424 |
+
msgstr "Propušteni razgovori"
|
1425 |
+
|
1426 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2709
|
1427 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1428 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:450
|
1429 |
+
msgid "Feedback"
|
1430 |
+
msgstr "Povratne informacije"
|
1431 |
+
|
1432 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2711
|
1433 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:452
|
1434 |
+
msgid "Extensions"
|
1435 |
+
msgstr "Proširenja"
|
1436 |
+
|
1437 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2716
|
1438 |
+
msgid "Error Log"
|
1439 |
+
msgstr "Dnevnik pogrešaka"
|
1440 |
+
|
1441 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2719
|
1442 |
+
msgid "Statistics"
|
1443 |
+
msgstr "Statistika"
|
1444 |
+
|
1445 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2722
|
1446 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:451
|
1447 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2764
|
1448 |
+
msgid "Support"
|
1449 |
+
msgstr "Podrška"
|
1450 |
+
|
1451 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2730
|
1452 |
+
msgid "Quick Response"
|
1453 |
+
msgstr "Brzi odgovori"
|
1454 |
+
|
1455 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2731
|
1456 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2734
|
1457 |
+
msgid "New Quick Response"
|
1458 |
+
msgstr "Novi brzi odgovor"
|
1459 |
+
|
1460 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2732
|
1461 |
+
msgid "Add New Quick Response"
|
1462 |
+
msgstr "Dodaj novi brzi odgovor"
|
1463 |
+
|
1464 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2733
|
1465 |
+
msgid "Edit Quick Response"
|
1466 |
+
msgstr "Uredi brzi odgovor"
|
1467 |
+
|
1468 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2735
|
1469 |
+
msgid "All Quick Responses"
|
1470 |
+
msgstr "Svi brzi odgovori"
|
1471 |
+
|
1472 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2736
|
1473 |
+
msgid "View Quick Responses"
|
1474 |
+
msgstr "Pregledaj brze odgovore"
|
1475 |
+
|
1476 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2737
|
1477 |
+
msgid "Search Quick Responses"
|
1478 |
+
msgstr "Pretraži brze odgovore"
|
1479 |
+
|
1480 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2738
|
1481 |
+
msgid "No Quick Responses found"
|
1482 |
+
msgstr "Brzi odgovori nisu pronađeni"
|
1483 |
+
|
1484 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2739
|
1485 |
+
msgid "No Quick Responses found in the Trash"
|
1486 |
+
msgstr "Brzi odgovori nisu pronađeni u smeću"
|
1487 |
+
|
1488 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2744
|
1489 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
1490 |
+
msgstr "Brzi odgovori za WP podršku razgovorom uživo Pro"
|
1491 |
+
|
1492 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2798
|
1493 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2802
|
1494 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1495 |
+
msgid "Assign Quick Response"
|
1496 |
+
msgstr "Dodijeli brzi odgovor"
|
1497 |
+
|
1498 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2811
|
1499 |
+
msgid "What is this?"
|
1500 |
+
msgstr "Što je ovo?"
|
1501 |
+
|
1502 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:878
|
1503 |
+
msgid "complete"
|
1504 |
+
msgstr "dovršeno"
|
1505 |
+
|
1506 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:881
|
1507 |
+
msgid "pending"
|
1508 |
+
msgstr "u tijeku"
|
1509 |
+
|
1510 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:884
|
1511 |
+
msgid "active"
|
1512 |
+
msgstr "aktivno"
|
1513 |
+
|
1514 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:887
|
1515 |
+
msgid "deleted"
|
1516 |
+
msgstr "izbrisano"
|
1517 |
+
|
1518 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:890
|
1519 |
+
msgid "browsing"
|
1520 |
+
msgstr "pregledava"
|
1521 |
+
|
1522 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:893
|
1523 |
+
msgid "requesting chat"
|
1524 |
+
msgstr "zahtijevam razgovor"
|
1525 |
+
|
1526 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:896
|
1527 |
+
msgid "Chat Ended - User still browsing"
|
1528 |
+
msgstr "Razgovor je završio - korisnik i dalje pregledava"
|
1529 |
+
|
1530 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:899
|
1531 |
+
msgid "User is browsing but doesn't want to chat"
|
1532 |
+
msgstr "Korisnik pregledava ali ne želi razgovarati"
|
1533 |
+
|
1534 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1036
|
1535 |
+
msgid "Get Pro Add-on to accept more chats"
|
1536 |
+
msgstr "Nabavite Pro dodatak kako bi prihvatili više razgovora"
|
1537 |
+
|
1538 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1283
|
1539 |
+
msgid "You have not missed any chat requests."
|
1540 |
+
msgstr "Niste propustili nijedan zahtijev za razgovorom."
|
1541 |
+
|
1542 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1543 |
+
msgid "WP Live Chat Support Feedback"
|
1544 |
+
msgstr "Povratne informacije o WP podršci razgovorom uživo"
|
1545 |
+
|
1546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
1547 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
1548 |
+
msgstr "Voljeli bi smo čuti vaše komentare i/ili prijedloge"
|
1549 |
+
|
1550 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
1551 |
+
msgid "Your Name"
|
1552 |
+
msgstr "Vaše ime"
|
1553 |
+
|
1554 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
1555 |
+
msgid "Your Email"
|
1556 |
+
msgstr "Vaša e-pošta"
|
1557 |
+
|
1558 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1559 |
+
msgid "Your Website"
|
1560 |
+
msgstr "Vaša internetska stranica"
|
1561 |
+
|
1562 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1563 |
+
msgid "Send Feedback"
|
1564 |
+
msgstr "Vaše povratne infromacije"
|
1565 |
+
|
1566 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:29
|
1567 |
+
msgid "Agents"
|
1568 |
+
msgstr "Agenti"
|
1569 |
+
|
1570 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:52
|
1571 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
|
1572 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
1573 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:146
|
1574 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
|
1575 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
1576 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:222
|
1577 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
|
1578 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:255
|
1579 |
+
msgid "available in the"
|
1580 |
+
msgstr "dostupno sa"
|
1581 |
+
|
1582 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
1583 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
1584 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:132
|
1585 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
1586 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:191
|
1587 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:207
|
1588 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:223
|
1589 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
1590 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:256
|
1591 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:299
|
1592 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:313
|
1593 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:397
|
1594 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:574
|
1595 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1596 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
1597 |
+
msgid "Pro Add-on"
|
1598 |
+
msgstr "Pro dodatak"
|
1599 |
+
|
1600 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:54
|
1601 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:69
|
1602 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:133
|
1603 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:148
|
1604 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:192
|
1605 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:208
|
1606 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:224
|
1607 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:240
|
1608 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:257
|
1609 |
+
msgid "only"
|
1610 |
+
msgstr "samo"
|
1611 |
+
|
1612 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
1613 |
+
msgid "Include chat window on the following pages"
|
1614 |
+
msgstr "Uključite razgovorni prozor na sljedećim stranicama"
|
1615 |
+
|
1616 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
1617 |
+
msgid "Exclude chat window on the following pages"
|
1618 |
+
msgstr "Isključite razgovorni prozor sa sljedećih stranica"
|
1619 |
+
|
1620 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
|
1621 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
1622 |
+
msgstr "Upozorite me putem e-pošte čim netko želi razgovarati"
|
1623 |
+
|
1624 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:298
|
1625 |
+
msgid "Get offline messages with the "
|
1626 |
+
msgstr "Primite offline poruke sa"
|
1627 |
+
|
1628 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:307
|
1629 |
+
msgid "Offline text"
|
1630 |
+
msgstr "Offline tekst"
|
1631 |
+
|
1632 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:312
|
1633 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:396
|
1634 |
+
msgid "Edit these text fields using the "
|
1635 |
+
msgstr "Uredite ove tekstualne prostore sa"
|
1636 |
+
|
1637 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1638 |
+
msgid "Choose a colour scheme. Only available in the"
|
1639 |
+
msgstr "Izaberite shemu boja. Dostupno samo sa"
|
1640 |
+
|
1641 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
1642 |
+
msgid "Colour Scheme 1"
|
1643 |
+
msgstr "Shema boja 1"
|
1644 |
+
|
1645 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:351
|
1646 |
+
msgid "Colour Scheme 2"
|
1647 |
+
msgstr "Shema boja 2"
|
1648 |
+
|
1649 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:352
|
1650 |
+
msgid "Colour Scheme 3"
|
1651 |
+
msgstr "Shema boja3"
|
1652 |
+
|
1653 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:353
|
1654 |
+
msgid "Colour Scheme 4"
|
1655 |
+
msgstr "Shema boja 4"
|
1656 |
+
|
1657 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
|
1658 |
+
msgid "Colour Scheme 5"
|
1659 |
+
msgstr "Shema boja 5"
|
1660 |
+
|
1661 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
1662 |
+
msgid "Colour Scheme 6"
|
1663 |
+
msgstr "Shema boja 6"
|
1664 |
+
|
1665 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:375
|
1666 |
+
msgid "First section text"
|
1667 |
+
msgstr "Tekst prve sekcije"
|
1668 |
+
|
1669 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:382
|
1670 |
+
msgid "Second section text"
|
1671 |
+
msgstr "Tekst druge sekcije"
|
1672 |
+
|
1673 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:385
|
1674 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:843
|
1675 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1027
|
1676 |
+
msgid "Connecting you to a sales person. Please be patient."
|
1677 |
+
msgstr "Spajamo vas sa prodavačem. Molimo pričekajte"
|
1678 |
+
|
1679 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:391
|
1680 |
+
msgid "Reactivate chat section text"
|
1681 |
+
msgstr "Ponovno pokreni sekciju razgovora"
|
1682 |
+
|
1683 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:431
|
1684 |
+
msgid "Choose an animation. Only available in the"
|
1685 |
+
msgstr "Izaberite animaciju. Dostupno samo sa"
|
1686 |
+
|
1687 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:432
|
1688 |
+
msgid "Pro"
|
1689 |
+
msgstr "Pro"
|
1690 |
+
|
1691 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1692 |
+
msgid "Add as many agents as you need with the "
|
1693 |
+
msgstr "Dodajte koliko god vam je potrebno agenata sa "
|
1694 |
+
|
1695 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1696 |
+
msgid "Pro version for only $19.95 once off."
|
1697 |
+
msgstr "Pro verzija za samo $19.95, jednokratna uplata"
|
1698 |
+
|
1699 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:573
|
1700 |
+
msgid "Encrypt your chat messages in the "
|
1701 |
+
msgstr "Šifrirajte vaš razgovor sa"
|
1702 |
+
|
1703 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1704 |
+
msgid "Welcome to "
|
1705 |
+
msgstr "Dobrodošli u"
|
1706 |
+
|
1707 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1708 |
+
msgid "Version 5"
|
1709 |
+
msgstr "Verzija 5"
|
1710 |
+
|
1711 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1712 |
+
msgid "Provide Instant Live Chat Support!"
|
1713 |
+
msgstr "Pružite trenutnu podršku razgovorom uživo"
|
1714 |
+
|
1715 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1716 |
+
msgid "How did you find us?"
|
1717 |
+
msgstr "Kako ste nas pronašli?"
|
1718 |
+
|
1719 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1720 |
+
msgid "WordPress.org plugin repository "
|
1721 |
+
msgstr "Wordpress.org repozitorij dodataka"
|
1722 |
+
|
1723 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
1724 |
+
msgid "Search Term"
|
1725 |
+
msgstr "Termin pretrage"
|
1726 |
+
|
1727 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
1728 |
+
msgid "Google or other search Engine"
|
1729 |
+
msgstr "Google ili druga tražilica"
|
1730 |
+
|
1731 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1732 |
+
msgid "Friend recommendation"
|
1733 |
+
msgstr "Preporuka prijatelja"
|
1734 |
+
|
1735 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1736 |
+
msgid "Other"
|
1737 |
+
msgstr "Ostalo"
|
1738 |
+
|
1739 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
1740 |
+
msgid "Please Explain"
|
1741 |
+
msgstr "Molimo objasnite"
|
1742 |
+
|
1743 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
1744 |
+
msgid "Submit"
|
1745 |
+
msgstr "Podnesi"
|
1746 |
+
|
1747 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1748 |
+
msgid "Skip"
|
1749 |
+
msgstr "Preskoči"
|
1750 |
+
|
1751 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:409
|
1752 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2235
|
1753 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1754 |
+
msgstr ""
|
1755 |
+
"Molimo kliknite \\'Započnite razgovor\\' kako bi započeli razgovor sa agentom"
|
1756 |
+
|
1757 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:788
|
1758 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:969
|
1759 |
+
msgid "Start Live Chat"
|
1760 |
+
msgstr "Pokreni razgovor uživo"
|
1761 |
+
|
1762 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1247
|
1763 |
+
msgid "New chat received"
|
1764 |
+
msgstr "Primljen je novi razgovor"
|
1765 |
+
|
1766 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1249
|
1767 |
+
msgid ""
|
1768 |
+
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
1769 |
+
"chat"
|
1770 |
+
msgstr ""
|
1771 |
+
"Primljen je novi razgovor. Molimo vas da odete na stranicu 'Razgovor uživo' "
|
1772 |
+
"kako bi prihvatili razgovor"
|
1773 |
+
|
1774 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1775 |
+
msgid ""
|
1776 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1777 |
+
"strong>. Please"
|
1778 |
+
msgstr ""
|
1779 |
+
"<a href='./update-core.php'>here</a>, <a href='./plugins.php'>here</a> or <a "
|
1780 |
+
"href='http://wp-livechat.com/get-updated-version/' target='_BLANK'>here</a>."
|
1781 |
+
|
1782 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1701
|
1783 |
+
msgid ""
|
1784 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1785 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1786 |
+
"experience for both yourself and your visitors."
|
1787 |
+
msgstr ""
|
1788 |
+
"Razgovorni okvir na vašoj internetskoj stranici je privremeno onemogućen dok "
|
1789 |
+
"ne ažurirate Pro dodatak. Ovo je napravljeno kako bi se osiguralo glatko i "
|
1790 |
+
"dobro korisničko iskustvom kako za vas tako i za vaše posjetitelje."
|
1791 |
+
|
1792 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1702
|
1793 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1722
|
1794 |
+
msgid ""
|
1795 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1796 |
+
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1797 |
+
"version/' target='_BLANK'>here</a>."
|
1798 |
+
msgstr ""
|
1799 |
+
"Vaš dodatak možete ažurirati <a href='./update-core.php'>ovdje</a>, <a "
|
1800 |
+
"href='./plugins.php'>ovdje</a> ili <a href='http://wp-livechat.com/get-"
|
1801 |
+
"updated-version/' target='_BLANK'>ovdje</a>."
|
1802 |
+
|
1803 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1715
|
1804 |
+
msgid ""
|
1805 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1806 |
+
"strong>."
|
1807 |
+
msgstr ""
|
1808 |
+
"Koristite zastarjelu verziju <strong>WP podrške razgovorom uživo Pro</"
|
1809 |
+
"strong>."
|
1810 |
+
|
1811 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1717
|
1812 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1813 |
+
msgstr ""
|
1814 |
+
"Molimo vas da ažurirate postojeću verziju kako bi imali posljednju verziju "
|
1815 |
+
"WP podrške razgovorom uživo PRO"
|
1816 |
+
|
1817 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1718
|
1818 |
+
msgid "Version 5.0.1"
|
1819 |
+
msgstr "Verzija 5.0.1"
|
1820 |
+
|
1821 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1719
|
1822 |
+
msgid "to ensure everything is working correctly."
|
1823 |
+
msgstr "kako bi osigurali da sve radi kako treba."
|
1824 |
+
|
1825 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1750
|
1826 |
+
msgid "Congratulations"
|
1827 |
+
msgstr "Čestitamo"
|
1828 |
+
|
1829 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1751
|
1830 |
+
msgid "You are now accepting live chat requests on your site."
|
1831 |
+
msgstr "Sada prihvaćate zahtjeve za razgovorom uživo na vašoj stranici."
|
1832 |
+
|
1833 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1752
|
1834 |
+
msgid "The live chat box has automatically been enabled on your website."
|
1835 |
+
msgstr "Razgovorni okvir je automatski omogućen na vašoj stranici."
|
1836 |
+
|
1837 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1753
|
1838 |
+
msgid "Chat notifications will start appearing once visitors send a request."
|
1839 |
+
msgstr ""
|
1840 |
+
"Obavijesti o razgovoru će se početi prikazivati jednom kada posjetitelji "
|
1841 |
+
"pošalju zahtjev."
|
1842 |
+
|
1843 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1754
|
1844 |
+
msgid ""
|
1845 |
+
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
1846 |
+
"chat box settings here."
|
1847 |
+
msgstr ""
|
1848 |
+
"Možete <a href='?page=wplivechat-menu-settings' target='_BLANK'>izmijeniti "
|
1849 |
+
"vaš razgovorni okvir ovdje."
|
1850 |
+
|
1851 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1852 |
+
msgid "Experiencing issues?"
|
1853 |
+
msgstr "Imate problema?"
|
1854 |
+
|
1855 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1856 |
+
msgid "Visit our troubleshooting section."
|
1857 |
+
msgstr "Posjetite našu sekciju rješavanja problema."
|
1858 |
+
|
1859 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1757
|
1860 |
+
msgid "Hide"
|
1861 |
+
msgstr "Sakrij"
|
1862 |
+
|
1863 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1791
|
1864 |
+
msgid "Chat Dashboard"
|
1865 |
+
msgstr "Nadzorna ploča razgovora"
|
1866 |
+
|
1867 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1831
|
1868 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1869 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
1870 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1871 |
+
msgstr "Sa Pro dodatkom WP podrške razgovorom uživo možete"
|
1872 |
+
|
1873 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1832
|
1874 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1875 |
+
msgid "see who's online and initiate chats"
|
1876 |
+
msgstr "vidjeti tko je online i pokrenuti razgovore"
|
1877 |
+
|
1878 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1833
|
1879 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1880 |
+
msgid "initiate chats"
|
1881 |
+
msgstr "pokreni razgovore"
|
1882 |
+
|
1883 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1834
|
1884 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1885 |
+
msgid "with your online visitors with the click of a button."
|
1886 |
+
msgstr "sa vašim online posjetiteljima klikom botuna."
|
1887 |
+
|
1888 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1835
|
1889 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1837
|
1890 |
+
msgid "Buy the Pro add-on now."
|
1891 |
+
msgstr "Kupite Pro dodatak sada."
|
1892 |
+
|
1893 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1898
|
1894 |
+
msgid "Previous"
|
1895 |
+
msgstr "Prijašnji"
|
1896 |
+
|
1897 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1900
|
1898 |
+
msgid "Active"
|
1899 |
+
msgstr "Aktivan"
|
1900 |
+
|
1901 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1909
|
1902 |
+
msgid "Chat with"
|
1903 |
+
msgstr "Razgovaraj sa"
|
1904 |
+
|
1905 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1906 |
+
msgid "Add Quick Responses to your Live Chat"
|
1907 |
+
msgstr "Dodajte brzi odgovor vašem razgovoru"
|
1908 |
+
|
1909 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1910 |
+
msgid "Pro version only"
|
1911 |
+
msgstr "Samo u Pro verziji"
|
1912 |
+
|
1913 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1959
|
1914 |
+
msgid "type here..."
|
1915 |
+
msgstr "pišite ovdje..."
|
1916 |
+
|
1917 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2364
|
1918 |
+
msgid "WP Live Chat History"
|
1919 |
+
msgstr "Povijest WP razgovora uživo"
|
1920 |
+
|
1921 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1922 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
1923 |
+
msgid "This option is only available in the "
|
1924 |
+
msgstr "Ova opcija moguća je samo sa"
|
1925 |
+
|
1926 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2377
|
1927 |
+
msgid "WP Live Chat Missed Chats"
|
1928 |
+
msgstr "Propušteni razgovori WP razgovora uživo"
|
1929 |
+
|
1930 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2385
|
1931 |
+
msgid "WP Live Chat Offline Messages"
|
1932 |
+
msgstr "Offline poruke WP razgovora uživo"
|
1933 |
+
|
1934 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2390
|
1935 |
+
msgid ""
|
1936 |
+
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1937 |
+
"recording any offline messages."
|
1938 |
+
msgstr ""
|
1939 |
+
"Molimo vas da ažurirate postojeću verziju kako bi imali posljednju verziju "
|
1940 |
+
"WP podrške razgovorom uživo PRO"
|
1941 |
+
|
1942 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2526
|
1943 |
+
msgid "Thank You for your feedback!"
|
1944 |
+
msgstr "Hvala vam na povratnim informacijama."
|
1945 |
+
|
1946 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2530
|
1947 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2543
|
1948 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1949 |
+
msgstr "Hvala vam na povratnim informacijama. Javim ćemo se uskoro"
|
1950 |
+
|
1951 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2546
|
1952 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1953 |
+
msgstr ""
|
1954 |
+
"Došlo je do problema prilikom slanja vaših povratnih informacija. Molimo "
|
1955 |
+
"upišite vaše povratne informacije na "
|
1956 |
+
|
1957 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2580
|
1958 |
+
msgid ""
|
1959 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
1960 |
+
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1961 |
+
"contact your host to get this function enabled."
|
1962 |
+
msgstr ""
|
1963 |
+
"WPLC:set_time_limit() nije omogućen na ovom serveru. Kao rezultat moguće je "
|
1964 |
+
"da će te imati problema koristeći WP podršku razgovorom uživo. Kontaktirajte "
|
1965 |
+
"vašeg domaćina kako bi ovu funkciju omogućili."
|
1966 |
+
|
1967 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2586
|
1968 |
+
msgid ""
|
1969 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
1970 |
+
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1971 |
+
"get safe mode disabled."
|
1972 |
+
msgstr ""
|
1973 |
+
"WPLC: Sigurnosni mod je omogućen na serveru. Kao rezultat moguće je da će te "
|
1974 |
+
"imati problema koristeći WP podršku razgovorom uživo. Kontaktirajte vašeg "
|
1975 |
+
"domaćina kako bi isključili siguronosni mod."
|
1976 |
+
|
1977 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1978 |
+
msgid "Suggested Plugins"
|
1979 |
+
msgstr "Sugerirani dodaci"
|
1980 |
+
|
1981 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2619
|
1982 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2620
|
1983 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2621
|
1984 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1985 |
+
msgid "Sola Support Tickets"
|
1986 |
+
msgstr "Sola ticketi podrške"
|
1987 |
+
|
1988 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2624
|
1989 |
+
msgid ""
|
1990 |
+
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
1991 |
+
"desk quickly and easily with Sola Support Tickets."
|
1992 |
+
msgstr ""
|
1993 |
+
"Najlakši dodatak za korištenje Podrške i dodatka Podrške ticketima. "
|
1994 |
+
"Kreirajte Podršku brzo i jednostavno koristeći Sola tickete podrške"
|
1995 |
+
|
1996 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1997 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1998 |
+
msgid "Get this Plugin"
|
1999 |
+
msgstr "Nabavite ovaj dodatak"
|
2000 |
+
|
2001 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2630
|
2002 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2631
|
2003 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2632
|
2004 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
2005 |
+
msgid "Nifty Newsletters"
|
2006 |
+
msgstr "Divni bilteni"
|
2007 |
+
|
2008 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2635
|
2009 |
+
msgid ""
|
2010 |
+
"Create and send newsletters, automatic post notifications and autoresponders "
|
2011 |
+
"that are modern and beautiful with Nifty Newsletters."
|
2012 |
+
msgstr ""
|
2013 |
+
"Kreirajte i šaljite biltene, automatske obavijesti o člancima i automatski "
|
2014 |
+
"odgovori koji su moderni i prekrasni sa Divnim biltenima"
|
2015 |
+
|
2016 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2669
|
2017 |
+
msgid "Price:"
|
2018 |
+
msgstr "Cijena: "
|
2019 |
+
|
2020 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2670
|
2021 |
+
msgid "All"
|
2022 |
+
msgstr "Sve"
|
2023 |
+
|
2024 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2671
|
2025 |
+
msgid "Free"
|
2026 |
+
msgstr "Besplatno"
|
2027 |
+
|
2028 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2672
|
2029 |
+
msgid "Paid"
|
2030 |
+
msgstr "Plaća se"
|
2031 |
+
|
2032 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2675
|
2033 |
+
msgid "For:"
|
2034 |
+
msgstr "Za:"
|
2035 |
+
|
2036 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2676
|
2037 |
+
msgid "Both"
|
2038 |
+
msgstr "Oboje"
|
2039 |
+
|
2040 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2677
|
2041 |
+
msgid "Free version"
|
2042 |
+
msgstr "Besplatna verzija"
|
2043 |
+
|
2044 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2678
|
2045 |
+
msgid "Pro version"
|
2046 |
+
msgstr "Pro verzijom"
|
2047 |
+
|
2048 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2706
|
2049 |
+
msgid "Already installed"
|
2050 |
+
msgstr "Već instaliran"
|
2051 |
+
|
2052 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2732
|
2053 |
+
msgid "WP Live Chat Support"
|
2054 |
+
msgstr "WP podrška razgovorom uživo"
|
2055 |
+
|
2056 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2735
|
2057 |
+
msgid "Documentation"
|
2058 |
+
msgstr "Dokumentacija"
|
2059 |
+
|
2060 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2737
|
2061 |
+
msgid ""
|
2062 |
+
"Getting started? Read through some of these articles to help you along your "
|
2063 |
+
"way."
|
2064 |
+
msgstr "Počinjete? Pročitajte neke od ovih članaka kako bi vam bilo lakše."
|
2065 |
+
|
2066 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2738
|
2067 |
+
msgid "Documentation:"
|
2068 |
+
msgstr "Dokumentacija:"
|
2069 |
+
|
2070 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2740
|
2071 |
+
msgid "Minimum System Requirements"
|
2072 |
+
msgstr "Minimalni zahtjevi sustava"
|
2073 |
+
|
2074 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2741
|
2075 |
+
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
2076 |
+
msgstr ""
|
2077 |
+
"Moram li biti prijavljen u kontrolnu ploču da bi mogao razgovarati sa "
|
2078 |
+
"posjetiteljima?"
|
2079 |
+
|
2080 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2742
|
2081 |
+
msgid "What are Quick Responses?"
|
2082 |
+
msgstr "Što su brzi odgovori?"
|
2083 |
+
|
2084 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2743
|
2085 |
+
msgid "Can I use this plugin on my multi-site?"
|
2086 |
+
msgstr "Mogu li koristiti ovaj dodatak na svojoj multi-stranici."
|
2087 |
+
|
2088 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2744
|
2089 |
+
msgid "How do I disable APC Object Cache?"
|
2090 |
+
msgstr "Kako mogu onemogućiti APC Object Cache?"
|
2091 |
+
|
2092 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2745
|
2093 |
+
msgid "Do you have a mobile app?"
|
2094 |
+
msgstr "Imate li mobilnu aplikaciju?"
|
2095 |
+
|
2096 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2746
|
2097 |
+
msgid "How do I check for JavaScript errors on my site?"
|
2098 |
+
msgstr "Kako mogu provjeriti greške JavaScripte na mojoj stranici?"
|
2099 |
+
|
2100 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2750
|
2101 |
+
msgid "Troubleshooting"
|
2102 |
+
msgstr "Rješavanje problema"
|
2103 |
+
|
2104 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2752
|
2105 |
+
msgid ""
|
2106 |
+
"WP Live Chat Support has a diverse and wide range of features which may, "
|
2107 |
+
"from time to time, run into conflicts with the thousands of themes and other "
|
2108 |
+
"plugins on the market."
|
2109 |
+
msgstr ""
|
2110 |
+
"WP podrška razgovorom uživo ima raznolike i široke mogućnosti, koje mogu s "
|
2111 |
+
"vremena na vrijeme, doći u konflikt sa tisućama tema i ostalih dodataka na "
|
2112 |
+
"tržistu."
|
2113 |
+
|
2114 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2753
|
2115 |
+
msgid "Common issues:"
|
2116 |
+
msgstr "Česti problemi:"
|
2117 |
+
|
2118 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2755
|
2119 |
+
msgid "The chat box doesnt show up"
|
2120 |
+
msgstr "Razgovorni okvir se ne prikazuje"
|
2121 |
+
|
2122 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2756
|
2123 |
+
msgid "The chat window disappears when I logout or go offline"
|
2124 |
+
msgstr "Prozor razgovora nestane kada se odjavim ili odem offline"
|
2125 |
+
|
2126 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2758
|
2127 |
+
msgid "Messages only show when I refresh the chat window"
|
2128 |
+
msgstr "Poruke se prikazuju jedino kada osvježim razgovorni prozor"
|
2129 |
+
|
2130 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2759
|
2131 |
+
msgid "I'm not getting any notifications of a new chat"
|
2132 |
+
msgstr "Ne dobivam nikakve obavijesti za novi razgovor"
|
2133 |
+
|
2134 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2760
|
2135 |
+
msgid "The chat window never goes offline"
|
2136 |
+
msgstr "Razgovorni prozor nikad ne ide offline"
|
2137 |
+
|
2138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2766
|
2139 |
+
msgid "Still need help? Use one of these links below."
|
2140 |
+
msgstr "Još vam treba pomoć? Posjetite jednu od poveznica ispod."
|
2141 |
+
|
2142 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2768
|
2143 |
+
msgid "Support forum"
|
2144 |
+
msgstr "Forum podrške"
|
2145 |
+
|
2146 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2769
|
2147 |
+
msgid "Contact us"
|
2148 |
+
msgstr "Kontaktirajte nas"
|
2149 |
+
|
2150 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2151 |
+
msgid "Initiate Chats"
|
2152 |
+
msgstr "Pokreni razgovore"
|
2153 |
+
|
2154 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2156 |
+
msgid "Buy the Pro add-on now (once off payment)."
|
2157 |
+
msgstr "Kupite Pro dodatak sada (jednokratna uplata)."
|
2158 |
+
|
2159 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2160 |
+
msgid "Multiple Chats"
|
2161 |
+
msgstr "Višestruki razgovori"
|
2162 |
+
|
2163 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2164 |
+
msgid "accept and handle multiple chats."
|
2165 |
+
msgstr "prihvatite i upravljajte sa više razgovora."
|
2166 |
+
|
2167 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2168 |
+
msgid "Add unlimited agents"
|
2169 |
+
msgstr "Dodajte neograničen broj agenata"
|
2170 |
+
|
2171 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2172 |
+
msgid " with the Pro add-on of WP Live Chat Support"
|
2173 |
+
msgstr "sa Pro dodatkom WP podrške razgovorom uživo"
|
2174 |
+
|
2175 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2176 |
+
msgid "(once off payment)."
|
2177 |
+
msgstr "(jednokratna uplata)."
|
2178 |
+
|
2179 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2800
|
2180 |
+
#, php-format
|
2181 |
+
msgid ""
|
2182 |
+
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</"
|
2183 |
+
"a>! Please <a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s"
|
2184 |
+
"\" target=\"_blank\">WordPress.org</a>"
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2805
|
2188 |
+
msgid "WP Live Chat Support is a product of"
|
2189 |
+
msgstr "WP podrška razgovorom uživo je proizvod"
|
languages/wplivechat-nb_NO.mo
CHANGED
Binary file
|
languages/wplivechat-nb_NO.po
CHANGED
@@ -2,16 +2,17 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplivechat\n"
|
4 |
"POT-Creation-Date: 2015-10-14 14:17+0200\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator:
|
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.
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
|
|
|
|
15 |
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
|
16 |
"live-chat-support\n"
|
17 |
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
|
@@ -19,7 +20,7 @@ msgstr ""
|
|
19 |
|
20 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:248
|
21 |
msgid "Guest"
|
22 |
-
msgstr ""
|
23 |
|
24 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:320
|
25 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:214
|
@@ -39,7 +40,7 @@ msgstr "Ingen svar. Venligst prøv igjen senere."
|
|
39 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:446
|
40 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1904
|
41 |
msgid "IP Address not recorded"
|
42 |
-
msgstr ""
|
43 |
|
44 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:52
|
45 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:171
|
@@ -49,7 +50,7 @@ msgstr ""
|
|
49 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:448
|
50 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1906
|
51 |
msgid "Whois for"
|
52 |
-
msgstr ""
|
53 |
|
54 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:57
|
55 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:329
|
@@ -57,64 +58,61 @@ msgstr ""
|
|
57 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
|
58 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1036
|
59 |
msgid "Accept Chat"
|
60 |
-
msgstr "Aksepter
|
61 |
|
62 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
63 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
64 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
65 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
66 |
-
#, fuzzy
|
67 |
msgid "Incoming Chat"
|
68 |
-
msgstr "
|
69 |
|
70 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
71 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
72 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
73 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
74 |
msgid "You have an incoming chat."
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
|
78 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
|
79 |
-
#, fuzzy
|
80 |
msgid "Open Chat"
|
81 |
-
msgstr "Åpne
|
82 |
|
83 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
84 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
85 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
86 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
87 |
-
#, fuzzy
|
88 |
msgid "Chat Active"
|
89 |
-
msgstr "
|
90 |
|
91 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
92 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
93 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
94 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
95 |
msgid "This chat is active"
|
96 |
-
msgstr ""
|
97 |
|
98 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
|
99 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:156
|
100 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:467
|
101 |
msgid "Initiate Chat"
|
102 |
-
msgstr "Start
|
103 |
|
104 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:72
|
105 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:158
|
106 |
msgid "You must be a chat agent to initiate chats"
|
107 |
-
msgstr "Du må være en chat agent for å starte
|
108 |
|
109 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
|
110 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:488
|
111 |
msgid "New"
|
112 |
-
msgstr ""
|
113 |
|
114 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:97
|
115 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:490
|
116 |
msgid "Returning"
|
117 |
-
msgstr ""
|
118 |
|
119 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
|
120 |
msgid "Visitors on site"
|
@@ -126,16 +124,15 @@ msgstr "Besøkende på siden"
|
|
126 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:326
|
127 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1929
|
128 |
msgid "Site Info"
|
129 |
-
msgstr ""
|
130 |
|
131 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
|
132 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:375
|
133 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1713
|
134 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:328
|
135 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1931
|
136 |
-
#, fuzzy
|
137 |
msgid "Chat initiated on:"
|
138 |
-
msgstr "
|
139 |
|
140 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:209
|
141 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:379
|
@@ -143,7 +140,7 @@ msgstr "Chat notifikasjoner"
|
|
143 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:332
|
144 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1935
|
145 |
msgid "Advanced Info"
|
146 |
-
msgstr ""
|
147 |
|
148 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:211
|
149 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:381
|
@@ -151,16 +148,15 @@ msgstr ""
|
|
151 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:334
|
152 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1937
|
153 |
msgid "Browser:"
|
154 |
-
msgstr ""
|
155 |
|
156 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:212
|
157 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
|
158 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1720
|
159 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:335
|
160 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1938
|
161 |
-
#, fuzzy
|
162 |
msgid "IP Address:"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:255
|
166 |
msgid "No visitors on-line at the moment"
|
@@ -173,32 +169,29 @@ msgstr "Ingen chat sesjoner tilgengelig for øyeblikket."
|
|
173 |
|
174 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:300
|
175 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:273
|
176 |
-
#, fuzzy
|
177 |
msgid "Active Chats"
|
178 |
-
msgstr "
|
179 |
|
180 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
|
181 |
msgid "You must be a chat agent to answer chats"
|
182 |
-
msgstr "Du må være en chat agent for å kunne besvare
|
183 |
|
184 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:341
|
185 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:301
|
186 |
msgid "Open Chat Window"
|
187 |
-
msgstr "Åpne
|
188 |
|
189 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
190 |
msgid "Chat has been answered by another agent"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:346
|
194 |
-
#, fuzzy
|
195 |
msgid "Chat answered by another agent"
|
196 |
-
msgstr "
|
197 |
|
198 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:404
|
199 |
-
#, fuzzy
|
200 |
msgid "WP Live Chat Support - Offline Message from "
|
201 |
-
msgstr "WP Live Chat Support - Offline
|
202 |
|
203 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
204 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:851
|
@@ -225,7 +218,7 @@ msgstr "Navn"
|
|
225 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:823
|
226 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1006
|
227 |
msgid "Email"
|
228 |
-
msgstr "
|
229 |
|
230 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
231 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:853
|
@@ -245,17 +238,17 @@ msgstr "Advarsel: Noen vil chatte med deg på "
|
|
245 |
|
246 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
247 |
msgid "Someone wants to chat with you on your website"
|
248 |
-
msgstr "Det er noen som vil chatte med deg på din
|
249 |
|
250 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
251 |
msgid "Log in"
|
252 |
-
msgstr "
|
253 |
|
254 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:631
|
255 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:647
|
256 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:662
|
257 |
msgid "Chat Agent"
|
258 |
-
msgstr "Chat
|
259 |
|
260 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
|
261 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:652
|
@@ -264,20 +257,20 @@ msgstr "Gjør denne brukeren til en chat agent"
|
|
264 |
|
265 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:666
|
266 |
msgid "Your user role does not allow you to make yourself a chat agent."
|
267 |
-
msgstr ""
|
268 |
|
269 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:667
|
270 |
msgid "Please contact the administrator of this website to change this."
|
271 |
-
msgstr ""
|
272 |
|
273 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:752
|
274 |
msgid "Chat Agent Online"
|
275 |
-
msgstr "Chat
|
276 |
|
277 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:754
|
278 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:759
|
279 |
msgid "Chat Agents Online"
|
280 |
-
msgstr "Chat
|
281 |
|
282 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:850
|
283 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:733
|
@@ -287,59 +280,57 @@ msgstr "Dato"
|
|
287 |
|
288 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:867
|
289 |
msgid "You have not received any offline messages."
|
290 |
-
msgstr ""
|
291 |
|
292 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1180
|
293 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:788
|
294 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:523
|
295 |
msgid "Administrator"
|
296 |
-
msgstr ""
|
297 |
|
298 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1181
|
299 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:794
|
300 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:529
|
301 |
msgid "Editor"
|
302 |
-
msgstr ""
|
303 |
|
304 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1182
|
305 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:800
|
306 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:535
|
307 |
msgid "Author"
|
308 |
-
msgstr ""
|
309 |
|
310 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1183
|
311 |
msgid "Contributor"
|
312 |
-
msgstr ""
|
313 |
|
314 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1184
|
315 |
msgid "Subscriber"
|
316 |
-
msgstr ""
|
317 |
|
318 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1314
|
319 |
-
#, fuzzy
|
320 |
msgid "Chat ID"
|
321 |
-
msgstr "Chat
|
322 |
|
323 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1315
|
324 |
msgid "From"
|
325 |
-
msgstr ""
|
326 |
|
327 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1317
|
328 |
msgid "Timestamp"
|
329 |
-
msgstr ""
|
330 |
|
331 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1318
|
332 |
msgid "Origin"
|
333 |
-
msgstr ""
|
334 |
|
335 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1323
|
336 |
msgid "user"
|
337 |
-
msgstr ""
|
338 |
|
339 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1325
|
340 |
-
#, fuzzy
|
341 |
msgid "agent"
|
342 |
-
msgstr "
|
343 |
|
344 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:48
|
345 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:11
|
@@ -357,27 +348,29 @@ msgstr "Kjære Pro Bruker"
|
|
357 |
msgid ""
|
358 |
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
359 |
"to do this will result in you no longer receiving updates for this plugin."
|
360 |
-
msgstr ""
|
361 |
|
362 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
363 |
msgid "You can obtain a copy of your API key "
|
364 |
-
msgstr ""
|
365 |
|
366 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
367 |
msgid "here"
|
368 |
-
msgstr ""
|
369 |
|
370 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
371 |
msgid ""
|
372 |
"An account has been created for you while purchasing the plugin. If you have "
|
373 |
"lost your password, please reset it "
|
374 |
msgstr ""
|
|
|
|
|
375 |
|
376 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:74
|
377 |
msgid ""
|
378 |
"If you feel you are getting this message in error, please try refreshing the "
|
379 |
"page."
|
380 |
-
msgstr ""
|
381 |
|
382 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
|
383 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
@@ -387,7 +380,7 @@ msgstr "Generelle innstillinger"
|
|
387 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
|
388 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
389 |
msgid "Chat Box"
|
390 |
-
msgstr "
|
391 |
|
392 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
393 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
|
@@ -411,20 +404,18 @@ msgstr "Chat agenter"
|
|
411 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
412 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
413 |
msgid "Blocked Visitors"
|
414 |
-
msgstr ""
|
415 |
|
416 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
|
417 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:830
|
418 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
419 |
-
#, fuzzy
|
420 |
msgid "Chat Experience Ratings"
|
421 |
-
msgstr "Chat
|
422 |
|
423 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
424 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
|
425 |
-
#, fuzzy
|
426 |
msgid "Encryption"
|
427 |
-
msgstr "
|
428 |
|
429 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:93
|
430 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
|
@@ -433,7 +424,7 @@ msgstr "Hovedinnstillinger"
|
|
433 |
|
434 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
|
435 |
msgid "Find out more."
|
436 |
-
msgstr ""
|
437 |
|
438 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
|
439 |
msgid "Cloud Server"
|
@@ -441,23 +432,23 @@ msgstr ""
|
|
441 |
|
442 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
|
443 |
msgid "Use our server to host your chat server."
|
444 |
-
msgstr ""
|
445 |
|
446 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:107
|
447 |
msgid "API Key"
|
448 |
-
msgstr ""
|
449 |
|
450 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
451 |
msgid "This API key is "
|
452 |
-
msgstr ""
|
453 |
|
454 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:115
|
455 |
msgid "valid"
|
456 |
-
msgstr ""
|
457 |
|
458 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
459 |
msgid "invalid"
|
460 |
-
msgstr ""
|
461 |
|
462 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:122
|
463 |
msgid ""
|
@@ -465,6 +456,8 @@ msgid ""
|
|
465 |
"plugin as and when it is released, as well as get access to support should "
|
466 |
"you require it."
|
467 |
msgstr ""
|
|
|
|
|
468 |
|
469 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
|
470 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:37
|
@@ -484,7 +477,7 @@ msgstr "Nei"
|
|
484 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
485 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
486 |
msgid "Choose when I want to be online"
|
487 |
-
msgstr ""
|
488 |
|
489 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
490 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
@@ -492,6 +485,8 @@ msgid ""
|
|
492 |
"Checking this will allow you to change your status to Online or Offline on "
|
493 |
"the Live Chat page."
|
494 |
msgstr ""
|
|
|
|
|
495 |
|
496 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
497 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:61
|
@@ -506,28 +501,29 @@ msgstr "Skjuler chat i 24 timer når brukeren klikker X"
|
|
506 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
507 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
508 |
msgid "Require Name And Email"
|
509 |
-
msgstr ""
|
510 |
|
511 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
512 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
513 |
msgid ""
|
514 |
"Users will have to enter their Name and Email Address when starting a chat"
|
515 |
msgstr ""
|
|
|
516 |
|
517 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
518 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
519 |
msgid "Input Field Replacement Text"
|
520 |
-
msgstr ""
|
521 |
|
522 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
523 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
524 |
msgid "This is the text that will show in place of the Name And Email fields"
|
525 |
-
msgstr ""
|
526 |
|
527 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
528 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
529 |
msgid "Use Logged In User Details"
|
530 |
-
msgstr ""
|
531 |
|
532 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
533 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
@@ -535,11 +531,12 @@ msgid ""
|
|
535 |
"A user's Name and Email Address will be used by default if they are logged "
|
536 |
"in."
|
537 |
msgstr ""
|
|
|
538 |
|
539 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
540 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
541 |
msgid "Enable On Mobile Devices"
|
542 |
-
msgstr ""
|
543 |
|
544 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
545 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
@@ -547,32 +544,33 @@ msgid ""
|
|
547 |
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
548 |
"devices. (Smartphones and Tablets)"
|
549 |
msgstr ""
|
|
|
550 |
|
551 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
552 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
553 |
msgid "Record a visitor's IP Address"
|
554 |
-
msgstr ""
|
555 |
|
556 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
557 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
558 |
msgid "Disable this to enable anonymity for your visitors"
|
559 |
-
msgstr ""
|
560 |
|
561 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
562 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
563 |
msgid "Play a sound when a new message is received"
|
564 |
-
msgstr ""
|
565 |
|
566 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
567 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
568 |
msgid ""
|
569 |
"Disable this to mute the sound that is played when a new chat message is "
|
570 |
"received"
|
571 |
-
msgstr ""
|
572 |
|
573 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
574 |
msgid "Include chat window on the following pages:"
|
575 |
-
msgstr ""
|
576 |
|
577 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
578 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
@@ -580,10 +578,12 @@ msgid ""
|
|
580 |
"Show the chat window on the following pages. Leave blank to show on all. "
|
581 |
"(Use comma-separated Page ID's)"
|
582 |
msgstr ""
|
|
|
|
|
583 |
|
584 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
585 |
msgid "Exclude chat window on the following pages:"
|
586 |
-
msgstr ""
|
587 |
|
588 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
589 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
@@ -591,16 +591,19 @@ msgid ""
|
|
591 |
"Do not show the chat window on the following pages. Leave blank to show on "
|
592 |
"all. (Use comma-separated Page ID's)"
|
593 |
msgstr ""
|
|
|
594 |
|
595 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
596 |
msgid "Allow any user to make themselves a chat agent"
|
597 |
-
msgstr ""
|
598 |
|
599 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
600 |
msgid ""
|
601 |
"Checking this will allow any of your users to make themselves a chat agent "
|
602 |
"when editing their profile."
|
603 |
msgstr ""
|
|
|
|
|
604 |
|
605 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:255
|
606 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
|
@@ -692,9 +695,8 @@ msgid "Chat delay (seconds)"
|
|
692 |
msgstr "Chat forsinkelser (sekunder)"
|
693 |
|
694 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
695 |
-
#, fuzzy
|
696 |
msgid "How long it takes for your chat window to pop up"
|
697 |
-
msgstr "
|
698 |
|
699 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
700 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:248
|
@@ -702,24 +704,24 @@ msgid "Chat notifications"
|
|
702 |
msgstr "Chat notifikasjoner"
|
703 |
|
704 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
705 |
-
#, fuzzy
|
706 |
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
707 |
-
msgstr "
|
|
|
708 |
|
709 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
710 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
711 |
msgid "Display name and avatar in chat"
|
712 |
-
msgstr ""
|
713 |
|
714 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
715 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
716 |
msgid "Display the agent and user name above each message in the chat window."
|
717 |
-
msgstr ""
|
718 |
|
719 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
720 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
721 |
msgid "Only show the chat window to users that are logged in"
|
722 |
-
msgstr ""
|
723 |
|
724 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
725 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
@@ -727,11 +729,12 @@ msgid ""
|
|
727 |
"By checking this, only users that are logged in will be able to chat with "
|
728 |
"you."
|
729 |
msgstr ""
|
|
|
730 |
|
731 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
732 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
733 |
msgid "Do not allow users to send offline messages"
|
734 |
-
msgstr ""
|
735 |
|
736 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
737 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
@@ -739,6 +742,8 @@ msgid ""
|
|
739 |
"The chat window will be hidden when it is offline. Users will not be able to "
|
740 |
"send offline messages to you"
|
741 |
msgstr ""
|
|
|
|
|
742 |
|
743 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
744 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
|
@@ -750,10 +755,12 @@ msgid ""
|
|
750 |
"Email address where offline messages are delivered to. Use comma separated "
|
751 |
"email addresses to send to more than one email address"
|
752 |
msgstr ""
|
|
|
|
|
753 |
|
754 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:412
|
755 |
msgid "Sending Method"
|
756 |
-
msgstr "
|
757 |
|
758 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:413
|
759 |
msgid "WP Mail"
|
@@ -781,7 +788,7 @@ msgstr "Passord"
|
|
781 |
|
782 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:463
|
783 |
msgid "Offline Chat Box Title"
|
784 |
-
msgstr "Offline
|
785 |
|
786 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:471
|
787 |
msgid "Offline Text Fields"
|
@@ -789,40 +796,40 @@ msgstr "Offline tekstfelter"
|
|
789 |
|
790 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:504
|
791 |
msgid "Choose a theme"
|
792 |
-
msgstr ""
|
793 |
|
794 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
795 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:512
|
796 |
msgid "Theme 1"
|
797 |
-
msgstr ""
|
798 |
|
799 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:515
|
800 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
801 |
msgid "Theme 2"
|
802 |
-
msgstr ""
|
803 |
|
804 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:521
|
805 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:524
|
806 |
msgid "Theme 3"
|
807 |
-
msgstr ""
|
808 |
|
809 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:527
|
810 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:530
|
811 |
msgid "Theme 4"
|
812 |
-
msgstr ""
|
813 |
|
814 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:533
|
815 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:536
|
816 |
msgid "Theme 5"
|
817 |
-
msgstr ""
|
818 |
|
819 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:539
|
820 |
msgid "Theme 6"
|
821 |
-
msgstr ""
|
822 |
|
823 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:542
|
824 |
msgid "Custom. Enter Colour Values Below"
|
825 |
-
msgstr ""
|
826 |
|
827 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
828 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
@@ -836,12 +843,11 @@ msgstr "Chat boks skrift farge"
|
|
836 |
|
837 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:581
|
838 |
msgid "I'm using a localization plugin"
|
839 |
-
msgstr ""
|
840 |
|
841 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:584
|
842 |
-
#, fuzzy
|
843 |
msgid "documentation"
|
844 |
-
msgstr "
|
845 |
|
846 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:589
|
847 |
msgid ""
|
@@ -850,6 +856,10 @@ msgid ""
|
|
850 |
"plugins as possible. <br/> For more information on how to change these "
|
851 |
"strings, please consult the "
|
852 |
msgstr ""
|
|
|
|
|
|
|
|
|
853 |
|
854 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:594
|
855 |
msgid "First Section Text"
|
@@ -873,63 +883,63 @@ msgstr "Bruker chat velkommen"
|
|
873 |
|
874 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:628
|
875 |
msgid "Other text"
|
876 |
-
msgstr "
|
877 |
|
878 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:630
|
879 |
msgid "This text is shown above the user chat input field"
|
880 |
-
msgstr ""
|
881 |
|
882 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:662
|
883 |
-
#, fuzzy
|
884 |
msgid ""
|
885 |
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
886 |
"update your plugin to allow for animations to function"
|
887 |
-
msgstr "
|
|
|
|
|
888 |
|
889 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:666
|
890 |
msgid "Choose an animation"
|
891 |
-
msgstr ""
|
892 |
|
893 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:674
|
894 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:439
|
895 |
msgid "Slide Up"
|
896 |
-
msgstr ""
|
897 |
|
898 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:680
|
899 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:443
|
900 |
msgid "Slide From The Side"
|
901 |
-
msgstr ""
|
902 |
|
903 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:686
|
904 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
905 |
msgid "Fade In"
|
906 |
-
msgstr ""
|
907 |
|
908 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:692
|
909 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
910 |
msgid "No Animation"
|
911 |
-
msgstr ""
|
912 |
|
913 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:750
|
914 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:495
|
915 |
msgid "Current Users that are Chat Agents"
|
916 |
-
msgstr ""
|
917 |
|
918 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:761
|
919 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:503
|
920 |
msgid "Online"
|
921 |
-
msgstr ""
|
922 |
|
923 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:771
|
924 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:679
|
925 |
-
#, fuzzy
|
926 |
msgid "Remove"
|
927 |
-
msgstr "Fjern
|
928 |
|
929 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:780
|
930 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:514
|
931 |
msgid "Add New Agent"
|
932 |
-
msgstr ""
|
933 |
|
934 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:782
|
935 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2805
|
@@ -940,9 +950,8 @@ msgstr "Velg"
|
|
940 |
|
941 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:804
|
942 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:539
|
943 |
-
#, fuzzy
|
944 |
msgid "Add Agent"
|
945 |
-
msgstr "
|
946 |
|
947 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:810
|
948 |
msgid ""
|
@@ -951,6 +960,10 @@ msgid ""
|
|
951 |
"Edit and scroll to the bottom of the page and enable the 'Chat Agent' "
|
952 |
"checkbox."
|
953 |
msgstr ""
|
|
|
|
|
|
|
|
|
954 |
|
955 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:811
|
956 |
msgid "If there are no chat agents online, the chat will show as offline"
|
@@ -960,12 +973,12 @@ msgstr ""
|
|
960 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:815
|
961 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:551
|
962 |
msgid "Blocked Visitors - Based on IP Address"
|
963 |
-
msgstr ""
|
964 |
|
965 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:816
|
966 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:552
|
967 |
msgid "Enter each IP Address you would like to block on a new line"
|
968 |
-
msgstr ""
|
969 |
|
970 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
|
971 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:563
|
@@ -973,22 +986,24 @@ msgid ""
|
|
973 |
"Blocking a user's IP Address here will hide the chat window from them, "
|
974 |
"preventing them from chatting with you. Each IP Address must be on a new line"
|
975 |
msgstr ""
|
|
|
|
|
976 |
|
977 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
978 |
msgid ""
|
979 |
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
980 |
msgstr ""
|
|
|
981 |
|
982 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:840
|
983 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:566
|
984 |
-
#, fuzzy
|
985 |
msgid "Chat Encryption"
|
986 |
-
msgstr "Chat
|
987 |
|
988 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
989 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
990 |
msgid "Enable Encryption"
|
991 |
-
msgstr ""
|
992 |
|
993 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
994 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
@@ -996,11 +1011,14 @@ msgid ""
|
|
996 |
"All messages will be encrypted when being sent to and from the user and "
|
997 |
"agent."
|
998 |
msgstr ""
|
|
|
999 |
|
1000 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:851
|
1001 |
msgid ""
|
1002 |
"Once enabled, all messages sent will be encrypted. This cannot be undone."
|
1003 |
msgstr ""
|
|
|
|
|
1004 |
|
1005 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:857
|
1006 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:583
|
@@ -1041,7 +1059,7 @@ msgid ""
|
|
1041 |
"href='./plugins.php'>here</a>."
|
1042 |
msgstr ""
|
1043 |
"Du kan oppdatere ditt plugin <a href='./update-core.php'>her</a> eller <a "
|
1044 |
-
"href='./plugins.php'>
|
1045 |
|
1046 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:592
|
1047 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1703
|
@@ -1059,7 +1077,7 @@ msgstr ""
|
|
1059 |
|
1060 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:617
|
1061 |
msgid "Admin"
|
1062 |
-
msgstr ""
|
1063 |
|
1064 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:621
|
1065 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:854
|
@@ -1082,9 +1100,8 @@ msgstr "Chat med oss"
|
|
1082 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:623
|
1083 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
|
1084 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1105
|
1085 |
-
#, fuzzy
|
1086 |
msgid "Start live chat"
|
1087 |
-
msgstr "Start
|
1088 |
|
1089 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:624
|
1090 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:858
|
@@ -1093,14 +1110,13 @@ msgstr "Start chat"
|
|
1093 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:840
|
1094 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1024
|
1095 |
msgid "Start Chat"
|
1096 |
-
msgstr "Start
|
1097 |
|
1098 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:625
|
1099 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:859
|
1100 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1108
|
1101 |
-
#, fuzzy
|
1102 |
msgid "Connecting. Please be patient..."
|
1103 |
-
msgstr "
|
1104 |
|
1105 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:626
|
1106 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:861
|
@@ -1109,20 +1125,20 @@ msgstr "Tilslutter deg til en salgsperson. Venligst vent."
|
|
1109 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:846
|
1110 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1030
|
1111 |
msgid "Reactivating your previous chat..."
|
1112 |
-
msgstr "Reaktiverer din tidligere chat
|
1113 |
|
1114 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:627
|
1115 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:863
|
1116 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1112
|
1117 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:310
|
1118 |
msgid "Chat offline. Leave a message"
|
1119 |
-
msgstr ""
|
1120 |
|
1121 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:628
|
1122 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:865
|
1123 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1114
|
1124 |
msgid "Hello. Please input your details so that I may help you."
|
1125 |
-
msgstr ""
|
1126 |
|
1127 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:629
|
1128 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:867
|
@@ -1133,16 +1149,16 @@ msgid ""
|
|
1133 |
"We are currently offline. Please leave a message and we'll get back to you "
|
1134 |
"shortly."
|
1135 |
msgstr ""
|
|
|
|
|
1136 |
|
1137 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:630
|
1138 |
-
#, fuzzy
|
1139 |
msgid "Sending message..."
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:631
|
1143 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:869
|
1144 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
|
1145 |
-
#, fuzzy
|
1146 |
msgid "Thank you for your message. We will be in contact soon."
|
1147 |
msgstr "Takk for din tilbakemelding. Vi vil kontakte deg."
|
1148 |
|
@@ -1159,24 +1175,23 @@ msgstr "Trykk på ENTER for å sende din melding"
|
|
1159 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:873
|
1160 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1122
|
1161 |
msgid "Welcome. How may I help you?"
|
1162 |
-
msgstr ""
|
1163 |
|
1164 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:673
|
1165 |
msgid "Rating Unavailable"
|
1166 |
-
msgstr ""
|
1167 |
|
1168 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:677
|
1169 |
msgid "You are currently accepting chats"
|
1170 |
-
msgstr ""
|
1171 |
|
1172 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:678
|
1173 |
msgid "You are not accepting chats"
|
1174 |
-
msgstr ""
|
1175 |
|
1176 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:727
|
1177 |
-
#, fuzzy
|
1178 |
msgid "Delete History"
|
1179 |
-
msgstr "
|
1180 |
|
1181 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:736
|
1182 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1256
|
@@ -1200,33 +1215,29 @@ msgid "No chats available at the moment"
|
|
1200 |
msgstr "Ingen chats tilgengelige for øyeblikket"
|
1201 |
|
1202 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
1203 |
-
#, fuzzy
|
1204 |
msgid "View Chat History"
|
1205 |
-
msgstr "
|
1206 |
|
1207 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
1208 |
-
#, fuzzy
|
1209 |
msgid "Download Chat History"
|
1210 |
-
msgstr "
|
1211 |
|
1212 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:875
|
1213 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1124
|
1214 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1304
|
1215 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2468
|
1216 |
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1217 |
-
msgstr ""
|
1218 |
|
1219 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:896
|
1220 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1146
|
1221 |
-
#, fuzzy
|
1222 |
msgid "Minimize Chat Window"
|
1223 |
-
msgstr "
|
1224 |
|
1225 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:897
|
1226 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1147
|
1227 |
-
#, fuzzy
|
1228 |
msgid "Close Chat Window"
|
1229 |
-
msgstr "
|
1230 |
|
1231 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:997
|
1232 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1235
|
@@ -1248,7 +1259,7 @@ msgstr "Dine innstillinger er lagret."
|
|
1248 |
|
1249 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1516
|
1250 |
msgid "Chat sessions"
|
1251 |
-
msgstr "
|
1252 |
|
1253 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1518
|
1254 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1794
|
@@ -1256,7 +1267,7 @@ msgid ""
|
|
1256 |
"Please note: This window must be open in order to receive new chat "
|
1257 |
"notifications."
|
1258 |
msgstr ""
|
1259 |
-
"Venligst bemerk:
|
1260 |
"chat varslinger."
|
1261 |
|
1262 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1522
|
@@ -1264,40 +1275,38 @@ msgid ""
|
|
1264 |
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1265 |
"chat to visitors"
|
1266 |
msgstr ""
|
|
|
|
|
1267 |
|
1268 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1550
|
1269 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1804
|
1270 |
-
#, fuzzy
|
1271 |
msgid "Visitors online"
|
1272 |
-
msgstr "Besøkende
|
1273 |
|
1274 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1555
|
1275 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1809
|
1276 |
-
#, fuzzy
|
1277 |
msgid "Agent(s) online"
|
1278 |
-
msgstr "
|
1279 |
|
1280 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1565
|
1281 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1819
|
1282 |
-
#, fuzzy
|
1283 |
msgid "Visitor"
|
1284 |
-
msgstr "Besøkende
|
1285 |
|
1286 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1566
|
1287 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1820
|
1288 |
msgid "Time"
|
1289 |
-
msgstr ""
|
1290 |
|
1291 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
|
1292 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1821
|
1293 |
msgid "Type"
|
1294 |
-
msgstr ""
|
1295 |
|
1296 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
|
1297 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1822
|
1298 |
-
#, fuzzy
|
1299 |
msgid "Data"
|
1300 |
-
msgstr "
|
1301 |
|
1302 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1666
|
1303 |
msgid "Unknown"
|
@@ -1310,7 +1319,7 @@ msgstr "Avslutt chat"
|
|
1310 |
|
1311 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1687
|
1312 |
msgid "Attempting to open the chat window... Please be patient."
|
1313 |
-
msgstr "Forsøker å åpne chat vinduet
|
1314 |
|
1315 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1798
|
1316 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2757
|
@@ -1343,7 +1352,7 @@ msgid ""
|
|
1343 |
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1344 |
msgstr ""
|
1345 |
"En uforventet HTTP feil skjedde under API forespørselen.</p> <p><a href=\"?"
|
1346 |
-
"\" onclick=\"document.location.reload(); return false;\">Prøv
|
1347 |
|
1348 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2482
|
1349 |
msgid "An unknown error occurred"
|
@@ -1351,23 +1360,21 @@ msgstr "En ukjent feil skjedde."
|
|
1351 |
|
1352 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1353 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1354 |
-
#, fuzzy
|
1355 |
msgid "Add-ons"
|
1356 |
-
msgstr "
|
1357 |
|
1358 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1359 |
msgid "Supplimentary Plugins"
|
1360 |
-
msgstr ""
|
1361 |
|
1362 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1363 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1364 |
-
#, fuzzy
|
1365 |
msgid "Pro add-on"
|
1366 |
msgstr "Pro Add-on"
|
1367 |
|
1368 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1369 |
msgid "Get this extension"
|
1370 |
-
msgstr ""
|
1371 |
|
1372 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2703
|
1373 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:446
|
@@ -1377,24 +1384,23 @@ msgstr "Live chat"
|
|
1377 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2704
|
1378 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:447
|
1379 |
msgid "Settings"
|
1380 |
-
msgstr "
|
1381 |
|
1382 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2705
|
1383 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2729
|
1384 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2740
|
1385 |
msgid "Quick Responses"
|
1386 |
-
msgstr "
|
1387 |
|
1388 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2706
|
1389 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:448
|
1390 |
msgid "History"
|
1391 |
-
msgstr "
|
1392 |
|
1393 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2707
|
1394 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:449
|
1395 |
-
#, fuzzy
|
1396 |
msgid "Missed Chats"
|
1397 |
-
msgstr "
|
1398 |
|
1399 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2709
|
1400 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
@@ -1404,75 +1410,73 @@ msgstr "Tilbakemelding"
|
|
1404 |
|
1405 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2711
|
1406 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:452
|
1407 |
-
#, fuzzy
|
1408 |
msgid "Extensions"
|
1409 |
-
msgstr "
|
1410 |
|
1411 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2716
|
1412 |
msgid "Error Log"
|
1413 |
msgstr "Feillog"
|
1414 |
|
1415 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2719
|
1416 |
-
#, fuzzy
|
1417 |
msgid "Statistics"
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2722
|
1421 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:451
|
1422 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2764
|
1423 |
msgid "Support"
|
1424 |
-
msgstr ""
|
1425 |
|
1426 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2730
|
1427 |
msgid "Quick Response"
|
1428 |
-
msgstr "
|
1429 |
|
1430 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2731
|
1431 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2734
|
1432 |
msgid "New Quick Response"
|
1433 |
-
msgstr "Nytt
|
1434 |
|
1435 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2732
|
1436 |
msgid "Add New Quick Response"
|
1437 |
-
msgstr "Tilføy nytt
|
1438 |
|
1439 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2733
|
1440 |
msgid "Edit Quick Response"
|
1441 |
-
msgstr "Rediger
|
1442 |
|
1443 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2735
|
1444 |
msgid "All Quick Responses"
|
1445 |
-
msgstr "Alle
|
1446 |
|
1447 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2736
|
1448 |
msgid "View Quick Responses"
|
1449 |
-
msgstr "Vis
|
1450 |
|
1451 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2737
|
1452 |
msgid "Search Quick Responses"
|
1453 |
-
msgstr "Søk i
|
1454 |
|
1455 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2738
|
1456 |
msgid "No Quick Responses found"
|
1457 |
-
msgstr "Ingen hurtig
|
1458 |
|
1459 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2739
|
1460 |
msgid "No Quick Responses found in the Trash"
|
1461 |
-
msgstr "Ingen
|
1462 |
|
1463 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2744
|
1464 |
msgid "Quick Responses for WP Live Chat Support Pro"
|
1465 |
-
msgstr "
|
1466 |
|
1467 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2798
|
1468 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2802
|
1469 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1470 |
msgid "Assign Quick Response"
|
1471 |
-
msgstr "Tildel
|
1472 |
|
1473 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2811
|
1474 |
msgid "What is this?"
|
1475 |
-
msgstr "Hva er
|
1476 |
|
1477 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:878
|
1478 |
msgid "complete"
|
@@ -1512,7 +1516,7 @@ msgstr "Få Pro add-on for å akseptere flere chats"
|
|
1512 |
|
1513 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1283
|
1514 |
msgid "You have not missed any chat requests."
|
1515 |
-
msgstr ""
|
1516 |
|
1517 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1518 |
msgid "WP Live Chat Support Feedback"
|
@@ -1552,7 +1556,7 @@ msgstr "Agenter"
|
|
1552 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
|
1553 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:255
|
1554 |
msgid "available in the"
|
1555 |
-
msgstr "tilgjengelige
|
1556 |
|
1557 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
1558 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
@@ -1586,15 +1590,15 @@ msgstr "kun"
|
|
1586 |
|
1587 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
1588 |
msgid "Include chat window on the following pages"
|
1589 |
-
msgstr ""
|
1590 |
|
1591 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
1592 |
msgid "Exclude chat window on the following pages"
|
1593 |
-
msgstr ""
|
1594 |
|
1595 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
|
1596 |
msgid "Alert me via email as soon as someone wants to chat"
|
1597 |
-
msgstr "
|
1598 |
|
1599 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:298
|
1600 |
msgid "Get offline messages with the "
|
@@ -1611,31 +1615,31 @@ msgstr "Rediger disse tekstfeltene ved hjelp av"
|
|
1611 |
|
1612 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1613 |
msgid "Choose a colour scheme. Only available in the"
|
1614 |
-
msgstr ""
|
1615 |
|
1616 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
1617 |
msgid "Colour Scheme 1"
|
1618 |
-
msgstr ""
|
1619 |
|
1620 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:351
|
1621 |
msgid "Colour Scheme 2"
|
1622 |
-
msgstr ""
|
1623 |
|
1624 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:352
|
1625 |
msgid "Colour Scheme 3"
|
1626 |
-
msgstr ""
|
1627 |
|
1628 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:353
|
1629 |
msgid "Colour Scheme 4"
|
1630 |
-
msgstr ""
|
1631 |
|
1632 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
|
1633 |
msgid "Colour Scheme 5"
|
1634 |
-
msgstr ""
|
1635 |
|
1636 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
1637 |
msgid "Colour Scheme 6"
|
1638 |
-
msgstr ""
|
1639 |
|
1640 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:375
|
1641 |
msgid "First section text"
|
@@ -1657,24 +1661,23 @@ msgstr "Reaktiver chat seksjon tekst"
|
|
1657 |
|
1658 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:431
|
1659 |
msgid "Choose an animation. Only available in the"
|
1660 |
-
msgstr ""
|
1661 |
|
1662 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:432
|
1663 |
msgid "Pro"
|
1664 |
-
msgstr ""
|
1665 |
|
1666 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1667 |
msgid "Add as many agents as you need with the "
|
1668 |
-
msgstr ""
|
1669 |
|
1670 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1671 |
-
#, fuzzy
|
1672 |
msgid "Pro version for only $19.95 once off."
|
1673 |
-
msgstr "
|
1674 |
|
1675 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:573
|
1676 |
msgid "Encrypt your chat messages in the "
|
1677 |
-
msgstr ""
|
1678 |
|
1679 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1680 |
msgid "Welcome to "
|
@@ -1682,16 +1685,15 @@ msgstr "Velkommen til"
|
|
1682 |
|
1683 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1684 |
msgid "Version 5"
|
1685 |
-
msgstr ""
|
1686 |
|
1687 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1688 |
-
#, fuzzy
|
1689 |
msgid "Provide Instant Live Chat Support!"
|
1690 |
-
msgstr "
|
1691 |
|
1692 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1693 |
msgid "How did you find us?"
|
1694 |
-
msgstr ""
|
1695 |
|
1696 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1697 |
msgid "WordPress.org plugin repository "
|
@@ -1707,7 +1709,7 @@ msgstr "Google eller andre søkemotorer"
|
|
1707 |
|
1708 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1709 |
msgid "Friend recommendation"
|
1710 |
-
msgstr "Anbefal en venn"
|
1711 |
|
1712 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1713 |
msgid "Other"
|
@@ -1728,23 +1730,24 @@ msgstr "Hopp over"
|
|
1728 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:409
|
1729 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2235
|
1730 |
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1731 |
-
msgstr ""
|
1732 |
|
1733 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:788
|
1734 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:969
|
1735 |
-
#, fuzzy
|
1736 |
msgid "Start Live Chat"
|
1737 |
-
msgstr "Start
|
1738 |
|
1739 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1247
|
1740 |
msgid "New chat received"
|
1741 |
-
msgstr ""
|
1742 |
|
1743 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1249
|
1744 |
msgid ""
|
1745 |
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
1746 |
"chat"
|
1747 |
msgstr ""
|
|
|
|
|
1748 |
|
1749 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1750 |
msgid ""
|
@@ -1771,12 +1774,11 @@ msgid ""
|
|
1771 |
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1772 |
"version/' target='_BLANK'>here</a>."
|
1773 |
msgstr ""
|
1774 |
-
"Du kan oppdatere
|
1775 |
-
"
|
1776 |
"version/' target='_BLANK'>her</a>."
|
1777 |
|
1778 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1715
|
1779 |
-
#, fuzzy
|
1780 |
msgid ""
|
1781 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1782 |
"strong>."
|
@@ -1785,58 +1787,57 @@ msgstr ""
|
|
1785 |
"Oppdater"
|
1786 |
|
1787 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1717
|
1788 |
-
#, fuzzy
|
1789 |
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1790 |
-
msgstr "
|
1791 |
|
1792 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1718
|
1793 |
msgid "Version 5.0.1"
|
1794 |
-
msgstr ""
|
1795 |
|
1796 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1719
|
1797 |
-
#, fuzzy
|
1798 |
msgid "to ensure everything is working correctly."
|
1799 |
msgstr "for å forsikre at alle funksjoner virker ordentlig."
|
1800 |
|
1801 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1750
|
1802 |
msgid "Congratulations"
|
1803 |
-
msgstr ""
|
1804 |
|
1805 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1751
|
1806 |
msgid "You are now accepting live chat requests on your site."
|
1807 |
-
msgstr ""
|
1808 |
|
1809 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1752
|
1810 |
msgid "The live chat box has automatically been enabled on your website."
|
1811 |
-
msgstr ""
|
1812 |
|
1813 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1753
|
1814 |
msgid "Chat notifications will start appearing once visitors send a request."
|
1815 |
msgstr ""
|
|
|
1816 |
|
1817 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1754
|
1818 |
msgid ""
|
1819 |
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
1820 |
"chat box settings here."
|
1821 |
msgstr ""
|
|
|
|
|
1822 |
|
1823 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1824 |
msgid "Experiencing issues?"
|
1825 |
-
msgstr ""
|
1826 |
|
1827 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1828 |
msgid "Visit our troubleshooting section."
|
1829 |
-
msgstr ""
|
1830 |
|
1831 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1757
|
1832 |
-
#, fuzzy
|
1833 |
msgid "Hide"
|
1834 |
-
msgstr "Skjul
|
1835 |
|
1836 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1791
|
1837 |
-
#, fuzzy
|
1838 |
msgid "Chat Dashboard"
|
1839 |
-
msgstr "Chat
|
1840 |
|
1841 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1831
|
1842 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
@@ -1851,9 +1852,8 @@ msgstr " se hvem som er online og starte chats"
|
|
1851 |
|
1852 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1833
|
1853 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1854 |
-
#, fuzzy
|
1855 |
msgid "initiate chats"
|
1856 |
-
msgstr "
|
1857 |
|
1858 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1834
|
1859 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
@@ -1862,13 +1862,12 @@ msgstr "med dine besøkende med et klikk på en knapp"
|
|
1862 |
|
1863 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1835
|
1864 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1837
|
1865 |
-
#, fuzzy
|
1866 |
msgid "Buy the Pro add-on now."
|
1867 |
-
msgstr "
|
1868 |
|
1869 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1898
|
1870 |
msgid "Previous"
|
1871 |
-
msgstr "
|
1872 |
|
1873 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1900
|
1874 |
msgid "Active"
|
@@ -1880,7 +1879,7 @@ msgstr "Chat med"
|
|
1880 |
|
1881 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1882 |
msgid "Add Quick Responses to your Live Chat"
|
1883 |
-
msgstr "Tilføy
|
1884 |
|
1885 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1886 |
msgid "Pro version only"
|
@@ -1888,36 +1887,32 @@ msgstr "Kun tilgjengelig i pro-versjonen."
|
|
1888 |
|
1889 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1959
|
1890 |
msgid "type here..."
|
1891 |
-
msgstr ""
|
1892 |
|
1893 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2364
|
1894 |
msgid "WP Live Chat History"
|
1895 |
-
msgstr "WP Live
|
1896 |
|
1897 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1898 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
1899 |
-
#, fuzzy
|
1900 |
msgid "This option is only available in the "
|
1901 |
-
msgstr "
|
1902 |
|
1903 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2377
|
1904 |
-
#, fuzzy
|
1905 |
msgid "WP Live Chat Missed Chats"
|
1906 |
-
msgstr "WP Live
|
1907 |
|
1908 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2385
|
1909 |
-
#, fuzzy
|
1910 |
msgid "WP Live Chat Offline Messages"
|
1911 |
-
msgstr "WP Live Chat
|
1912 |
|
1913 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2390
|
1914 |
-
#, fuzzy
|
1915 |
msgid ""
|
1916 |
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1917 |
"recording any offline messages."
|
1918 |
msgstr ""
|
1919 |
-
"
|
1920 |
-
"
|
1921 |
|
1922 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2526
|
1923 |
msgid "Thank You for your feedback!"
|
@@ -1940,6 +1935,9 @@ msgid ""
|
|
1940 |
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1941 |
"contact your host to get this function enabled."
|
1942 |
msgstr ""
|
|
|
|
|
|
|
1943 |
|
1944 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2586
|
1945 |
msgid ""
|
@@ -1947,133 +1945,136 @@ msgid ""
|
|
1947 |
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1948 |
"get safe mode disabled."
|
1949 |
msgstr ""
|
|
|
|
|
|
|
1950 |
|
1951 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1952 |
msgid "Suggested Plugins"
|
1953 |
-
msgstr ""
|
1954 |
|
1955 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2619
|
1956 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2620
|
1957 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2621
|
1958 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1959 |
msgid "Sola Support Tickets"
|
1960 |
-
msgstr ""
|
1961 |
|
1962 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2624
|
1963 |
msgid ""
|
1964 |
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
1965 |
"desk quickly and easily with Sola Support Tickets."
|
1966 |
msgstr ""
|
|
|
|
|
1967 |
|
1968 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1969 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1970 |
msgid "Get this Plugin"
|
1971 |
-
msgstr ""
|
1972 |
|
1973 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2630
|
1974 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2631
|
1975 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2632
|
1976 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1977 |
msgid "Nifty Newsletters"
|
1978 |
-
msgstr ""
|
1979 |
|
1980 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2635
|
1981 |
msgid ""
|
1982 |
"Create and send newsletters, automatic post notifications and autoresponders "
|
1983 |
"that are modern and beautiful with Nifty Newsletters."
|
1984 |
msgstr ""
|
|
|
|
|
1985 |
|
1986 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2669
|
1987 |
msgid "Price:"
|
1988 |
-
msgstr ""
|
1989 |
|
1990 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2670
|
1991 |
msgid "All"
|
1992 |
-
msgstr ""
|
1993 |
|
1994 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2671
|
1995 |
msgid "Free"
|
1996 |
-
msgstr ""
|
1997 |
|
1998 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2672
|
1999 |
msgid "Paid"
|
2000 |
-
msgstr ""
|
2001 |
|
2002 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2675
|
2003 |
msgid "For:"
|
2004 |
-
msgstr ""
|
2005 |
|
2006 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2676
|
2007 |
msgid "Both"
|
2008 |
-
msgstr ""
|
2009 |
|
2010 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2677
|
2011 |
-
#, fuzzy
|
2012 |
msgid "Free version"
|
2013 |
-
msgstr "
|
2014 |
|
2015 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2678
|
2016 |
-
#, fuzzy
|
2017 |
msgid "Pro version"
|
2018 |
-
msgstr "
|
2019 |
|
2020 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2706
|
2021 |
msgid "Already installed"
|
2022 |
-
msgstr ""
|
2023 |
|
2024 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2732
|
2025 |
-
#, fuzzy
|
2026 |
msgid "WP Live Chat Support"
|
2027 |
msgstr "Via WP Live Chat Support"
|
2028 |
|
2029 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2735
|
2030 |
-
#, fuzzy
|
2031 |
msgid "Documentation"
|
2032 |
-
msgstr "
|
2033 |
|
2034 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2737
|
2035 |
msgid ""
|
2036 |
"Getting started? Read through some of these articles to help you along your "
|
2037 |
"way."
|
2038 |
msgstr ""
|
|
|
|
|
2039 |
|
2040 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2738
|
2041 |
-
#, fuzzy
|
2042 |
msgid "Documentation:"
|
2043 |
-
msgstr "
|
2044 |
|
2045 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2740
|
2046 |
msgid "Minimum System Requirements"
|
2047 |
-
msgstr ""
|
2048 |
|
2049 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2741
|
2050 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
2051 |
-
msgstr ""
|
2052 |
|
2053 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2742
|
2054 |
-
#, fuzzy
|
2055 |
msgid "What are Quick Responses?"
|
2056 |
-
msgstr "
|
2057 |
|
2058 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2743
|
2059 |
msgid "Can I use this plugin on my multi-site?"
|
2060 |
-
msgstr ""
|
2061 |
|
2062 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2744
|
2063 |
msgid "How do I disable APC Object Cache?"
|
2064 |
-
msgstr ""
|
2065 |
|
2066 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2745
|
2067 |
msgid "Do you have a mobile app?"
|
2068 |
-
msgstr ""
|
2069 |
|
2070 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2746
|
2071 |
msgid "How do I check for JavaScript errors on my site?"
|
2072 |
-
msgstr ""
|
2073 |
|
2074 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2750
|
2075 |
msgid "Troubleshooting"
|
2076 |
-
msgstr ""
|
2077 |
|
2078 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2752
|
2079 |
msgid ""
|
@@ -2081,76 +2082,74 @@ msgid ""
|
|
2081 |
"from time to time, run into conflicts with the thousands of themes and other "
|
2082 |
"plugins on the market."
|
2083 |
msgstr ""
|
|
|
|
|
|
|
2084 |
|
2085 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2753
|
2086 |
msgid "Common issues:"
|
2087 |
-
msgstr ""
|
2088 |
|
2089 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2755
|
2090 |
msgid "The chat box doesnt show up"
|
2091 |
-
msgstr ""
|
2092 |
|
2093 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2756
|
2094 |
msgid "The chat window disappears when I logout or go offline"
|
2095 |
-
msgstr ""
|
2096 |
|
2097 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2758
|
2098 |
-
#, fuzzy
|
2099 |
msgid "Messages only show when I refresh the chat window"
|
2100 |
-
msgstr "
|
2101 |
|
2102 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2759
|
2103 |
msgid "I'm not getting any notifications of a new chat"
|
2104 |
-
msgstr ""
|
2105 |
|
2106 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2760
|
2107 |
msgid "The chat window never goes offline"
|
2108 |
-
msgstr ""
|
2109 |
|
2110 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2766
|
2111 |
msgid "Still need help? Use one of these links below."
|
2112 |
-
msgstr ""
|
2113 |
|
2114 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2768
|
2115 |
msgid "Support forum"
|
2116 |
-
msgstr ""
|
2117 |
|
2118 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2769
|
2119 |
msgid "Contact us"
|
2120 |
-
msgstr ""
|
2121 |
|
2122 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2123 |
-
#, fuzzy
|
2124 |
msgid "Initiate Chats"
|
2125 |
-
msgstr "
|
2126 |
|
2127 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2128 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2129 |
-
#, fuzzy
|
2130 |
msgid "Buy the Pro add-on now (once off payment)."
|
2131 |
-
msgstr "
|
2132 |
|
2133 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2134 |
-
#, fuzzy
|
2135 |
msgid "Multiple Chats"
|
2136 |
-
msgstr "
|
2137 |
|
2138 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2139 |
msgid "accept and handle multiple chats."
|
2140 |
-
msgstr ""
|
2141 |
|
2142 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2143 |
msgid "Add unlimited agents"
|
2144 |
-
msgstr ""
|
2145 |
|
2146 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2147 |
-
#, fuzzy
|
2148 |
msgid " with the Pro add-on of WP Live Chat Support"
|
2149 |
-
msgstr "Med Pro add-on af WP Live Chat Support
|
2150 |
|
2151 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2152 |
msgid "(once off payment)."
|
2153 |
-
msgstr ""
|
2154 |
|
2155 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2800
|
2156 |
#, php-format
|
@@ -2159,40 +2158,10 @@ msgid ""
|
|
2159 |
"a>! Please <a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s"
|
2160 |
"\" target=\"_blank\">WordPress.org</a>"
|
2161 |
msgstr ""
|
|
|
|
|
|
|
2162 |
|
2163 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2805
|
2164 |
-
#, fuzzy
|
2165 |
msgid "WP Live Chat Support is a product of"
|
2166 |
-
msgstr "
|
2167 |
-
|
2168 |
-
#~ msgid "Experiencing problems with the plugin?"
|
2169 |
-
#~ msgstr "Opplever du problemer med denne pluginen?"
|
2170 |
-
|
2171 |
-
#~ msgid "Or ask a question on our"
|
2172 |
-
#~ msgstr "Eller still et spørsmål på våres"
|
2173 |
-
|
2174 |
-
#~ msgid ""
|
2175 |
-
#~ "Buy the Pro add-on now for only $29.95 once off. Free Updates Forever."
|
2176 |
-
#~ msgstr "Køp Pro add-on nå for kun $29,95. Gratis oppdateringer FOR ALLTID."
|
2177 |
-
|
2178 |
-
#~ msgid "Get"
|
2179 |
-
#~ msgstr "Få"
|
2180 |
-
|
2181 |
-
#~ msgid "Multiple agent support"
|
2182 |
-
#~ msgstr "Support for flere agenter"
|
2183 |
-
|
2184 |
-
#~ msgid "Chat has been Accepted By Chat Agent "
|
2185 |
-
#~ msgstr "Chat har blitt akseptert av chat agenten"
|
2186 |
-
|
2187 |
-
#~ msgid "(while online only)"
|
2188 |
-
#~ msgstr "(kun imens online)"
|
2189 |
-
|
2190 |
-
#~ msgid "Email address where offline messages are delivered to"
|
2191 |
-
#~ msgstr "Epost addresse hvor offline meldinger blir sendt til"
|
2192 |
-
|
2193 |
-
#~ msgid ""
|
2194 |
-
#~ "To add or remove a user as a chat agent, go into the users profile and "
|
2195 |
-
#~ "select the checkbox Chat Agent and click save."
|
2196 |
-
#~ msgstr ""
|
2197 |
-
#~ "Hvis du vil tilføye eller fjerne en bruker som en chat agent, gå inn i "
|
2198 |
-
#~ "brukerens profil, og velg avkrysningsfeltet Chat Agent og klikk på Lagre."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wplivechat\n"
|
4 |
"POT-Creation-Date: 2015-10-14 14:17+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-03-15 01:36+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.8.1\n"
|
12 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"Language: nb_NO\n"
|
16 |
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
|
17 |
"live-chat-support\n"
|
18 |
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
|
20 |
|
21 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:248
|
22 |
msgid "Guest"
|
23 |
+
msgstr "Gjest"
|
24 |
|
25 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:320
|
26 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:214
|
40 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:446
|
41 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1904
|
42 |
msgid "IP Address not recorded"
|
43 |
+
msgstr "IP adresse ikke logget"
|
44 |
|
45 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:52
|
46 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:171
|
50 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:448
|
51 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1906
|
52 |
msgid "Whois for"
|
53 |
+
msgstr "Whois for"
|
54 |
|
55 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:57
|
56 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:329
|
58 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:453
|
59 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1036
|
60 |
msgid "Accept Chat"
|
61 |
+
msgstr "Aksepter samtale"
|
62 |
|
63 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
64 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
65 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
66 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
|
|
67 |
msgid "Incoming Chat"
|
68 |
+
msgstr "Innkommende samtale"
|
69 |
|
70 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:59
|
71 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:331
|
72 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:297
|
73 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:455
|
74 |
msgid "You have an incoming chat."
|
75 |
+
msgstr "Du har en innkommende samtale"
|
76 |
|
77 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:63
|
78 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:462
|
|
|
79 |
msgid "Open Chat"
|
80 |
+
msgstr "Åpne samtale"
|
81 |
|
82 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
83 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
84 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
85 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
|
|
86 |
msgid "Chat Active"
|
87 |
+
msgstr "Samtale aktiv"
|
88 |
|
89 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:65
|
90 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:343
|
91 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:303
|
92 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:464
|
93 |
msgid "This chat is active"
|
94 |
+
msgstr "Denne samtalen er aktiv"
|
95 |
|
96 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:70
|
97 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:156
|
98 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:467
|
99 |
msgid "Initiate Chat"
|
100 |
+
msgstr "Start samtale"
|
101 |
|
102 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:72
|
103 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:158
|
104 |
msgid "You must be a chat agent to initiate chats"
|
105 |
+
msgstr "Du må være en chat agent for å starte samtaler"
|
106 |
|
107 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
|
108 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:488
|
109 |
msgid "New"
|
110 |
+
msgstr "Ny"
|
111 |
|
112 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:97
|
113 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:490
|
114 |
msgid "Returning"
|
115 |
+
msgstr "Returnerer"
|
116 |
|
117 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
|
118 |
msgid "Visitors on site"
|
124 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:326
|
125 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1929
|
126 |
msgid "Site Info"
|
127 |
+
msgstr "Sidenfo"
|
128 |
|
129 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
|
130 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:375
|
131 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1713
|
132 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:328
|
133 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1931
|
|
|
134 |
msgid "Chat initiated on:"
|
135 |
+
msgstr "Samtale startet den: "
|
136 |
|
137 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:209
|
138 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:379
|
140 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:332
|
141 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1935
|
142 |
msgid "Advanced Info"
|
143 |
+
msgstr "Avansert info"
|
144 |
|
145 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:211
|
146 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:381
|
148 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:334
|
149 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1937
|
150 |
msgid "Browser:"
|
151 |
+
msgstr "Nettleser:"
|
152 |
|
153 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:212
|
154 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:382
|
155 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1720
|
156 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:335
|
157 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1938
|
|
|
158 |
msgid "IP Address:"
|
159 |
+
msgstr "IP adresse: "
|
160 |
|
161 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:255
|
162 |
msgid "No visitors on-line at the moment"
|
169 |
|
170 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:300
|
171 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:273
|
|
|
172 |
msgid "Active Chats"
|
173 |
+
msgstr "Aktive samtaler"
|
174 |
|
175 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:335
|
176 |
msgid "You must be a chat agent to answer chats"
|
177 |
+
msgstr "Du må være en chat agent for å kunne besvare samtaler."
|
178 |
|
179 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:341
|
180 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:301
|
181 |
msgid "Open Chat Window"
|
182 |
+
msgstr "Åpne samtalevindu"
|
183 |
|
184 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
185 |
msgid "Chat has been answered by another agent"
|
186 |
+
msgstr "Samtalen ble besvart av en annen agent."
|
187 |
|
188 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:346
|
|
|
189 |
msgid "Chat answered by another agent"
|
190 |
+
msgstr "Samtalen ble besvart av en annen agent."
|
191 |
|
192 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:404
|
|
|
193 |
msgid "WP Live Chat Support - Offline Message from "
|
194 |
+
msgstr "WP Live Chat Support - Offline meldingsskjema "
|
195 |
|
196 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
197 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:851
|
218 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:823
|
219 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1006
|
220 |
msgid "Email"
|
221 |
+
msgstr "E-post"
|
222 |
|
223 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:405
|
224 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:853
|
238 |
|
239 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
240 |
msgid "Someone wants to chat with you on your website"
|
241 |
+
msgstr "Det er noen som vil chatte med deg på din nettside"
|
242 |
|
243 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:458
|
244 |
msgid "Log in"
|
245 |
+
msgstr "Logg inn"
|
246 |
|
247 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:631
|
248 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:647
|
249 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:662
|
250 |
msgid "Chat Agent"
|
251 |
+
msgstr "Chat agent"
|
252 |
|
253 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:636
|
254 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:652
|
257 |
|
258 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:666
|
259 |
msgid "Your user role does not allow you to make yourself a chat agent."
|
260 |
+
msgstr "Din brukerrolle aksepterer ikke at du gjør deg til chat-agent. "
|
261 |
|
262 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:667
|
263 |
msgid "Please contact the administrator of this website to change this."
|
264 |
+
msgstr "Vennligst kontakt administrator for å endre dette."
|
265 |
|
266 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:752
|
267 |
msgid "Chat Agent Online"
|
268 |
+
msgstr "Chat agent online"
|
269 |
|
270 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:754
|
271 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:759
|
272 |
msgid "Chat Agents Online"
|
273 |
+
msgstr "Chat agenter online "
|
274 |
|
275 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:850
|
276 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:733
|
280 |
|
281 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:867
|
282 |
msgid "You have not received any offline messages."
|
283 |
+
msgstr "Du har ikke mottatt noen offline-meldinger"
|
284 |
|
285 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1180
|
286 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:788
|
287 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:523
|
288 |
msgid "Administrator"
|
289 |
+
msgstr "Administrator"
|
290 |
|
291 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1181
|
292 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:794
|
293 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:529
|
294 |
msgid "Editor"
|
295 |
+
msgstr "Redaktør"
|
296 |
|
297 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1182
|
298 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:800
|
299 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:535
|
300 |
msgid "Author"
|
301 |
+
msgstr "Forfatter"
|
302 |
|
303 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1183
|
304 |
msgid "Contributor"
|
305 |
+
msgstr "Redaktør"
|
306 |
|
307 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1184
|
308 |
msgid "Subscriber"
|
309 |
+
msgstr "Abbonent "
|
310 |
|
311 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1314
|
|
|
312 |
msgid "Chat ID"
|
313 |
+
msgstr "Chat ID"
|
314 |
|
315 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1315
|
316 |
msgid "From"
|
317 |
+
msgstr "Fra"
|
318 |
|
319 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1317
|
320 |
msgid "Timestamp"
|
321 |
+
msgstr "Tidsintervall "
|
322 |
|
323 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1318
|
324 |
msgid "Origin"
|
325 |
+
msgstr "Region"
|
326 |
|
327 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1323
|
328 |
msgid "user"
|
329 |
+
msgstr "bruker"
|
330 |
|
331 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1325
|
|
|
332 |
msgid "agent"
|
333 |
+
msgstr "agent"
|
334 |
|
335 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:48
|
336 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:11
|
348 |
msgid ""
|
349 |
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
350 |
"to do this will result in you no longer receiving updates for this plugin."
|
351 |
+
msgstr "Vennlist legg inn en valid API nøkkel på Live Chat -> Settings."
|
352 |
|
353 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
354 |
msgid "You can obtain a copy of your API key "
|
355 |
+
msgstr "Du kan få en kopi av din API nøkkel"
|
356 |
|
357 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
358 |
msgid "here"
|
359 |
+
msgstr "her"
|
360 |
|
361 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:73
|
362 |
msgid ""
|
363 |
"An account has been created for you while purchasing the plugin. If you have "
|
364 |
"lost your password, please reset it "
|
365 |
msgstr ""
|
366 |
+
"En konto har blitt opprettet for å betale tillegget. Hvis du har mistet ditt "
|
367 |
+
"passord, vennligst reset det."
|
368 |
|
369 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:74
|
370 |
msgid ""
|
371 |
"If you feel you are getting this message in error, please try refreshing the "
|
372 |
"page."
|
373 |
+
msgstr "Hvis du får denne feilmeldingen ved en feil, vennligst prøv igjen."
|
374 |
|
375 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
|
376 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
380 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
|
381 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
382 |
msgid "Chat Box"
|
383 |
+
msgstr "Chatteboks"
|
384 |
|
385 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:85
|
386 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:383
|
404 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:88
|
405 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
406 |
msgid "Blocked Visitors"
|
407 |
+
msgstr "Blokkerte brukere"
|
408 |
|
409 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:89
|
410 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:830
|
411 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
|
|
412 |
msgid "Chat Experience Ratings"
|
413 |
+
msgstr "Chat rangering "
|
414 |
|
415 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
416 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:31
|
|
|
417 |
msgid "Encryption"
|
418 |
+
msgstr "Kryptering"
|
419 |
|
420 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:93
|
421 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
|
424 |
|
425 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
|
426 |
msgid "Find out more."
|
427 |
+
msgstr "Finn ut mer"
|
428 |
|
429 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:98
|
430 |
msgid "Cloud Server"
|
432 |
|
433 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:103
|
434 |
msgid "Use our server to host your chat server."
|
435 |
+
msgstr "Bruk vår server til å hoste din chat-server."
|
436 |
|
437 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:107
|
438 |
msgid "API Key"
|
439 |
+
msgstr "API nøkkel"
|
440 |
|
441 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
442 |
msgid "This API key is "
|
443 |
+
msgstr "Denne API nøkkelen er"
|
444 |
|
445 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:115
|
446 |
msgid "valid"
|
447 |
+
msgstr "godkjent"
|
448 |
|
449 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
450 |
msgid "invalid"
|
451 |
+
msgstr "feil"
|
452 |
|
453 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:122
|
454 |
msgid ""
|
456 |
"plugin as and when it is released, as well as get access to support should "
|
457 |
"you require it."
|
458 |
msgstr ""
|
459 |
+
"En godkjent API nøkkel betyr at du får tilgang til siste versjoner av "
|
460 |
+
"tillegget når de lanseres. "
|
461 |
|
462 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:130
|
463 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:37
|
477 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
478 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
479 |
msgid "Choose when I want to be online"
|
480 |
+
msgstr "Velg når jeg ønsker å være online"
|
481 |
|
482 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:144
|
483 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
485 |
"Checking this will allow you to change your status to Online or Offline on "
|
486 |
"the Live Chat page."
|
487 |
msgstr ""
|
488 |
+
"Merker du dette vil du kunne endre statusen til Online eller Offline på Live-"
|
489 |
+
"chat siden."
|
490 |
|
491 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:154
|
492 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:61
|
501 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
502 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
503 |
msgid "Require Name And Email"
|
504 |
+
msgstr "Påkrev Navn og E-post"
|
505 |
|
506 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:162
|
507 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:77
|
508 |
msgid ""
|
509 |
"Users will have to enter their Name and Email Address when starting a chat"
|
510 |
msgstr ""
|
511 |
+
"Brukere må skrive inn sitt navn og E-post adresse for å starte samtale. "
|
512 |
|
513 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
514 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
515 |
msgid "Input Field Replacement Text"
|
516 |
+
msgstr "Tekstfelt erstattningstekst "
|
517 |
|
518 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:172
|
519 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:85
|
520 |
msgid "This is the text that will show in place of the Name And Email fields"
|
521 |
+
msgstr "Denne teksten vil synes der Navn og e-post legges inn."
|
522 |
|
523 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
524 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
525 |
msgid "Use Logged In User Details"
|
526 |
+
msgstr "Bruk innloggede brukerdetaljer"
|
527 |
|
528 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
529 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:93
|
531 |
"A user's Name and Email Address will be used by default if they are logged "
|
532 |
"in."
|
533 |
msgstr ""
|
534 |
+
"En brukers navn og e-post vil bli brukt som standard hvis de er logget inn."
|
535 |
|
536 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
537 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
538 |
msgid "Enable On Mobile Devices"
|
539 |
+
msgstr "Aktiver på mobilenheter"
|
540 |
|
541 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:193
|
542 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:101
|
544 |
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
545 |
"devices. (Smartphones and Tablets)"
|
546 |
msgstr ""
|
547 |
+
"Dette gjør at din chat vil synes på mobile enheter (Mobiler og nettbrett)"
|
548 |
|
549 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
550 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
551 |
msgid "Record a visitor's IP Address"
|
552 |
+
msgstr "Logg en besøkendes IP adresse"
|
553 |
|
554 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:203
|
555 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
556 |
msgid "Disable this to enable anonymity for your visitors"
|
557 |
+
msgstr "Deaktiver denne for å aktivere anonymitet for dine besøkende"
|
558 |
|
559 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
560 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
561 |
msgid "Play a sound when a new message is received"
|
562 |
+
msgstr "Spill en lyd når en ny melding mottas "
|
563 |
|
564 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:213
|
565 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
566 |
msgid ""
|
567 |
"Disable this to mute the sound that is played when a new chat message is "
|
568 |
"received"
|
569 |
+
msgstr "Deaktiver denne hvis du vil slå av lyden når en ny melding mottas."
|
570 |
|
571 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
572 |
msgid "Include chat window on the following pages:"
|
573 |
+
msgstr "Inkluder samtalevindu på følgende sider:"
|
574 |
|
575 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
576 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
578 |
"Show the chat window on the following pages. Leave blank to show on all. "
|
579 |
"(Use comma-separated Page ID's)"
|
580 |
msgstr ""
|
581 |
+
"Vis samtalevinduet på følgende sider. Forlat blankt for å vise på alle. "
|
582 |
+
"(Bruk komma på side IDer)"
|
583 |
|
584 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
585 |
msgid "Exclude chat window on the following pages:"
|
586 |
+
msgstr "Ekskluder samtalevindu på følgende sider"
|
587 |
|
588 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:232
|
589 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
591 |
"Do not show the chat window on the following pages. Leave blank to show on "
|
592 |
"all. (Use comma-separated Page ID's)"
|
593 |
msgstr ""
|
594 |
+
"Ikke vis samtalevindu på følgende sider. Forlat blankt for å vise på alle. "
|
595 |
|
596 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
597 |
msgid "Allow any user to make themselves a chat agent"
|
598 |
+
msgstr "Tillat alle brukere å gjøre de til chat-agenter. "
|
599 |
|
600 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
601 |
msgid ""
|
602 |
"Checking this will allow any of your users to make themselves a chat agent "
|
603 |
"when editing their profile."
|
604 |
msgstr ""
|
605 |
+
"Merking av denne vil gjøre at alle typer brukere kan gjøre seg til chat-"
|
606 |
+
"agenter. "
|
607 |
|
608 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:255
|
609 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
|
695 |
msgstr "Chat forsinkelser (sekunder)"
|
696 |
|
697 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:337
|
|
|
698 |
msgid "How long it takes for your chat window to pop up"
|
699 |
+
msgstr "Tiden det tar før samtalevinduet skal dukke opp"
|
700 |
|
701 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
702 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:248
|
704 |
msgstr "Chat notifikasjoner"
|
705 |
|
706 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
|
|
707 |
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
708 |
+
msgstr ""
|
709 |
+
"Varsle meg via e-post så snart noen ønsker å chatte (når jeg er online)"
|
710 |
|
711 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
712 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
713 |
msgid "Display name and avatar in chat"
|
714 |
+
msgstr "Vis navn og avatar i samtale"
|
715 |
|
716 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:356
|
717 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:264
|
718 |
msgid "Display the agent and user name above each message in the chat window."
|
719 |
+
msgstr "Vis agenten og bruernavn over hver beskjed i chattevindu"
|
720 |
|
721 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
722 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
723 |
msgid "Only show the chat window to users that are logged in"
|
724 |
+
msgstr "Vis kun chat for brukere som er innlogget. "
|
725 |
|
726 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:368
|
727 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:274
|
729 |
"By checking this, only users that are logged in will be able to chat with "
|
730 |
"you."
|
731 |
msgstr ""
|
732 |
+
"Dette betyr at kun innloggede brukere har mulighet til å starte en samtale. "
|
733 |
|
734 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
735 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
736 |
msgid "Do not allow users to send offline messages"
|
737 |
+
msgstr "Slå av mulighet for brukere til å sende offline beskjeder"
|
738 |
|
739 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:387
|
740 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:321
|
742 |
"The chat window will be hidden when it is offline. Users will not be able to "
|
743 |
"send offline messages to you"
|
744 |
msgstr ""
|
745 |
+
"Chatten vil bli skjult når den er offline og brukere kan ikke sende offline-"
|
746 |
+
"melding til deg."
|
747 |
|
748 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:399
|
749 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:292
|
755 |
"Email address where offline messages are delivered to. Use comma separated "
|
756 |
"email addresses to send to more than one email address"
|
757 |
msgstr ""
|
758 |
+
"E-mail adressen offline-meldinger skal sendes til. Bruk komma for fler "
|
759 |
+
"adresser."
|
760 |
|
761 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:412
|
762 |
msgid "Sending Method"
|
763 |
+
msgstr "Sendingsmetode"
|
764 |
|
765 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:413
|
766 |
msgid "WP Mail"
|
788 |
|
789 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:463
|
790 |
msgid "Offline Chat Box Title"
|
791 |
+
msgstr "Offline chatteboks tittel"
|
792 |
|
793 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:471
|
794 |
msgid "Offline Text Fields"
|
796 |
|
797 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:504
|
798 |
msgid "Choose a theme"
|
799 |
+
msgstr "Velg et tema"
|
800 |
|
801 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
802 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:512
|
803 |
msgid "Theme 1"
|
804 |
+
msgstr "Tema1"
|
805 |
|
806 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:515
|
807 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
808 |
msgid "Theme 2"
|
809 |
+
msgstr "Tema2"
|
810 |
|
811 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:521
|
812 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:524
|
813 |
msgid "Theme 3"
|
814 |
+
msgstr "Tema3"
|
815 |
|
816 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:527
|
817 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:530
|
818 |
msgid "Theme 4"
|
819 |
+
msgstr "Tema4"
|
820 |
|
821 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:533
|
822 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:536
|
823 |
msgid "Theme 5"
|
824 |
+
msgstr "Tema5"
|
825 |
|
826 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:539
|
827 |
msgid "Theme 6"
|
828 |
+
msgstr "Tema6"
|
829 |
|
830 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:542
|
831 |
msgid "Custom. Enter Colour Values Below"
|
832 |
+
msgstr "Valg. Velg fargevalg under. "
|
833 |
|
834 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
835 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
843 |
|
844 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:581
|
845 |
msgid "I'm using a localization plugin"
|
846 |
+
msgstr "Jeg bruker et lokaliserings tillegg. "
|
847 |
|
848 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:584
|
|
|
849 |
msgid "documentation"
|
850 |
+
msgstr "Dokumentasjon"
|
851 |
|
852 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:589
|
853 |
msgid ""
|
856 |
"plugins as possible. <br/> For more information on how to change these "
|
857 |
"strings, please consult the "
|
858 |
msgstr ""
|
859 |
+
"Du vil bare være i stand til å redigere strengene som vises i chat-vinduet "
|
860 |
+
"av koden nå . <br/> Dette er gjort for å få plass til så mange lokaliserings "
|
861 |
+
"plugins som mulig. <br/> For mer informasjon om hvordan du endrer disse "
|
862 |
+
"strengene , ta kontakt med"
|
863 |
|
864 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:594
|
865 |
msgid "First Section Text"
|
883 |
|
884 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:628
|
885 |
msgid "Other text"
|
886 |
+
msgstr "Annen tekst"
|
887 |
|
888 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:630
|
889 |
msgid "This text is shown above the user chat input field"
|
890 |
+
msgstr "Denne teksten vises over brukeren chat inntastingsfeltet"
|
891 |
|
892 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:662
|
|
|
893 |
msgid ""
|
894 |
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
895 |
"update your plugin to allow for animations to function"
|
896 |
+
msgstr ""
|
897 |
+
"Du bruker en utdatert versjon av WP Live Chat Support Basic. Vennligst "
|
898 |
+
"oppdater din plugin for å tillate animasjoner. "
|
899 |
|
900 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:666
|
901 |
msgid "Choose an animation"
|
902 |
+
msgstr "Velg en animasjon"
|
903 |
|
904 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:674
|
905 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:439
|
906 |
msgid "Slide Up"
|
907 |
+
msgstr "Slide opp"
|
908 |
|
909 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:680
|
910 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:443
|
911 |
msgid "Slide From The Side"
|
912 |
+
msgstr "Slide fra siden"
|
913 |
|
914 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:686
|
915 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
916 |
msgid "Fade In"
|
917 |
+
msgstr "Fade inn"
|
918 |
|
919 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:692
|
920 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
921 |
msgid "No Animation"
|
922 |
+
msgstr "Ingen animasjon"
|
923 |
|
924 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:750
|
925 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:495
|
926 |
msgid "Current Users that are Chat Agents"
|
927 |
+
msgstr "Disse brukerne er chat-agenter"
|
928 |
|
929 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:761
|
930 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:503
|
931 |
msgid "Online"
|
932 |
+
msgstr "Pålogget"
|
933 |
|
934 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:771
|
935 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:679
|
|
|
936 |
msgid "Remove"
|
937 |
+
msgstr "Fjern"
|
938 |
|
939 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:780
|
940 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:514
|
941 |
msgid "Add New Agent"
|
942 |
+
msgstr "Legg til ny agent"
|
943 |
|
944 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:782
|
945 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2805
|
950 |
|
951 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:804
|
952 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:539
|
|
|
953 |
msgid "Add Agent"
|
954 |
+
msgstr "Legg til agent"
|
955 |
|
956 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:810
|
957 |
msgid ""
|
960 |
"Edit and scroll to the bottom of the page and enable the 'Chat Agent' "
|
961 |
"checkbox."
|
962 |
msgstr ""
|
963 |
+
"Skulle du ønske å legge til en bruker som har en rolle under ‘ Forfatter ‘ , "
|
964 |
+
"kan du gå til <a href=‘./users.php’> Brukere </a> siden velger den aktuelle "
|
965 |
+
"brukeren , klikker du på Rediger og bla til nederst på siden og aktivere « "
|
966 |
+
"Chat Agent « boksen ."
|
967 |
|
968 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:811
|
969 |
msgid "If there are no chat agents online, the chat will show as offline"
|
973 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:815
|
974 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:551
|
975 |
msgid "Blocked Visitors - Based on IP Address"
|
976 |
+
msgstr "Blokkerte besøkende - Basert på IP adresser"
|
977 |
|
978 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:816
|
979 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:552
|
980 |
msgid "Enter each IP Address you would like to block on a new line"
|
981 |
+
msgstr "Skriv inn hver IP-adresse du ønsker å blokkere på en ny linje"
|
982 |
|
983 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:827
|
984 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:563
|
986 |
"Blocking a user's IP Address here will hide the chat window from them, "
|
987 |
"preventing them from chatting with you. Each IP Address must be on a new line"
|
988 |
msgstr ""
|
989 |
+
"Blokkerer en brukers IP-adresse her vil skjule chattevinduet fra dem , og "
|
990 |
+
"hindre dem fra å chatte med deg. Hver IP-adresse må være på en ny linje"
|
991 |
|
992 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:836
|
993 |
msgid ""
|
994 |
"are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
995 |
msgstr ""
|
996 |
+
"er kun tilgjengelig i WP Live Chat Support Chat Experience Ratings add-on"
|
997 |
|
998 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:840
|
999 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:566
|
|
|
1000 |
msgid "Chat Encryption"
|
1001 |
+
msgstr "Chat kryptering"
|
1002 |
|
1003 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1004 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
1005 |
msgid "Enable Encryption"
|
1006 |
+
msgstr "Slå på kryptering"
|
1007 |
|
1008 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:843
|
1009 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:569
|
1011 |
"All messages will be encrypted when being sent to and from the user and "
|
1012 |
"agent."
|
1013 |
msgstr ""
|
1014 |
+
"Alle meldinger blir kryptert når de sendes til og fra brukeren og agent."
|
1015 |
|
1016 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:851
|
1017 |
msgid ""
|
1018 |
"Once enabled, all messages sent will be encrypted. This cannot be undone."
|
1019 |
msgstr ""
|
1020 |
+
"Når den er aktivert , vil alle meldinger som sendes kryptert. Dette kan ikke "
|
1021 |
+
"angres."
|
1022 |
|
1023 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:857
|
1024 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:583
|
1059 |
"href='./plugins.php'>here</a>."
|
1060 |
msgstr ""
|
1061 |
"Du kan oppdatere ditt plugin <a href='./update-core.php'>her</a> eller <a "
|
1062 |
+
"href='./plugins.php'>here</a>."
|
1063 |
|
1064 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:592
|
1065 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1703
|
1077 |
|
1078 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:617
|
1079 |
msgid "Admin"
|
1080 |
+
msgstr "Administrator"
|
1081 |
|
1082 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:621
|
1083 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:854
|
1100 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:623
|
1101 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:856
|
1102 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1105
|
|
|
1103 |
msgid "Start live chat"
|
1104 |
+
msgstr "Start samtale"
|
1105 |
|
1106 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:624
|
1107 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:858
|
1110 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:840
|
1111 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1024
|
1112 |
msgid "Start Chat"
|
1113 |
+
msgstr "Start samtale"
|
1114 |
|
1115 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:625
|
1116 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:859
|
1117 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1108
|
|
|
1118 |
msgid "Connecting. Please be patient..."
|
1119 |
+
msgstr "Kobler til. Vennligst vent litt…"
|
1120 |
|
1121 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:626
|
1122 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:861
|
1125 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:846
|
1126 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1030
|
1127 |
msgid "Reactivating your previous chat..."
|
1128 |
+
msgstr "Reaktiverer din tidligere chat…"
|
1129 |
|
1130 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:627
|
1131 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:863
|
1132 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1112
|
1133 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:310
|
1134 |
msgid "Chat offline. Leave a message"
|
1135 |
+
msgstr "Chat offline. Legg igjen en beskjed. "
|
1136 |
|
1137 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:628
|
1138 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:865
|
1139 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1114
|
1140 |
msgid "Hello. Please input your details so that I may help you."
|
1141 |
+
msgstr "Hallo. Vennligst skriv din informasjon slik at jeg kan hjelpe deg."
|
1142 |
|
1143 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:629
|
1144 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:867
|
1149 |
"We are currently offline. Please leave a message and we'll get back to you "
|
1150 |
"shortly."
|
1151 |
msgstr ""
|
1152 |
+
"Vi er for øyeblikket frakoblet. Vennligst legg igjen en beskjed og vi vil "
|
1153 |
+
"komme tilbake til deg snart."
|
1154 |
|
1155 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:630
|
|
|
1156 |
msgid "Sending message..."
|
1157 |
+
msgstr "Sender melding…"
|
1158 |
|
1159 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:631
|
1160 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:869
|
1161 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1118
|
|
|
1162 |
msgid "Thank you for your message. We will be in contact soon."
|
1163 |
msgstr "Takk for din tilbakemelding. Vi vil kontakte deg."
|
1164 |
|
1175 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:873
|
1176 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1122
|
1177 |
msgid "Welcome. How may I help you?"
|
1178 |
+
msgstr "Velkommen. Hvordan kan jeg hjelpe deg? "
|
1179 |
|
1180 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:673
|
1181 |
msgid "Rating Unavailable"
|
1182 |
+
msgstr "Rangering utilgjengelig "
|
1183 |
|
1184 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:677
|
1185 |
msgid "You are currently accepting chats"
|
1186 |
+
msgstr "Du aksepterer for øyeblikket samtaler"
|
1187 |
|
1188 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:678
|
1189 |
msgid "You are not accepting chats"
|
1190 |
+
msgstr "Du aksepterer ikke samtaler"
|
1191 |
|
1192 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:727
|
|
|
1193 |
msgid "Delete History"
|
1194 |
+
msgstr "Slett historikk"
|
1195 |
|
1196 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:736
|
1197 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1256
|
1215 |
msgstr "Ingen chats tilgengelige for øyeblikket"
|
1216 |
|
1217 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
|
|
1218 |
msgid "View Chat History"
|
1219 |
+
msgstr "Vis samtalehistorikk"
|
1220 |
|
1221 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:754
|
|
|
1222 |
msgid "Download Chat History"
|
1223 |
+
msgstr "Last ned samtalehistorikk"
|
1224 |
|
1225 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:875
|
1226 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1124
|
1227 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1304
|
1228 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2468
|
1229 |
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1230 |
+
msgstr "Vennligst klikk 'Start samtale' for å starte en chat med en agent"
|
1231 |
|
1232 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:896
|
1233 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1146
|
|
|
1234 |
msgid "Minimize Chat Window"
|
1235 |
+
msgstr "Minimer samtalevindu"
|
1236 |
|
1237 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:897
|
1238 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1147
|
|
|
1239 |
msgid "Close Chat Window"
|
1240 |
+
msgstr "Lukk samtalevindu"
|
1241 |
|
1242 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:997
|
1243 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1235
|
1259 |
|
1260 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1516
|
1261 |
msgid "Chat sessions"
|
1262 |
+
msgstr "Samtale sesjoner "
|
1263 |
|
1264 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1518
|
1265 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1794
|
1267 |
"Please note: This window must be open in order to receive new chat "
|
1268 |
"notifications."
|
1269 |
msgstr ""
|
1270 |
+
"Venligst bemerk: Dette vinduet må være åpent for at vi skal kunne motta nye "
|
1271 |
"chat varslinger."
|
1272 |
|
1273 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1522
|
1275 |
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
1276 |
"chat to visitors"
|
1277 |
msgstr ""
|
1278 |
+
"Du er ikke en chat agent. Vennligst gjør deg selvtil chat-agent før du "
|
1279 |
+
"prøver å snakke med besøkende"
|
1280 |
|
1281 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1550
|
1282 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1804
|
|
|
1283 |
msgid "Visitors online"
|
1284 |
+
msgstr "Besøkende online "
|
1285 |
|
1286 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1555
|
1287 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1809
|
|
|
1288 |
msgid "Agent(s) online"
|
1289 |
+
msgstr "Agent(er) online"
|
1290 |
|
1291 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1565
|
1292 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1819
|
|
|
1293 |
msgid "Visitor"
|
1294 |
+
msgstr "Besøkende"
|
1295 |
|
1296 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1566
|
1297 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1820
|
1298 |
msgid "Time"
|
1299 |
+
msgstr "Tid"
|
1300 |
|
1301 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1567
|
1302 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1821
|
1303 |
msgid "Type"
|
1304 |
+
msgstr "Type"
|
1305 |
|
1306 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1568
|
1307 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1822
|
|
|
1308 |
msgid "Data"
|
1309 |
+
msgstr "Data"
|
1310 |
|
1311 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1666
|
1312 |
msgid "Unknown"
|
1319 |
|
1320 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1687
|
1321 |
msgid "Attempting to open the chat window... Please be patient."
|
1322 |
+
msgstr "Forsøker å åpne chat vinduet… Venligst vent."
|
1323 |
|
1324 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1798
|
1325 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2757
|
1352 |
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1353 |
msgstr ""
|
1354 |
"En uforventet HTTP feil skjedde under API forespørselen.</p> <p><a href=\"?"
|
1355 |
+
"\" onclick=\"document.location.reload(); return false;\">Prøv igjen.</a>"
|
1356 |
|
1357 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2482
|
1358 |
msgid "An unknown error occurred"
|
1360 |
|
1361 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1362 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
|
|
1363 |
msgid "Add-ons"
|
1364 |
+
msgstr "Tillegg"
|
1365 |
|
1366 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2679
|
1367 |
msgid "Supplimentary Plugins"
|
1368 |
+
msgstr "Supplement tillegg"
|
1369 |
|
1370 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1371 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
|
|
1372 |
msgid "Pro add-on"
|
1373 |
msgstr "Pro Add-on"
|
1374 |
|
1375 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2689
|
1376 |
msgid "Get this extension"
|
1377 |
+
msgstr "Få dette tillegget"
|
1378 |
|
1379 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2703
|
1380 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:446
|
1384 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2704
|
1385 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:447
|
1386 |
msgid "Settings"
|
1387 |
+
msgstr "Instillinger"
|
1388 |
|
1389 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2705
|
1390 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2729
|
1391 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2740
|
1392 |
msgid "Quick Responses"
|
1393 |
+
msgstr "Hurtigsvar"
|
1394 |
|
1395 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2706
|
1396 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:448
|
1397 |
msgid "History"
|
1398 |
+
msgstr "Historikk"
|
1399 |
|
1400 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2707
|
1401 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:449
|
|
|
1402 |
msgid "Missed Chats"
|
1403 |
+
msgstr "Tapte samtaler"
|
1404 |
|
1405 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2709
|
1406 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1410 |
|
1411 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2711
|
1412 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:452
|
|
|
1413 |
msgid "Extensions"
|
1414 |
+
msgstr "Utvidelser"
|
1415 |
|
1416 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2716
|
1417 |
msgid "Error Log"
|
1418 |
msgstr "Feillog"
|
1419 |
|
1420 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2719
|
|
|
1421 |
msgid "Statistics"
|
1422 |
+
msgstr "Statistikk"
|
1423 |
|
1424 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2722
|
1425 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:451
|
1426 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2764
|
1427 |
msgid "Support"
|
1428 |
+
msgstr "Support"
|
1429 |
|
1430 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2730
|
1431 |
msgid "Quick Response"
|
1432 |
+
msgstr "Hurtigsvar"
|
1433 |
|
1434 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2731
|
1435 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2734
|
1436 |
msgid "New Quick Response"
|
1437 |
+
msgstr "Nytt hurtigsvar"
|
1438 |
|
1439 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2732
|
1440 |
msgid "Add New Quick Response"
|
1441 |
+
msgstr "Tilføy nytt hurtigsvar"
|
1442 |
|
1443 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2733
|
1444 |
msgid "Edit Quick Response"
|
1445 |
+
msgstr "Rediger hurtigsvar"
|
1446 |
|
1447 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2735
|
1448 |
msgid "All Quick Responses"
|
1449 |
+
msgstr "Alle hurtigsvar"
|
1450 |
|
1451 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2736
|
1452 |
msgid "View Quick Responses"
|
1453 |
+
msgstr "Vis hurtigsvar"
|
1454 |
|
1455 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2737
|
1456 |
msgid "Search Quick Responses"
|
1457 |
+
msgstr "Søk i hurtigsvar"
|
1458 |
|
1459 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2738
|
1460 |
msgid "No Quick Responses found"
|
1461 |
+
msgstr "Ingen hurtig svarfunnet"
|
1462 |
|
1463 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2739
|
1464 |
msgid "No Quick Responses found in the Trash"
|
1465 |
+
msgstr "Ingen hurtigsvar funnet i søppelkurv"
|
1466 |
|
1467 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2744
|
1468 |
msgid "Quick Responses for WP Live Chat Support Pro"
|
1469 |
+
msgstr "Hurtigsvar til WP Live Chat Support Pro"
|
1470 |
|
1471 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2798
|
1472 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2802
|
1473 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1474 |
msgid "Assign Quick Response"
|
1475 |
+
msgstr "Tildel hurtigsvar"
|
1476 |
|
1477 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2811
|
1478 |
msgid "What is this?"
|
1479 |
+
msgstr "Hva er dette?"
|
1480 |
|
1481 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:878
|
1482 |
msgid "complete"
|
1516 |
|
1517 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:1283
|
1518 |
msgid "You have not missed any chat requests."
|
1519 |
+
msgstr "Du har ikke gått glipp av noen chat forespørsler."
|
1520 |
|
1521 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1522 |
msgid "WP Live Chat Support Feedback"
|
1556 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:238
|
1557 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:255
|
1558 |
msgid "available in the"
|
1559 |
+
msgstr "tilgjengelige i"
|
1560 |
|
1561 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
1562 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
1590 |
|
1591 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
1592 |
msgid "Include chat window on the following pages"
|
1593 |
+
msgstr "Inkluder chatte vinduet på de følgende sidene"
|
1594 |
|
1595 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
1596 |
msgid "Exclude chat window on the following pages"
|
1597 |
+
msgstr "Ekskluder chat-vinduet på følgende sider"
|
1598 |
|
1599 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:252
|
1600 |
msgid "Alert me via email as soon as someone wants to chat"
|
1601 |
+
msgstr "Varsle meg via e-post, så snart noen vil chatte"
|
1602 |
|
1603 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:298
|
1604 |
msgid "Get offline messages with the "
|
1615 |
|
1616 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1617 |
msgid "Choose a colour scheme. Only available in the"
|
1618 |
+
msgstr "Velg et fargeskjema. Kun tilgjengelig i "
|
1619 |
|
1620 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
1621 |
msgid "Colour Scheme 1"
|
1622 |
+
msgstr "Fargeskjema 1"
|
1623 |
|
1624 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:351
|
1625 |
msgid "Colour Scheme 2"
|
1626 |
+
msgstr "Fargeskjema 2"
|
1627 |
|
1628 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:352
|
1629 |
msgid "Colour Scheme 3"
|
1630 |
+
msgstr "Fargeskjema 3"
|
1631 |
|
1632 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:353
|
1633 |
msgid "Colour Scheme 4"
|
1634 |
+
msgstr "Fargeskjema 4"
|
1635 |
|
1636 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:354
|
1637 |
msgid "Colour Scheme 5"
|
1638 |
+
msgstr "Fargeskjema 5"
|
1639 |
|
1640 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
1641 |
msgid "Colour Scheme 6"
|
1642 |
+
msgstr "Fargeskjema 6"
|
1643 |
|
1644 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:375
|
1645 |
msgid "First section text"
|
1661 |
|
1662 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:431
|
1663 |
msgid "Choose an animation. Only available in the"
|
1664 |
+
msgstr "Velg en animasjon. Kun tilgjengelig i"
|
1665 |
|
1666 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:432
|
1667 |
msgid "Pro"
|
1668 |
+
msgstr "Pro"
|
1669 |
|
1670 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
1671 |
msgid "Add as many agents as you need with the "
|
1672 |
+
msgstr "Legg til så mange agenter du ønsker med "
|
1673 |
|
1674 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:540
|
|
|
1675 |
msgid "Pro version for only $19.95 once off."
|
1676 |
+
msgstr "Pro versjon for kun $19.95 engangssum. "
|
1677 |
|
1678 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:573
|
1679 |
msgid "Encrypt your chat messages in the "
|
1680 |
+
msgstr "Krypter dine samtaler med "
|
1681 |
|
1682 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1683 |
msgid "Welcome to "
|
1685 |
|
1686 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1687 |
msgid "Version 5"
|
1688 |
+
msgstr "Versjon 5"
|
1689 |
|
1690 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
|
|
1691 |
msgid "Provide Instant Live Chat Support!"
|
1692 |
+
msgstr "Tilby umiddelbar Live chat support!"
|
1693 |
|
1694 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1695 |
msgid "How did you find us?"
|
1696 |
+
msgstr "Hvordan fant du oss?"
|
1697 |
|
1698 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1699 |
msgid "WordPress.org plugin repository "
|
1709 |
|
1710 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1711 |
msgid "Friend recommendation"
|
1712 |
+
msgstr "Anbefal av en venn"
|
1713 |
|
1714 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1715 |
msgid "Other"
|
1730 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:409
|
1731 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2235
|
1732 |
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1733 |
+
msgstr "Vennligst klikk Start samtale for å opprette samtale med en agent. "
|
1734 |
|
1735 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:788
|
1736 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:969
|
|
|
1737 |
msgid "Start Live Chat"
|
1738 |
+
msgstr "Start samtale"
|
1739 |
|
1740 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1247
|
1741 |
msgid "New chat received"
|
1742 |
+
msgstr "Ny samtale mottatt! "
|
1743 |
|
1744 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1249
|
1745 |
msgid ""
|
1746 |
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
1747 |
"chat"
|
1748 |
msgstr ""
|
1749 |
+
"En ny samtale har blitt mottatt. Vennligst gå til Live-chat siden for å "
|
1750 |
+
"akseptere samtalen. "
|
1751 |
|
1752 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1700
|
1753 |
msgid ""
|
1774 |
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1775 |
"version/' target='_BLANK'>here</a>."
|
1776 |
msgstr ""
|
1777 |
+
"Du kan oppdatere din plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1778 |
+
"plugins.php'>here</a> eller <a href='http://wp-livechat.com/get-updated-"
|
1779 |
"version/' target='_BLANK'>her</a>."
|
1780 |
|
1781 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1715
|
|
|
1782 |
msgid ""
|
1783 |
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1784 |
"strong>."
|
1787 |
"Oppdater"
|
1788 |
|
1789 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1717
|
|
|
1790 |
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1791 |
+
msgstr "Vennligst oppdater til siste versjon av WP Live Chat Support Pro"
|
1792 |
|
1793 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1718
|
1794 |
msgid "Version 5.0.1"
|
1795 |
+
msgstr "Versjon 5.0.1"
|
1796 |
|
1797 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1719
|
|
|
1798 |
msgid "to ensure everything is working correctly."
|
1799 |
msgstr "for å forsikre at alle funksjoner virker ordentlig."
|
1800 |
|
1801 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1750
|
1802 |
msgid "Congratulations"
|
1803 |
+
msgstr "Gratulerer"
|
1804 |
|
1805 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1751
|
1806 |
msgid "You are now accepting live chat requests on your site."
|
1807 |
+
msgstr "Du har nå akseptert live-chat forespørsler på din side"
|
1808 |
|
1809 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1752
|
1810 |
msgid "The live chat box has automatically been enabled on your website."
|
1811 |
+
msgstr "Live chat-boksen er automatisk aktivert på ditt nettsted."
|
1812 |
|
1813 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1753
|
1814 |
msgid "Chat notifications will start appearing once visitors send a request."
|
1815 |
msgstr ""
|
1816 |
+
"Chat varslinger vil begynne å vises når besøkende sende en forespørsel."
|
1817 |
|
1818 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1754
|
1819 |
msgid ""
|
1820 |
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
1821 |
"chat box settings here."
|
1822 |
msgstr ""
|
1823 |
+
"Du bør <a href='?page=wplivechat-menu-settings' target='_BLANK'>endre dine "
|
1824 |
+
"chat-boks innstillinger her"
|
1825 |
|
1826 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1827 |
msgid "Experiencing issues?"
|
1828 |
+
msgstr "Opplever du problemer ?"
|
1829 |
|
1830 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1755
|
1831 |
msgid "Visit our troubleshooting section."
|
1832 |
+
msgstr "Besøk vår feilsøkingsside"
|
1833 |
|
1834 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1757
|
|
|
1835 |
msgid "Hide"
|
1836 |
+
msgstr "Skjul"
|
1837 |
|
1838 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1791
|
|
|
1839 |
msgid "Chat Dashboard"
|
1840 |
+
msgstr "Chat skrivebord"
|
1841 |
|
1842 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1831
|
1843 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1852 |
|
1853 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1833
|
1854 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
|
|
1855 |
msgid "initiate chats"
|
1856 |
+
msgstr "starte samtaler"
|
1857 |
|
1858 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1834
|
1859 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
1862 |
|
1863 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1835
|
1864 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1837
|
|
|
1865 |
msgid "Buy the Pro add-on now."
|
1866 |
+
msgstr "Få Pro add-on nå."
|
1867 |
|
1868 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1898
|
1869 |
msgid "Previous"
|
1870 |
+
msgstr "Forrige"
|
1871 |
|
1872 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1900
|
1873 |
msgid "Active"
|
1879 |
|
1880 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1881 |
msgid "Add Quick Responses to your Live Chat"
|
1882 |
+
msgstr "Tilføy hurtigsvar til din live chat."
|
1883 |
|
1884 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1948
|
1885 |
msgid "Pro version only"
|
1887 |
|
1888 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1959
|
1889 |
msgid "type here..."
|
1890 |
+
msgstr "skriv her…"
|
1891 |
|
1892 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2364
|
1893 |
msgid "WP Live Chat History"
|
1894 |
+
msgstr "WP Live chat historikk"
|
1895 |
|
1896 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2371
|
1897 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2393
|
|
|
1898 |
msgid "This option is only available in the "
|
1899 |
+
msgstr "Velg en animasjon. Kun tilgjengelig i"
|
1900 |
|
1901 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2377
|
|
|
1902 |
msgid "WP Live Chat Missed Chats"
|
1903 |
+
msgstr "WP Live chat tapte samtaler"
|
1904 |
|
1905 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2385
|
|
|
1906 |
msgid "WP Live Chat Offline Messages"
|
1907 |
+
msgstr "WP Live Chat offline meldinger"
|
1908 |
|
1909 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2390
|
|
|
1910 |
msgid ""
|
1911 |
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1912 |
"recording any offline messages."
|
1913 |
msgstr ""
|
1914 |
+
"Oppdater til den nyeste versjonen av WP Live Chat Support Pro for å starte "
|
1915 |
+
"innspillingen noen offline meldinger ."
|
1916 |
|
1917 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2526
|
1918 |
msgid "Thank You for your feedback!"
|
1935 |
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1936 |
"contact your host to get this function enabled."
|
1937 |
msgstr ""
|
1938 |
+
"WPLC : set_time_limit ( ) er ikke aktivert på denne serveren . Det kan "
|
1939 |
+
"oppstå problemer når du bruker WP Live Chat Support som følge av dette. "
|
1940 |
+
"Vennligst ta kontakt med verten for å få denne funksjonen aktivert."
|
1941 |
|
1942 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2586
|
1943 |
msgid ""
|
1945 |
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1946 |
"get safe mode disabled."
|
1947 |
msgstr ""
|
1948 |
+
"WPLC : Sikker modus er aktivert på denne serveren . Det kan oppstå problemer "
|
1949 |
+
"når du bruker WP Live Chat Support som følge av dette. Ta kontakt med verten "
|
1950 |
+
"for å bli sikker modus deaktivert."
|
1951 |
|
1952 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2608
|
1953 |
msgid "Suggested Plugins"
|
1954 |
+
msgstr "Foreslåtte utvidelser"
|
1955 |
|
1956 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2619
|
1957 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2620
|
1958 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2621
|
1959 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1960 |
msgid "Sola Support Tickets"
|
1961 |
+
msgstr "Sola supportsaker"
|
1962 |
|
1963 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2624
|
1964 |
msgid ""
|
1965 |
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
1966 |
"desk quickly and easily with Sola Support Tickets."
|
1967 |
msgstr ""
|
1968 |
+
"Den enkleste å bruke Help Desk & Support Ticket plugin. Lag en support help "
|
1969 |
+
"desk raskt og enkelt med Sola Brukerstøtte "
|
1970 |
|
1971 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2626
|
1972 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1973 |
msgid "Get this Plugin"
|
1974 |
+
msgstr "Få dette tillegget "
|
1975 |
|
1976 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2630
|
1977 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2631
|
1978 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2632
|
1979 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2637
|
1980 |
msgid "Nifty Newsletters"
|
1981 |
+
msgstr "Nifty Nyhetsbrev"
|
1982 |
|
1983 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2635
|
1984 |
msgid ""
|
1985 |
"Create and send newsletters, automatic post notifications and autoresponders "
|
1986 |
"that are modern and beautiful with Nifty Newsletters."
|
1987 |
msgstr ""
|
1988 |
+
"Opprette og sende nyhetsbrev, automatiske legg varslinger og autoresponders "
|
1989 |
+
"som er moderne og vakkert med Nifty nyhetsbrev ."
|
1990 |
|
1991 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2669
|
1992 |
msgid "Price:"
|
1993 |
+
msgstr "Pris:"
|
1994 |
|
1995 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2670
|
1996 |
msgid "All"
|
1997 |
+
msgstr "Alle"
|
1998 |
|
1999 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2671
|
2000 |
msgid "Free"
|
2001 |
+
msgstr "Graits"
|
2002 |
|
2003 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2672
|
2004 |
msgid "Paid"
|
2005 |
+
msgstr "Betalt "
|
2006 |
|
2007 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2675
|
2008 |
msgid "For:"
|
2009 |
+
msgstr "For:"
|
2010 |
|
2011 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2676
|
2012 |
msgid "Both"
|
2013 |
+
msgstr "Begge"
|
2014 |
|
2015 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2677
|
|
|
2016 |
msgid "Free version"
|
2017 |
+
msgstr "Graitsversjonen"
|
2018 |
|
2019 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2678
|
|
|
2020 |
msgid "Pro version"
|
2021 |
+
msgstr "Proversjonen"
|
2022 |
|
2023 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2706
|
2024 |
msgid "Already installed"
|
2025 |
+
msgstr "Allerede installert. "
|
2026 |
|
2027 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2732
|
|
|
2028 |
msgid "WP Live Chat Support"
|
2029 |
msgstr "Via WP Live Chat Support"
|
2030 |
|
2031 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2735
|
|
|
2032 |
msgid "Documentation"
|
2033 |
+
msgstr "Dokumentasjon"
|
2034 |
|
2035 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2737
|
2036 |
msgid ""
|
2037 |
"Getting started? Read through some of these articles to help you along your "
|
2038 |
"way."
|
2039 |
msgstr ""
|
2040 |
+
"Er du klar? Les gjennom noen av disse artiklene for å hjelpe deg langs "
|
2041 |
+
"veien ."
|
2042 |
|
2043 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2738
|
|
|
2044 |
msgid "Documentation:"
|
2045 |
+
msgstr "Dokumentasjon:"
|
2046 |
|
2047 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2740
|
2048 |
msgid "Minimum System Requirements"
|
2049 |
+
msgstr "Minstekrav til systemet"
|
2050 |
|
2051 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2741
|
2052 |
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
2053 |
+
msgstr "Må jeg være logget inn i dashbordet for å chatte med besøkende ?"
|
2054 |
|
2055 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2742
|
|
|
2056 |
msgid "What are Quick Responses?"
|
2057 |
+
msgstr "Hva er hurtigsvar?"
|
2058 |
|
2059 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2743
|
2060 |
msgid "Can I use this plugin on my multi-site?"
|
2061 |
+
msgstr "Kan jeg bruke denne på fler sider?"
|
2062 |
|
2063 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2744
|
2064 |
msgid "How do I disable APC Object Cache?"
|
2065 |
+
msgstr "Hvordan deaktiverer jeg APC Object Cache?"
|
2066 |
|
2067 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2745
|
2068 |
msgid "Do you have a mobile app?"
|
2069 |
+
msgstr "Har dere mobilapp? "
|
2070 |
|
2071 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2746
|
2072 |
msgid "How do I check for JavaScript errors on my site?"
|
2073 |
+
msgstr "Hvordan sjekker jeg for JavaScript feil på min side?"
|
2074 |
|
2075 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2750
|
2076 |
msgid "Troubleshooting"
|
2077 |
+
msgstr "Feilsøking"
|
2078 |
|
2079 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2752
|
2080 |
msgid ""
|
2082 |
"from time to time, run into conflicts with the thousands of themes and other "
|
2083 |
"plugins on the market."
|
2084 |
msgstr ""
|
2085 |
+
"WP Live Chat Support har et variert og bredt spekter av funksjoner som kan, "
|
2086 |
+
"fra tid til annen , kjøre inn i konflikter med de tusenvis av temaer og "
|
2087 |
+
"andre plugins på markedet."
|
2088 |
|
2089 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2753
|
2090 |
msgid "Common issues:"
|
2091 |
+
msgstr "Opplevde problemer:"
|
2092 |
|
2093 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2755
|
2094 |
msgid "The chat box doesnt show up"
|
2095 |
+
msgstr "Samtalevinduet dukker ikke opp"
|
2096 |
|
2097 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2756
|
2098 |
msgid "The chat window disappears when I logout or go offline"
|
2099 |
+
msgstr "Chat-vinduet forsvinner når jeg logger ut eller går offline"
|
2100 |
|
2101 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2758
|
|
|
2102 |
msgid "Messages only show when I refresh the chat window"
|
2103 |
+
msgstr "Meldinger vises bare når jeg oppdaterer samatalevinduet"
|
2104 |
|
2105 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2759
|
2106 |
msgid "I'm not getting any notifications of a new chat"
|
2107 |
+
msgstr "Jeg får ikke noen varsel om en ny samtale"
|
2108 |
|
2109 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2760
|
2110 |
msgid "The chat window never goes offline"
|
2111 |
+
msgstr "Samtalevinduet går aldri offline"
|
2112 |
|
2113 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2766
|
2114 |
msgid "Still need help? Use one of these links below."
|
2115 |
+
msgstr "Trenger du fremdeles hjelp? Prøv en av lenkene under. "
|
2116 |
|
2117 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2768
|
2118 |
msgid "Support forum"
|
2119 |
+
msgstr "Supportforum"
|
2120 |
|
2121 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2769
|
2122 |
msgid "Contact us"
|
2123 |
+
msgstr "Kontakt oss"
|
2124 |
|
2125 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
|
|
2126 |
msgid "Initiate Chats"
|
2127 |
+
msgstr "starte samtaler"
|
2128 |
|
2129 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2784
|
2130 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
|
|
2131 |
msgid "Buy the Pro add-on now (once off payment)."
|
2132 |
+
msgstr "Kjøp Pro-pluginen (engangssum)"
|
2133 |
|
2134 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
|
|
2135 |
msgid "Multiple Chats"
|
2136 |
+
msgstr "aksepter og behandle flere samtaler"
|
2137 |
|
2138 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2785
|
2139 |
msgid "accept and handle multiple chats."
|
2140 |
+
msgstr "aksepter og behandle flere samtaler"
|
2141 |
|
2142 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2143 |
msgid "Add unlimited agents"
|
2144 |
+
msgstr "Legg til ubegrensede agenter"
|
2145 |
|
2146 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
|
|
2147 |
msgid " with the Pro add-on of WP Live Chat Support"
|
2148 |
+
msgstr "Med Pro add-on af WP Live Chat Support"
|
2149 |
|
2150 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2786
|
2151 |
msgid "(once off payment)."
|
2152 |
+
msgstr "(engangssum)"
|
2153 |
|
2154 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2800
|
2155 |
#, php-format
|
2158 |
"a>! Please <a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s"
|
2159 |
"\" target=\"_blank\">WordPress.org</a>"
|
2160 |
msgstr ""
|
2161 |
+
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</"
|
2162 |
+
"a>! Please <a href=\"%2$s\" target=\"_blank\">ranger oss</a> på <a href="
|
2163 |
+
"\"%2$s\" target=\"_blank\">WordPress.org</a>"
|
2164 |
|
2165 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:2805
|
|
|
2166 |
msgid "WP Live Chat Support is a product of"
|
2167 |
+
msgstr "WP Live Chat Support er et produkt av"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wplivechat-pt_BR.mo
CHANGED
Binary file
|
languages/wplivechat-pt_BR.po
CHANGED
@@ -1,1524 +1,3299 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"Language:
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-Poedit-
|
15 |
-
"
|
16 |
-
"X-Poedit-
|
17 |
-
"
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
#: C:\wamp\www\
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
#: C:\wamp\www\
|
33 |
-
#:
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
msgid "
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: C:\wamp\www\
|
46 |
-
#:
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
#: C:\wamp\www\
|
54 |
-
#:
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
#:
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
#: C:\wamp\www\
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
#: C:\wamp\www\
|
70 |
-
#:
|
71 |
-
#: C:\wamp\www\
|
72 |
-
#:
|
73 |
-
#: C:\wamp\www\
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
#: C:\wamp\www\
|
78 |
-
#:
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
#: C:\wamp\www\
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
#: C:\wamp\www\
|
97 |
-
#:
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
msgstr "
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
#:
|
111 |
-
#: C:\wamp\www\
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
#: C:\wamp\www\
|
116 |
-
#:
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
#:
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
#: C:\wamp\www\
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
#: C:\wamp\www\
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
#:
|
162 |
-
#: C:\wamp\www\
|
163 |
-
#:
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
#: C:\wamp\www\
|
168 |
-
#:
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
#: C:\wamp\www\
|
175 |
-
#:
|
176 |
-
#: C:\wamp\www\
|
177 |
-
#:
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
#: C:\wamp\www\
|
184 |
-
#:
|
185 |
-
msgid "
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
#:
|
197 |
-
msgid "
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: C:\wamp\www\
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
#: C:\wamp\www\
|
206 |
-
#:
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
#:
|
211 |
-
#: C:\wamp\www\
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
#:
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
#: C:\wamp\www\
|
243 |
-
#:
|
244 |
-
msgid "
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
#:
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
#:
|
258 |
-
#: C:\wamp\www\
|
259 |
-
#:
|
260 |
-
#: C:\wamp\www\
|
261 |
-
#:
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
-
|
265 |
-
#: C:\wamp\www\
|
266 |
-
#:
|
267 |
-
#: C:\wamp\www\
|
268 |
-
#:
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
#: C:\wamp\www\
|
277 |
-
#:
|
278 |
-
#: C:\wamp\www\
|
279 |
-
#:
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
#: C:\wamp\www\
|
288 |
-
#:
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
#:
|
298 |
-
#: C:\wamp\www\
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
#: C:\wamp\www\
|
308 |
-
#:
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
#:
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
#:
|
320 |
-
#: C:\wamp\www\
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
#: C:\wamp\www\
|
330 |
-
#:
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
#: C:\wamp\www\
|
351 |
-
#:
|
352 |
-
msgid "
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: C:\wamp\www\
|
356 |
-
#:
|
357 |
-
|
358 |
-
|
359 |
-
"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: C:\wamp\www\
|
363 |
-
#:
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
#:
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
#:
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
#:
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
#:
|
409 |
-
#: C:\wamp\www\
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
#:
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
msgstr "
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
#: C:\wamp\www\
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
#:
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
#:
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
#: C:\wamp\www\
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
#:
|
506 |
-
msgid "
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
#:
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
#:
|
524 |
-
#: C:\wamp\www\
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
#: C:\wamp\www\
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
#:
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
"
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
#: C:\wamp\www\
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
"
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
#:
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
#: C:\wamp\www\
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
#:
|
609 |
-
msgid "
|
610 |
-
msgstr "
|
611 |
-
|
612 |
-
#: C:\wamp\www\
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
#:
|
621 |
-
#: C:\wamp\www\
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
#: C:\wamp\www\
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
#: C:\wamp\www\
|
636 |
-
#:
|
637 |
-
msgid "
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: C:\wamp\www\
|
641 |
-
#:
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
#:
|
646 |
-
msgid "
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: C:\wamp\www\
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
#: C:\wamp\www\
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
#: C:\wamp\www\
|
659 |
-
#:
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
#:
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
#:
|
668 |
-
msgid "
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: C:\wamp\www\
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
#:
|
680 |
-
msgid "
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: C:\wamp\www\
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
#: C:\wamp\www\
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
"
|
711 |
-
|
712 |
-
|
713 |
-
#:
|
714 |
-
msgid "
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
#: C:\wamp\www\
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
#: C:\wamp\www\
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
#:
|
742 |
-
msgid "
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
#: C:\wamp\www\
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
"
|
765 |
-
|
766 |
-
|
767 |
-
#: C:\wamp\www\
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
#: C:\wamp\www\
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
"
|
783 |
-
"
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
"
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
"
|
802 |
-
|
803 |
-
#: C:\wamp\www\
|
804 |
-
#:
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
#: C:\wamp\www\
|
820 |
-
#:
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
#:
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
#:
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
#:
|
846 |
-
#: C:\wamp\www\
|
847 |
-
#:
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
#:
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
#:
|
857 |
-
msgid "
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
"
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
#: C:\wamp\www\
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
#:
|
875 |
-
#: C:\wamp\www\
|
876 |
-
#:
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
#:
|
893 |
-
msgid "
|
894 |
-
msgstr "
|
895 |
-
|
896 |
-
#: C:\wamp\www\
|
897 |
-
#:
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
-
|
901 |
-
#: C:\wamp\www\
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
#:
|
918 |
-
msgid "
|
919 |
-
msgstr "
|
920 |
-
|
921 |
-
#: C:\wamp\www\
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
#: C:\wamp\www\
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
#: C:\wamp\www\
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
#: C:\wamp\www\
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
#: C:\wamp\www\
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
#:
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
#:
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
#:
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
#:
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
#:
|
995 |
-
msgid ""
|
996 |
-
"
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
#:
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
#:
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
#:
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
#:
|
1050 |
-
msgid "
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#: C:\wamp\www\
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
#:
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
#: C:\wamp\www\
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
msgid "
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
#:
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
1115 |
-
|
1116 |
-
#: C:\wamp\www\
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
#:
|
1133 |
-
msgid "
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: C:\wamp\www\
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
#:
|
1145 |
-
msgid "
|
1146 |
-
msgstr "
|
1147 |
-
|
1148 |
-
#: C:\wamp\www\
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
#:
|
1157 |
-
msgid "
|
1158 |
-
msgstr "
|
1159 |
-
|
1160 |
-
#: C:\wamp\www\
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
#: C:\wamp\www\
|
1166 |
-
#:
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
#: C:\wamp\www\
|
1184 |
-
#:
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
#:
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
#: C:\wamp\www\
|
1198 |
-
#:
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
#:
|
1210 |
-
msgid "
|
1211 |
-
msgstr "
|
1212 |
-
|
1213 |
-
#: C:\wamp\www\
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
#:
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
#:
|
1232 |
-
msgid "
|
1233 |
-
msgstr ""
|
1234 |
-
|
1235 |
-
#: C:\wamp\www\
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
#:
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
#: C:\wamp\www\
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
#:
|
1260 |
-
msgid "
|
1261 |
-
msgstr "
|
1262 |
-
|
1263 |
-
#: C:\wamp\www\
|
1264 |
-
#:
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
#: C:\wamp\www\
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
#:
|
1281 |
-
msgid "
|
1282 |
-
msgstr "
|
1283 |
-
|
1284 |
-
#: C:\wamp\www\
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
#:
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
#: C:\wamp\www\
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
#:
|
1309 |
-
msgid "
|
1310 |
-
msgstr "
|
1311 |
-
|
1312 |
-
#: C:\wamp\www\
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
#:
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
#: C:\wamp\www\
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
#:
|
1337 |
-
msgid "
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
#:
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
"
|
1360 |
-
"
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
#:
|
1368 |
-
#: C:\wamp\www\
|
1369 |
-
|
1370 |
-
"
|
1371 |
-
"
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
"
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
#:
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
#:
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
#: C:\wamp\www\
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
#: C:\wamp\www\
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
#:
|
1417 |
-
msgid "
|
1418 |
-
msgstr "
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
#:
|
1426 |
-
msgid "
|
1427 |
-
msgstr "
|
1428 |
-
|
1429 |
-
#: C:\wamp\www\
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
"
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
#:
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
#: C:\wamp\www\
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
#:
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
#:
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
#:
|
1466 |
-
msgid "
|
1467 |
-
msgstr "
|
1468 |
-
|
1469 |
-
#: C:\wamp\www\
|
1470 |
-
#:
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
#:
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
#:
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
#:
|
1500 |
-
#: C:\wamp\www\
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
#: C:\wamp\www\
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
#:
|
1517 |
-
|
1518 |
-
|
1519 |
-
"
|
1520 |
-
"
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-01-26 12:12+0200\n"
|
6 |
+
"PO-Revision-Date: Wed Mar 30 2016 14:21:02 GMT-0300 (BRT)\n"
|
7 |
+
"Last-Translator: saison <atendimento@saisondigital.com.br>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: Portuguese (Brazil)\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
17 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
18 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
+
"X-Poedit-Basepath: .\n"
|
22 |
+
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-live-chat-"
|
23 |
+
"support\n"
|
24 |
+
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-live-chat-"
|
25 |
+
"support-pro\n"
|
26 |
+
"X-Loco-Target-Locale: pt_BR"
|
27 |
+
|
28 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
29 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:34
|
30 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
31 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:98
|
32 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
33 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:285
|
34 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
35 |
+
#: support.php:3209
|
36 |
+
msgid "Advanced Chat Box Control"
|
37 |
+
msgstr "Controle avançado da caixa de chat"
|
38 |
+
|
39 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
40 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:51
|
41 |
+
#, php-format
|
42 |
+
msgid "Incoming chat from %s (%s) on %s"
|
43 |
+
msgstr "Recebendo chat de %s (%s) em %s"
|
44 |
+
|
45 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
46 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:57
|
47 |
+
#, php-format
|
48 |
+
msgid "%s (%s) wants to chat with you. <br /><br />Log in: %s"
|
49 |
+
msgstr "%s (%s) quer conversar com você. <br /><br />Log in: %s"
|
50 |
+
|
51 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
52 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:153
|
53 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
54 |
+
#: pro/includes/settings_page_pro.php:337
|
55 |
+
msgid "How long it takes for your chat window to pop up"
|
56 |
+
msgstr "Quanto tempo demora para aparecer a janela de chat"
|
57 |
+
|
58 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
59 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:162
|
60 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
61 |
+
#: pro/includes/settings_page_pro.php:346
|
62 |
+
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
63 |
+
msgstr "Alertar-me via e-mail quando alguém quiser conversar (apenas enquanto online)"
|
64 |
+
|
65 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
66 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:284
|
67 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
68 |
+
#: online/wp-live-chat-support-choose-when-online.php:290
|
69 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
70 |
+
#: server/wp-live-chat-support-cloud-server.php:384
|
71 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
72 |
+
#: live-chat-support-encryption.php:274
|
73 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-initiate-
|
74 |
+
#: chats/wp-live-chat-support-initiate-chats.php:238
|
75 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-mobile-and-
|
76 |
+
#: desktop-app/wp-live-chat-support-mobile-and-desktop-app.php:173
|
77 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
78 |
+
#: agents/wp-live-chat-support-multiple-agents.php:778
|
79 |
+
#, php-format
|
80 |
+
msgid ""
|
81 |
+
"The <strong>%s</strong> extension is not compatibile with the <strong>Pro "
|
82 |
+
"version</strong> of WP Live Chat Support. <a href='%s' title='%s' "
|
83 |
+
"target='_BLANK'>Click here for important information about this change.</a>"
|
84 |
+
msgstr ""
|
85 |
+
"A extensão <strong>%s</strong> não é compatível com a versão Pro de WP Live "
|
86 |
+
"Chat Support. <a href='%s' title='%s' target='_BLANK'>Clique aqui para "
|
87 |
+
"informações importantes sobre esta mudança</a>"
|
88 |
+
|
89 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
90 |
+
#: online/wp-live-chat-support-choose-when-online.php:35
|
91 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
92 |
+
#: online/wp-live-chat-support-choose-when-online.php:291
|
93 |
+
msgid "Choose When Online"
|
94 |
+
msgstr "Escolher quando online"
|
95 |
+
|
96 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
97 |
+
#: online/wp-live-chat-support-choose-when-online.php:217
|
98 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
99 |
+
#: pro/includes/settings_page_pro.php:144
|
100 |
+
msgid ""
|
101 |
+
"Checking this will allow you to change your status to Online or Offline on "
|
102 |
+
"the Live Chat page."
|
103 |
+
msgstr ""
|
104 |
+
"Marcando essa opção irá permitir que você altere quando estiver Online ou "
|
105 |
+
"Offline na página do Live Chat"
|
106 |
+
|
107 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
108 |
+
#: server/wp-live-chat-support-cloud-server.php:32
|
109 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
110 |
+
#: server/wp-live-chat-support-cloud-server.php:302
|
111 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
112 |
+
#: server/wp-live-chat-support-cloud-server.php:324
|
113 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
114 |
+
#: server/wp-live-chat-support-cloud-server.php:385
|
115 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
116 |
+
#: pro/includes/settings_page_pro.php:98
|
117 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
118 |
+
#: support.php:3166
|
119 |
+
msgid "Cloud Server"
|
120 |
+
msgstr "Servidor na nuvem"
|
121 |
+
|
122 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
123 |
+
#: server/wp-live-chat-support-cloud-server.php:45
|
124 |
+
msgid "Chat functionality has been paused."
|
125 |
+
msgstr "Funcionalidade do chat foi pausada"
|
126 |
+
|
127 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
128 |
+
#: server/wp-live-chat-support-cloud-server.php:46
|
129 |
+
msgid ""
|
130 |
+
"Please enter your verified API key in the <a href=\"admin.php?page=wplivechat-"
|
131 |
+
"menu-api-keys-page\">API Keys page</a> to activate the cloud based "
|
132 |
+
"functionality."
|
133 |
+
msgstr ""
|
134 |
+
"Por favor insira sua chave de API verificada na <a href=\"admin.php?"
|
135 |
+
"page=wplivechat-menu-api-keys-page\">página de chaves API</a> para ativar a "
|
136 |
+
"funcionalidade de nuvem."
|
137 |
+
|
138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-cloud-
|
139 |
+
#: server/wp-live-chat-support-cloud-server.php:305
|
140 |
+
msgid ""
|
141 |
+
"You are currently using our <strong>cloud server</strong> to handle your "
|
142 |
+
"chat requests and live chat sessions.<br /><br />To disable this, please "
|
143 |
+
"deactivate the WP Live Chat Support - Cloud Server plugin."
|
144 |
+
msgstr ""
|
145 |
+
"Você está usando nosso <strong>Servidor em nuvem</strong> para manusear as "
|
146 |
+
"sessões de chat<br /><br />Para desabilitar isso, por favor desative o "
|
147 |
+
"plugin WP Live Chat Support - Cloud Server."
|
148 |
+
|
149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
150 |
+
#: live-chat-support-encryption.php:37
|
151 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
152 |
+
#: live-chat-support-encryption.php:115
|
153 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
154 |
+
#: live-chat-support-encryption.php:275
|
155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
156 |
+
#: pro/includes/settings_page_pro.php:90
|
157 |
+
msgid "Encryption"
|
158 |
+
msgstr "Criptografia"
|
159 |
+
|
160 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
161 |
+
#: live-chat-support-encryption.php:81
|
162 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
163 |
+
#: pro/includes/settings_page_pro.php:840
|
164 |
+
msgid "Chat Encryption"
|
165 |
+
msgstr "Criptografia do chat"
|
166 |
+
|
167 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
168 |
+
#: live-chat-support-encryption.php:84
|
169 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
170 |
+
#: pro/includes/settings_page_pro.php:843
|
171 |
+
msgid "Enable Encryption"
|
172 |
+
msgstr "Habilitar criptografia"
|
173 |
+
|
174 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
175 |
+
#: live-chat-support-encryption.php:84
|
176 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
177 |
+
#: pro/includes/settings_page_pro.php:843
|
178 |
+
msgid ""
|
179 |
+
"All messages will be encrypted when being sent to and from the user and "
|
180 |
+
"agent."
|
181 |
+
msgstr "Todas as mensagens entre usuário e atendentes serão encriptadas. "
|
182 |
+
|
183 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
184 |
+
#: live-chat-support-encryption.php:93
|
185 |
+
msgid ""
|
186 |
+
"Please note: Chat messages will only be encrypted and decreypted if you have "
|
187 |
+
"inserted your WP Live Chat Support - Encryption API Key on the <a "
|
188 |
+
"href=\"admin.php?page=wplivechat-menu-api-keys-page\">API Keys page</a>."
|
189 |
+
msgstr ""
|
190 |
+
"Observação: As mensagens só serão encriptadas se você inseriu uma chave de "
|
191 |
+
"API válida."
|
192 |
+
|
193 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-encryption/wp-
|
194 |
+
#: live-chat-support-encryption.php:94
|
195 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
196 |
+
#: pro/includes/settings_page_pro.php:851
|
197 |
+
msgid "Once enabled, all messages sent will be encrypted. This cannot be undone."
|
198 |
+
msgstr "Uma vez habilitado, todas as mensagens serão encriptadas."
|
199 |
+
|
200 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-include-
|
201 |
+
#: exclude-pages/wp-live-chat-support-include-exclude-pages.php:35
|
202 |
+
msgid "Include Exclude Pages"
|
203 |
+
msgstr "Incluir Excluir páginas"
|
204 |
+
|
205 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-initiate-
|
206 |
+
#: chats/wp-live-chat-support-initiate-chats.php:34
|
207 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-initiate-
|
208 |
+
#: chats/wp-live-chat-support-initiate-chats.php:239
|
209 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
210 |
+
#: support.php:2889
|
211 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
212 |
+
#: support.php:3124
|
213 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
214 |
+
#: support.php:3188
|
215 |
+
msgid "Initiate Chats"
|
216 |
+
msgstr "Iniciar Chats"
|
217 |
+
|
218 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-mobile-and-
|
219 |
+
#: desktop-app/wp-live-chat-support-mobile-and-desktop-app.php:40
|
220 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-mobile-and-
|
221 |
+
#: desktop-app/wp-live-chat-support-mobile-and-desktop-app.php:174
|
222 |
+
msgid "Mobile and Desktop App"
|
223 |
+
msgstr "App mobile e desktop"
|
224 |
+
|
225 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-mobile-and-
|
226 |
+
#: desktop-app/wp-live-chat-support-mobile-and-desktop-app.php:86
|
227 |
+
msgid "Mobile and Desktop App Settings"
|
228 |
+
msgstr "Configurações de app mobile e desktop"
|
229 |
+
|
230 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-mobile-and-
|
231 |
+
#: desktop-app/wp-live-chat-support-mobile-and-desktop-app.php:89
|
232 |
+
msgid "Enable mobile and desktop app"
|
233 |
+
msgstr "Habilitar app mobile e desktop"
|
234 |
+
|
235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-mobile-and-
|
236 |
+
#: desktop-app/wp-live-chat-support-mobile-and-desktop-app.php:111
|
237 |
+
msgid "App"
|
238 |
+
msgstr "App"
|
239 |
+
|
240 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
241 |
+
#: agents/wp-live-chat-support-multiple-agents.php:71
|
242 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
243 |
+
#: chat-support-pro.php:1548
|
244 |
+
msgid ""
|
245 |
+
"You are not a chat agent. Please make yourself a chat agent before trying to "
|
246 |
+
"chat to visitors"
|
247 |
+
msgstr ""
|
248 |
+
"Você não é um atendente do chat. Por favor, torne-se um atendente antes de "
|
249 |
+
"usar o chat."
|
250 |
+
|
251 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
252 |
+
#: agents/wp-live-chat-support-multiple-agents.php:313
|
253 |
+
msgid "This chat has already been answered by another agent."
|
254 |
+
msgstr "Este chat já foi atendido por outro atendente."
|
255 |
+
|
256 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
257 |
+
#: agents/wp-live-chat-support-multiple-agents.php:444
|
258 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
259 |
+
#: chat-support-pro.php:1576
|
260 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
261 |
+
#: support.php:1751
|
262 |
+
msgid "Agent(s) online"
|
263 |
+
msgstr "Atendente(s) online."
|
264 |
+
|
265 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
266 |
+
#: agents/wp-live-chat-support-multiple-agents.php:716
|
267 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
268 |
+
#: pro/includes/settings_page_pro.php:761
|
269 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
270 |
+
#: support.php:2955
|
271 |
+
msgid "Online"
|
272 |
+
msgstr "Online"
|
273 |
+
|
274 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
275 |
+
#: agents/wp-live-chat-support-multiple-agents.php:726
|
276 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
277 |
+
#: pro/includes/settings_page_pro.php:771
|
278 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
279 |
+
#: chat-support-pro.php:710
|
280 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
281 |
+
#: support.php:1656
|
282 |
+
msgid "Remove"
|
283 |
+
msgstr "Remover"
|
284 |
+
|
285 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
286 |
+
#: agents/wp-live-chat-support-multiple-agents.php:735
|
287 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
288 |
+
#: pro/includes/settings_page_pro.php:780
|
289 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
290 |
+
#: support.php:2966
|
291 |
+
msgid "Add New Agent"
|
292 |
+
msgstr "Adicionar novo atendente"
|
293 |
+
|
294 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
295 |
+
#: agents/wp-live-chat-support-multiple-agents.php:743
|
296 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
297 |
+
#: pro.php:1407
|
298 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
299 |
+
#: pro/includes/settings_page_pro.php:788
|
300 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
301 |
+
#: support.php:2975
|
302 |
+
msgid "Administrator"
|
303 |
+
msgstr "Administrador"
|
304 |
+
|
305 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
306 |
+
#: agents/wp-live-chat-support-multiple-agents.php:749
|
307 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
308 |
+
#: pro.php:1408
|
309 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
310 |
+
#: pro/includes/settings_page_pro.php:794
|
311 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
312 |
+
#: support.php:2981
|
313 |
+
msgid "Editor"
|
314 |
+
msgstr "Editor"
|
315 |
+
|
316 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
317 |
+
#: agents/wp-live-chat-support-multiple-agents.php:755
|
318 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
319 |
+
#: pro.php:1409
|
320 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
321 |
+
#: pro/includes/settings_page_pro.php:800
|
322 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
323 |
+
#: support.php:2987
|
324 |
+
msgid "Author"
|
325 |
+
msgstr "Autor"
|
326 |
+
|
327 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
328 |
+
#: agents/wp-live-chat-support-multiple-agents.php:759
|
329 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
330 |
+
#: pro/includes/settings_page_pro.php:804
|
331 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
332 |
+
#: support.php:2991
|
333 |
+
msgid "Add Agent"
|
334 |
+
msgstr "Adicionar atendente"
|
335 |
+
|
336 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
337 |
+
#: agents/wp-live-chat-support-multiple-agents.php:765
|
338 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
339 |
+
#: pro/includes/settings_page_pro.php:810
|
340 |
+
msgid ""
|
341 |
+
"Should you wish to add a user that has a role less than 'Author', please go "
|
342 |
+
"to the <a href='./users.php'>Users</a> page, select the relevant user, click "
|
343 |
+
"Edit and scroll to the bottom of the page and enable the 'Chat Agent' "
|
344 |
+
"checkbox."
|
345 |
+
msgstr ""
|
346 |
+
"Para adicionar um usuário com qualquer permissão, por favor va para a <a "
|
347 |
+
"href='./users.php'>página de usuários</a>, selecione o usuário que deseja, "
|
348 |
+
"clique em editar e habilite a opção 'Atendente do Chat'."
|
349 |
+
|
350 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.
|
351 |
+
#: php:244
|
352 |
+
msgid "Guest"
|
353 |
+
msgstr "Convidado"
|
354 |
+
|
355 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
356 |
+
#: pro.php:67
|
357 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
358 |
+
#: 417
|
359 |
+
msgid "Open Chat"
|
360 |
+
msgstr "Abrir chat"
|
361 |
+
|
362 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
363 |
+
#: pro.php:99
|
364 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
365 |
+
#: 479
|
366 |
+
msgid "New"
|
367 |
+
msgstr "Novo"
|
368 |
+
|
369 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
370 |
+
#: pro.php:101
|
371 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
372 |
+
#: 481
|
373 |
+
msgid "Returning"
|
374 |
+
msgstr "Retornando"
|
375 |
+
|
376 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
377 |
+
#: pro.php:1410
|
378 |
+
msgid "Contributor"
|
379 |
+
msgstr "Contribuidor"
|
380 |
+
|
381 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
382 |
+
#: pro.php:1411
|
383 |
+
msgid "Subscriber"
|
384 |
+
msgstr "Inscrito"
|
385 |
+
|
386 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
387 |
+
#: pro.php:1541
|
388 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
389 |
+
#: support.php:3307
|
390 |
+
msgid "Chat ID"
|
391 |
+
msgstr "Chat ID"
|
392 |
+
|
393 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
394 |
+
#: pro.php:1542
|
395 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
396 |
+
#: support.php:3308
|
397 |
+
msgid "From"
|
398 |
+
msgstr "De"
|
399 |
+
|
400 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
401 |
+
#: pro.php:1544
|
402 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
403 |
+
#: support.php:3310
|
404 |
+
msgid "Timestamp"
|
405 |
+
msgstr "Data e hora"
|
406 |
+
|
407 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
408 |
+
#: pro.php:1545
|
409 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
410 |
+
#: support.php:3311
|
411 |
+
msgid "Origin"
|
412 |
+
msgstr "Origem"
|
413 |
+
|
414 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
415 |
+
#: pro.php:1557
|
416 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
417 |
+
#: support.php:3316
|
418 |
+
msgid "user"
|
419 |
+
msgstr "usuário"
|
420 |
+
|
421 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
422 |
+
#: pro.php:1559
|
423 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
424 |
+
#: support.php:3318
|
425 |
+
msgid "agent"
|
426 |
+
msgstr "atendente"
|
427 |
+
|
428 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
429 |
+
#: pro/includes/settings_page_pro.php:72
|
430 |
+
msgid ""
|
431 |
+
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing "
|
432 |
+
"to do this will result in you no longer receiving updates for this plugin."
|
433 |
+
msgstr ""
|
434 |
+
"Por favor insira uma chave de API válida para receber novas atualizações do "
|
435 |
+
"plugin."
|
436 |
+
|
437 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
438 |
+
#: pro/includes/settings_page_pro.php:73
|
439 |
+
msgid "You can obtain a copy of your API key "
|
440 |
+
msgstr "Você pode obter uma cópia de sua chave API"
|
441 |
+
|
442 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
443 |
+
#: pro/includes/settings_page_pro.php:73
|
444 |
+
msgid "here"
|
445 |
+
msgstr "aqui"
|
446 |
+
|
447 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
448 |
+
#: pro/includes/settings_page_pro.php:73
|
449 |
+
msgid ""
|
450 |
+
"An account has been created for you while purchasing the plugin. If you have "
|
451 |
+
"lost your password, please reset it "
|
452 |
+
msgstr ""
|
453 |
+
"Uma conta foi criada para você ao comprar o plugin. Se você perdeu a senha, "
|
454 |
+
"por favor redefina a mesma."
|
455 |
+
|
456 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
457 |
+
#: pro/includes/settings_page_pro.php:74
|
458 |
+
msgid ""
|
459 |
+
"If you feel you are getting this message in error, please try refreshing the "
|
460 |
+
"page."
|
461 |
+
msgstr "Se você acha que receber essa mensagem é um erro, tente recarregar a página."
|
462 |
+
|
463 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
464 |
+
#: pro/includes/settings_page_pro.php:89
|
465 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
466 |
+
#: pro/includes/settings_page_pro.php:830
|
467 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
468 |
+
#: pro/includes/settings_page_pro.php:836
|
469 |
+
msgid "Chat Experience Ratings"
|
470 |
+
msgstr "Avaliações da experiência do chat"
|
471 |
+
|
472 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
473 |
+
#: pro/includes/settings_page_pro.php:96
|
474 |
+
msgid "Find out more."
|
475 |
+
msgstr "Saiba mais"
|
476 |
+
|
477 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
478 |
+
#: pro/includes/settings_page_pro.php:103
|
479 |
+
msgid "Use our server to host your chat server."
|
480 |
+
msgstr "Use novvo server para hospedar seu chat."
|
481 |
+
|
482 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
483 |
+
#: pro/includes/settings_page_pro.php:107
|
484 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
485 |
+
#: support.php:3079
|
486 |
+
msgid "API Key"
|
487 |
+
msgstr "Chave API"
|
488 |
+
|
489 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
490 |
+
#: pro/includes/settings_page_pro.php:112
|
491 |
+
msgid "This API key is "
|
492 |
+
msgstr "Está chave API é"
|
493 |
+
|
494 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
495 |
+
#: pro/includes/settings_page_pro.php:115
|
496 |
+
msgid "valid"
|
497 |
+
msgstr "válida"
|
498 |
+
|
499 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
500 |
+
#: pro/includes/settings_page_pro.php:118
|
501 |
+
msgid "invalid"
|
502 |
+
msgstr "inválida"
|
503 |
+
|
504 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
505 |
+
#: pro/includes/settings_page_pro.php:122
|
506 |
+
msgid ""
|
507 |
+
"A valid API key means that you will be able to get the latest version of the "
|
508 |
+
"plugin as and when it is released, as well as get access to support should "
|
509 |
+
"you require it."
|
510 |
+
msgstr ""
|
511 |
+
"Uma chave de API válida significa que você será capaz de atualizar o plugin "
|
512 |
+
"para as novas versões assim que disponíveis. Também poderá acessar o suporte "
|
513 |
+
"sempre que precisar."
|
514 |
+
|
515 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
516 |
+
#: pro/includes/settings_page_pro.php:213
|
517 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
518 |
+
#: support/includes/settings_page.php:141
|
519 |
+
msgid "Play a sound when a new message is received"
|
520 |
+
msgstr "Tocar um som quando receber uma mensagem"
|
521 |
+
|
522 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
523 |
+
#: pro/includes/settings_page_pro.php:213
|
524 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
525 |
+
#: support/includes/settings_page.php:141
|
526 |
+
msgid ""
|
527 |
+
"Disable this to mute the sound that is played when a new chat message is "
|
528 |
+
"received"
|
529 |
+
msgstr ""
|
530 |
+
"Desabilite esta opção para mutar o som que é tocado quando uma mensagem for "
|
531 |
+
"recebida"
|
532 |
+
|
533 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
534 |
+
#: pro/includes/settings_page_pro.php:399
|
535 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
536 |
+
#: support/includes/settings_page.php:219
|
537 |
+
msgid ""
|
538 |
+
"Email address where offline messages are delivered to. Use comma separated "
|
539 |
+
"email addresses to send to more than one email address"
|
540 |
+
msgstr ""
|
541 |
+
"Endereço de e-mail que as mensagens offline serão entregues. Separe os e-"
|
542 |
+
"mails com vírgula para receber em mais de um e-mail."
|
543 |
+
|
544 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
545 |
+
#: pro/includes/settings_page_pro.php:581
|
546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
547 |
+
#: support/includes/settings_page.php:429
|
548 |
+
msgid "I'm using a localization plugin"
|
549 |
+
msgstr "Estou usando um plugin de localização"
|
550 |
+
|
551 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
552 |
+
#: pro/includes/settings_page_pro.php:584
|
553 |
+
msgid "documentation"
|
554 |
+
msgstr "documentação"
|
555 |
+
|
556 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
557 |
+
#: pro/includes/settings_page_pro.php:589
|
558 |
+
msgid ""
|
559 |
+
"You will only be able to edit the strings shown in the chat window of the "
|
560 |
+
"code now. <br/> This has been done to accommodate as many localization "
|
561 |
+
"plugins as possible. <br/> For more information on how to change these "
|
562 |
+
"strings, please consult the "
|
563 |
+
msgstr ""
|
564 |
+
"Você só será capaz de editar as strings mostradas na janela de chat agora. "
|
565 |
+
"<br/> Isso foi feito para acomodar a maior quantidade de plugins de "
|
566 |
+
"localização possível. <br/> Para mais informações sobre como mudar essas "
|
567 |
+
"strings, por favor consulte o"
|
568 |
+
|
569 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
570 |
+
#: pro/includes/settings_page_pro.php:827
|
571 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
572 |
+
#: support/includes/settings_page.php:566
|
573 |
+
msgid ""
|
574 |
+
"Blocking a user's IP Address here will hide the chat window from them, "
|
575 |
+
"preventing them from chatting with you. Each IP Address must be on a new line"
|
576 |
+
msgstr ""
|
577 |
+
"Bloquear o IP de um usuário irá esconder a janela de chat para ele, "
|
578 |
+
"prevenindo que inicie uma conversa com você. Cada IP deverá estar em uma "
|
579 |
+
"nova linha"
|
580 |
+
|
581 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
582 |
+
#: pro/includes/settings_page_pro.php:836
|
583 |
+
msgid "are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
584 |
+
msgstr "está disponível apenas no plugin WP Live Chat Support Chat Experience Ratings"
|
585 |
+
|
586 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
587 |
+
#: chat-support-pro.php:704
|
588 |
+
msgid "Rating Unavailable"
|
589 |
+
msgstr "Avaliação indisponível"
|
590 |
+
|
591 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
592 |
+
#: chat-support-pro.php:785
|
593 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
594 |
+
#: support.php:2352
|
595 |
+
msgid "Download Chat History"
|
596 |
+
msgstr "Baixar histórico do chat"
|
597 |
+
|
598 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
599 |
+
#: chat-support-pro.php:927
|
600 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
601 |
+
#: chat-support-pro.php:1177
|
602 |
+
msgid "Minimize Chat Window"
|
603 |
+
msgstr "Minimizar janela do chat"
|
604 |
+
|
605 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
606 |
+
#: chat-support-pro.php:1570
|
607 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
608 |
+
#: support.php:1826
|
609 |
+
msgid "Visitors online"
|
610 |
+
msgstr "Visitantes online"
|
611 |
+
|
612 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
613 |
+
#: chat-support-pro.php:1586
|
614 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
615 |
+
#: support.php:1838
|
616 |
+
msgid "Visitor"
|
617 |
+
msgstr "Visitante"
|
618 |
+
|
619 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
620 |
+
#: chat-support-pro.php:1587
|
621 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
622 |
+
#: support.php:1839
|
623 |
+
msgid "Time"
|
624 |
+
msgstr "Tempo"
|
625 |
+
|
626 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
627 |
+
#: chat-support-pro.php:1588
|
628 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
629 |
+
#: support.php:1840
|
630 |
+
msgid "Type"
|
631 |
+
msgstr "Tipo"
|
632 |
+
|
633 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
634 |
+
#: chat-support-pro.php:1589
|
635 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
636 |
+
#: support.php:1841
|
637 |
+
msgid "Data"
|
638 |
+
msgstr "Data"
|
639 |
+
|
640 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
641 |
+
#: chat-support-pro.php:2706
|
642 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
643 |
+
#: support.php:1990
|
644 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
645 |
+
#: support.php:2704
|
646 |
+
msgid "Add-ons"
|
647 |
+
msgstr "Add-ons"
|
648 |
+
|
649 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
650 |
+
#: chat-support-pro.php:2706
|
651 |
+
msgid "Supplimentary Plugins"
|
652 |
+
msgstr "Plugin adicionais"
|
653 |
+
|
654 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
655 |
+
#: chat-support-pro.php:2716
|
656 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
657 |
+
#: support.php:3135
|
658 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
659 |
+
#: support.php:3156
|
660 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
661 |
+
#: support.php:3177
|
662 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
663 |
+
#: support.php:3199
|
664 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
665 |
+
#: support.php:3220
|
666 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
667 |
+
#: support.php:3241
|
668 |
+
msgid "Get this extension"
|
669 |
+
msgstr "Obter esta extensão"
|
670 |
+
|
671 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
672 |
+
#: chat-support-pro.php:2741
|
673 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
674 |
+
#: support.php:519
|
675 |
+
msgid "Extensions"
|
676 |
+
msgstr "Extensões"
|
677 |
+
|
678 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
679 |
+
#: chat-support-pro.php:2749
|
680 |
+
msgid "Statistics"
|
681 |
+
msgstr "Estatísticas"
|
682 |
+
|
683 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
684 |
+
#: chat-support-pro.php:2752
|
685 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
686 |
+
#: support.php:518
|
687 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
688 |
+
#: support.php:2869
|
689 |
+
msgid "Support"
|
690 |
+
msgstr "Suporte"
|
691 |
+
|
692 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
693 |
+
#: support/includes/welcome_page.php:6
|
694 |
+
msgid "Version 6"
|
695 |
+
msgstr "Versão 6"
|
696 |
+
|
697 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
698 |
+
#: support/includes/welcome_page.php:8
|
699 |
+
msgid "The most popular live chat plugin!"
|
700 |
+
msgstr "O plugin de chat mais popular!"
|
701 |
+
|
702 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
703 |
+
#: support.php:529
|
704 |
+
msgid "API Keys"
|
705 |
+
msgstr "Chaves API"
|
706 |
+
|
707 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
708 |
+
#: support.php:535
|
709 |
+
msgid "Premium Extension API Keys"
|
710 |
+
msgstr "Chaves de API de extensão premium"
|
711 |
+
|
712 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
713 |
+
#: support.php:536
|
714 |
+
msgid ""
|
715 |
+
"To find and manage your premium API keys, please visit your <a "
|
716 |
+
"target='_BLANK' href='http://wp-livechat.com/my-account/'>my account</a> "
|
717 |
+
"page."
|
718 |
+
msgstr ""
|
719 |
+
"Para achar e manusear suas chaves API premium, por favor visite a página de "
|
720 |
+
"<a target='_BLANK' href='http://wp-livechat.com/my-account/'>sua conta</a> "
|
721 |
+
"page."
|
722 |
+
|
723 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
724 |
+
#: support.php:1107
|
725 |
+
msgid "Start chat"
|
726 |
+
msgstr "Iniciar chat"
|
727 |
+
|
728 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
729 |
+
#: support.php:1236
|
730 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
731 |
+
#: support.php:1252
|
732 |
+
msgid "Connecting. Please be patient."
|
733 |
+
msgstr "Conectando, seja paciente."
|
734 |
+
|
735 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
736 |
+
#: support.php:1615
|
737 |
+
msgid "New chat received"
|
738 |
+
msgstr "Nova mensagem recebida"
|
739 |
+
|
740 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
741 |
+
#: support.php:1617
|
742 |
+
msgid ""
|
743 |
+
"A new chat has been received. Please go the 'Live Chat' page to accept the "
|
744 |
+
"chat"
|
745 |
+
msgstr "Uma nova mensagem foi recebida. Vá para a página do Live Chat para aceitar."
|
746 |
+
|
747 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
748 |
+
#: support.php:1692
|
749 |
+
msgid "Version 5.0.1"
|
750 |
+
msgstr "Versão 5.0.1"
|
751 |
+
|
752 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
753 |
+
#: support.php:1693
|
754 |
+
msgid "to ensure everything is working correctly."
|
755 |
+
msgstr "Para garantir que tudo esteja funcionando corretamente."
|
756 |
+
|
757 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
758 |
+
#: support.php:1725
|
759 |
+
msgid "Congratulations"
|
760 |
+
msgstr "Parabéns"
|
761 |
+
|
762 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
763 |
+
#: support.php:1726
|
764 |
+
msgid "You are now accepting live chat requests on your site."
|
765 |
+
msgstr "Você agora está aceitando chat online em seu site."
|
766 |
+
|
767 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
768 |
+
#: support.php:1727
|
769 |
+
msgid "The live chat box has automatically been enabled on your website."
|
770 |
+
msgstr "A caixa de chat foi automaticamente habilitada em seu site."
|
771 |
+
|
772 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
773 |
+
#: support.php:1728
|
774 |
+
msgid "Chat notifications will start appearing once visitors send a request."
|
775 |
+
msgstr ""
|
776 |
+
"Notificações de chat irão começar a aparecer quando visitantes enviarem uma "
|
777 |
+
"mensagem."
|
778 |
+
|
779 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
780 |
+
#: support.php:1729
|
781 |
+
msgid ""
|
782 |
+
"You may <a href='?page=wplivechat-menu-settings' target='_BLANK'>modify your "
|
783 |
+
"chat box settings here."
|
784 |
+
msgstr ""
|
785 |
+
"Você pode <a href='?page=wplivechat-menu-settings' target='_BLANK'> "
|
786 |
+
"modificar as configurações da caixa de chat aqui</a>"
|
787 |
+
|
788 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
789 |
+
#: support.php:1730
|
790 |
+
msgid "Experiencing issues?"
|
791 |
+
msgstr "Encontrou problemas?"
|
792 |
+
|
793 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
794 |
+
#: support.php:1730
|
795 |
+
msgid "Visit our troubleshooting section."
|
796 |
+
msgstr "Visite nossa página de solução de problemas."
|
797 |
+
|
798 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
799 |
+
#: support.php:1732
|
800 |
+
msgid "Hide"
|
801 |
+
msgstr "Esconder"
|
802 |
+
|
803 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
804 |
+
#: support.php:1766
|
805 |
+
msgid ""
|
806 |
+
"With the <strong>Initiate Chats</strong> Extension for WP Live Chat Support, "
|
807 |
+
"you can"
|
808 |
+
msgstr "Com a extensão Initiate Chats, você pode"
|
809 |
+
|
810 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
811 |
+
#: support.php:1768
|
812 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
813 |
+
#: support.php:2889
|
814 |
+
msgid "initiate chats"
|
815 |
+
msgstr "iniciar chats"
|
816 |
+
|
817 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
818 |
+
#: support.php:1771
|
819 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
820 |
+
#: support.php:1773
|
821 |
+
msgid "Buy the Initiate Chats Extension now."
|
822 |
+
msgstr "Comprar a extensão Initiate Chats agora."
|
823 |
+
|
824 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
825 |
+
#: support.php:1811
|
826 |
+
msgid "Chat Dashboard"
|
827 |
+
msgstr "Painel do Chat"
|
828 |
+
|
829 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
830 |
+
#: support.php:1992
|
831 |
+
msgid "Get more add-ons"
|
832 |
+
msgstr "Obter mais extensões"
|
833 |
+
|
834 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
835 |
+
#: support.php:2082
|
836 |
+
msgid "The chat has been ended"
|
837 |
+
msgstr "O chat foi habilitado"
|
838 |
+
|
839 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
840 |
+
#: support.php:2704
|
841 |
+
msgid "Suggested Plugins"
|
842 |
+
msgstr "Plugins sugeridos"
|
843 |
+
|
844 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
845 |
+
#: support.php:2715
|
846 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
847 |
+
#: support.php:2716
|
848 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
849 |
+
#: support.php:2717
|
850 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
851 |
+
#: support.php:2722
|
852 |
+
msgid "Sola Support Tickets"
|
853 |
+
msgstr "Sola Support Tickets"
|
854 |
+
|
855 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
856 |
+
#: support.php:2720
|
857 |
+
msgid ""
|
858 |
+
"The easiest to use Help Desk & Support Ticket plugin. Create a support help "
|
859 |
+
"desk quickly and easily with Sola Support Tickets."
|
860 |
+
msgstr ""
|
861 |
+
"O mais fácil plugin de Help Desk & Suporte. Crie um help desk rápido e fácil "
|
862 |
+
"com Sola Support Tickets."
|
863 |
+
|
864 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
865 |
+
#: support.php:2722
|
866 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
867 |
+
#: support.php:2733
|
868 |
+
msgid "Get this Plugin"
|
869 |
+
msgstr "Obter esse plugin"
|
870 |
+
|
871 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
872 |
+
#: support.php:2726
|
873 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
874 |
+
#: support.php:2727
|
875 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
876 |
+
#: support.php:2728
|
877 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
878 |
+
#: support.php:2733
|
879 |
+
msgid "Nifty Newsletters"
|
880 |
+
msgstr "Nifty Newsletters"
|
881 |
+
|
882 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
883 |
+
#: support.php:2731
|
884 |
+
msgid ""
|
885 |
+
"Create and send newsletters, automatic post notifications and autoresponders "
|
886 |
+
"that are modern and beautiful with Nifty Newsletters."
|
887 |
+
msgstr ""
|
888 |
+
"Crie e envie newsletters, notificação automática de post e mais com Nifty "
|
889 |
+
"Newsletters."
|
890 |
+
|
891 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
892 |
+
#: support.php:2765
|
893 |
+
msgid "Price:"
|
894 |
+
msgstr "Preço:"
|
895 |
+
|
896 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
897 |
+
#: support.php:2766
|
898 |
+
msgid "All"
|
899 |
+
msgstr "Todos"
|
900 |
+
|
901 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
902 |
+
#: support.php:2767
|
903 |
+
msgid "Free"
|
904 |
+
msgstr "Gratuito"
|
905 |
+
|
906 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
907 |
+
#: support.php:2768
|
908 |
+
msgid "Paid"
|
909 |
+
msgstr "Pago"
|
910 |
+
|
911 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
912 |
+
#: support.php:2771
|
913 |
+
msgid "For:"
|
914 |
+
msgstr "Para:"
|
915 |
+
|
916 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
917 |
+
#: support.php:2772
|
918 |
+
msgid "Both"
|
919 |
+
msgstr "ambos"
|
920 |
+
|
921 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
922 |
+
#: support.php:2773
|
923 |
+
msgid "Free version"
|
924 |
+
msgstr "Versão Free"
|
925 |
+
|
926 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
927 |
+
#: support.php:2774
|
928 |
+
msgid "Pro version"
|
929 |
+
msgstr "Versão Pro"
|
930 |
+
|
931 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
932 |
+
#: support.php:2810
|
933 |
+
msgid "Already installed"
|
934 |
+
msgstr "Já instalado"
|
935 |
+
|
936 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
937 |
+
#: support.php:2837
|
938 |
+
msgid "WP Live Chat Support"
|
939 |
+
msgstr "WP Live Chat Support"
|
940 |
+
|
941 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
942 |
+
#: support.php:2840
|
943 |
+
msgid "Documentation"
|
944 |
+
msgstr "Documentação"
|
945 |
+
|
946 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
947 |
+
#: support.php:2842
|
948 |
+
msgid ""
|
949 |
+
"Getting started? Read through some of these articles to help you along your "
|
950 |
+
"way."
|
951 |
+
msgstr "Iniciando agora? Leia alguns desses artigos para lhe ajudar."
|
952 |
+
|
953 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
954 |
+
#: support.php:2843
|
955 |
+
msgid "Documentation:"
|
956 |
+
msgstr "Documentação:"
|
957 |
+
|
958 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
959 |
+
#: support.php:2845
|
960 |
+
msgid "Minimum System Requirements"
|
961 |
+
msgstr "Requisitos do sistema"
|
962 |
+
|
963 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
964 |
+
#: support.php:2846
|
965 |
+
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
966 |
+
msgstr "Preciso estar logado no painel para conversar com visitantes?"
|
967 |
+
|
968 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
969 |
+
#: support.php:2847
|
970 |
+
msgid "What are Quick Responses?"
|
971 |
+
msgstr "O que são respostas rápidas?"
|
972 |
+
|
973 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
974 |
+
#: support.php:2848
|
975 |
+
msgid "Can I use this plugin on my multi-site?"
|
976 |
+
msgstr "Posso usar esse plugin em meu multi-site?"
|
977 |
+
|
978 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
979 |
+
#: support.php:2849
|
980 |
+
msgid "How do I disable APC Object Cache?"
|
981 |
+
msgstr "Como desabilito o cache do objeto apC?"
|
982 |
+
|
983 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
984 |
+
#: support.php:2850
|
985 |
+
msgid "Do you have a mobile app?"
|
986 |
+
msgstr "Você tem o app mobile?"
|
987 |
+
|
988 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
989 |
+
#: support.php:2851
|
990 |
+
msgid "How do I check for JavaScript errors on my site?"
|
991 |
+
msgstr "Como verifico erros de JavaScript em meu site?"
|
992 |
+
|
993 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
994 |
+
#: support.php:2855
|
995 |
+
msgid "Troubleshooting"
|
996 |
+
msgstr "Solução de problemas"
|
997 |
+
|
998 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
999 |
+
#: support.php:2857
|
1000 |
+
msgid ""
|
1001 |
+
"WP Live Chat Support has a diverse and wide range of features which may, "
|
1002 |
+
"from time to time, run into conflicts with the thousands of themes and other "
|
1003 |
+
"plugins on the market."
|
1004 |
+
msgstr ""
|
1005 |
+
"WP Live Chat Support tem uma vasta quantidade de recursos que podem, as "
|
1006 |
+
"vezes, conflitar com os milhares de temas e plugins no mercado."
|
1007 |
+
|
1008 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1009 |
+
#: support.php:2858
|
1010 |
+
msgid "Common issues:"
|
1011 |
+
msgstr "Problemas comuns:"
|
1012 |
+
|
1013 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1014 |
+
#: support.php:2860
|
1015 |
+
msgid "The chat box doesnt show up"
|
1016 |
+
msgstr "A janela do chat não aparece"
|
1017 |
+
|
1018 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1019 |
+
#: support.php:2861
|
1020 |
+
msgid "The chat window disappears when I logout or go offline"
|
1021 |
+
msgstr "O chat desaparece quando faço logout ou fico offline"
|
1022 |
+
|
1023 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1024 |
+
#: support.php:2863
|
1025 |
+
msgid "Messages only show when I refresh the chat window"
|
1026 |
+
msgstr "Mensagens só aparecem quando recarrego a janela do chat"
|
1027 |
+
|
1028 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1029 |
+
#: support.php:2864
|
1030 |
+
msgid "I'm not getting any notifications of a new chat"
|
1031 |
+
msgstr "Não estou recebendo notificações de novo chat"
|
1032 |
+
|
1033 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1034 |
+
#: support.php:2865
|
1035 |
+
msgid "The chat window never goes offline"
|
1036 |
+
msgstr "A janela de chat nunca fica offline"
|
1037 |
+
|
1038 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1039 |
+
#: support.php:2871
|
1040 |
+
msgid "Still need help? Use one of these links below."
|
1041 |
+
msgstr "Ainda precisa de ajuda? Use um dos links abaixo."
|
1042 |
+
|
1043 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1044 |
+
#: support.php:2873
|
1045 |
+
msgid "Support forum"
|
1046 |
+
msgstr "Fórum de suporte"
|
1047 |
+
|
1048 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1049 |
+
#: support.php:2874
|
1050 |
+
msgid "Contact us"
|
1051 |
+
msgstr "Contate-nos"
|
1052 |
+
|
1053 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1054 |
+
#: support.php:2889
|
1055 |
+
msgid ""
|
1056 |
+
"With the <strong>Initiate Chats Extension</strong> of WP Live Chat Support, "
|
1057 |
+
"you can"
|
1058 |
+
msgstr "Com o plugin <strong>Initiate Chats Extension</strong>, você pode"
|
1059 |
+
|
1060 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1061 |
+
#: support.php:2889
|
1062 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1063 |
+
#: support.php:2890
|
1064 |
+
msgid "Buy the Initiate Chats Extension now (once off payment)."
|
1065 |
+
msgstr ""
|
1066 |
+
"Compre o plugin <strong>Initiate Chats Extension</strong> agora. (pagamento "
|
1067 |
+
"único)"
|
1068 |
+
|
1069 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1070 |
+
#: support.php:2890
|
1071 |
+
msgid "Multiple Chats"
|
1072 |
+
msgstr "Multiplos Chats"
|
1073 |
+
|
1074 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1075 |
+
#: support.php:2890
|
1076 |
+
msgid "accept and handle multiple chats."
|
1077 |
+
msgstr "aceitar e manter multiplos chats."
|
1078 |
+
|
1079 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1080 |
+
#: support.php:2891
|
1081 |
+
msgid "Add unlimited agents"
|
1082 |
+
msgstr "Adicionar atendentes ilimitados"
|
1083 |
+
|
1084 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1085 |
+
#: support.php:2891
|
1086 |
+
msgid " with the <strong>Mutliple Agents Extension</strong> of WP Live Chat Support"
|
1087 |
+
msgstr "com a extensão <strong>Mutliple Agents Extension</strong>"
|
1088 |
+
|
1089 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1090 |
+
#: support.php:2891
|
1091 |
+
msgid "(once off payment)."
|
1092 |
+
msgstr "(pagamento único)"
|
1093 |
+
|
1094 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1095 |
+
#: support.php:2905
|
1096 |
+
#, php-format
|
1097 |
+
msgid ""
|
1098 |
+
"Thank you for using <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</a>! "
|
1099 |
+
"Please <a href=\"%2$s\" target=\"_blank\">rate us</a> on <a href=\"%2$s\" "
|
1100 |
+
"target=\"_blank\">WordPress.org</a>"
|
1101 |
+
msgstr ""
|
1102 |
+
"Obrigado por usar <a href=\"%1$s\" target=\"_blank\">WP Live Chat Support</a>! "
|
1103 |
+
"Por favor <a href=\"%2$s\" target=\"_blank\">avalie-nos</a> em <a href=\"%2$s\" "
|
1104 |
+
"target=\"_blank\">WordPress.org</a>"
|
1105 |
+
|
1106 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1107 |
+
#: support.php:2910
|
1108 |
+
msgid "WP Live Chat Support is a product of"
|
1109 |
+
msgstr "WP Live Chat Support é um produto de"
|
1110 |
+
|
1111 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1112 |
+
#: support.php:2992
|
1113 |
+
msgid "Add as many agents as you need with the "
|
1114 |
+
msgstr "Adicione quantos atendentes você precisa com a"
|
1115 |
+
|
1116 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1117 |
+
#: support.php:2992
|
1118 |
+
msgid "Multiple Agents Extension."
|
1119 |
+
msgstr "extensão Multiple Agents"
|
1120 |
+
|
1121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1122 |
+
#: support.php:3082
|
1123 |
+
msgid "Verify"
|
1124 |
+
msgstr "Verificar"
|
1125 |
+
|
1126 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1127 |
+
#: support.php:3085
|
1128 |
+
msgid "Status: "
|
1129 |
+
msgstr "Status:"
|
1130 |
+
|
1131 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1132 |
+
#: support.php:3088
|
1133 |
+
msgid "Valid"
|
1134 |
+
msgstr "Válido"
|
1135 |
+
|
1136 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1137 |
+
#: support.php:3089
|
1138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1139 |
+
#: support.php:3093
|
1140 |
+
msgid "Manage this extension"
|
1141 |
+
msgstr "Gerenciar esta extensão"
|
1142 |
+
|
1143 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1144 |
+
#: support.php:3092
|
1145 |
+
msgid "Invalid"
|
1146 |
+
msgstr "Inválido"
|
1147 |
+
|
1148 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1149 |
+
#: support.php:3098
|
1150 |
+
msgid "Linked Domains"
|
1151 |
+
msgstr "Domínios linkados"
|
1152 |
+
|
1153 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1154 |
+
#: support.php:3133
|
1155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1156 |
+
#: support.php:3197
|
1157 |
+
msgid "Initiate a chat with any visitor at any time."
|
1158 |
+
msgstr "Iniciar chat com qualquer visitante a qualquer hora."
|
1159 |
+
|
1160 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1161 |
+
#: support.php:3145
|
1162 |
+
msgid "Mobile & Desktop App"
|
1163 |
+
msgstr "App Mobile e Desktop"
|
1164 |
+
|
1165 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1166 |
+
#: support.php:3154
|
1167 |
+
msgid ""
|
1168 |
+
"Answer chats directly from your mobile phone or dekstop with our mobile app "
|
1169 |
+
"and desktop client"
|
1170 |
+
msgstr ""
|
1171 |
+
"Responda chats diretamente de seu smartphone ou computador com nosso client "
|
1172 |
+
"mobile e desktop"
|
1173 |
+
|
1174 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1175 |
+
#: support.php:3175
|
1176 |
+
msgid ""
|
1177 |
+
"Reduce the resources required by your server - use our cloud server to host "
|
1178 |
+
"your chats."
|
1179 |
+
msgstr ""
|
1180 |
+
"Reduza os recursos necessários por seu servidor - use nosso server em nuvem "
|
1181 |
+
"para hospedar seus chats."
|
1182 |
+
|
1183 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1184 |
+
#: support.php:3218
|
1185 |
+
msgid ""
|
1186 |
+
"Add your company logo, avatar and name to the chat box and add more advanced "
|
1187 |
+
"features."
|
1188 |
+
msgstr ""
|
1189 |
+
"Adicione o logo de sua empresa, avatar e nome para a janela de chat e mais "
|
1190 |
+
"funcionalidades avançadas."
|
1191 |
+
|
1192 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1193 |
+
#: support.php:3230
|
1194 |
+
msgid "Include and Exclude Pages"
|
1195 |
+
msgstr "Incluir e excluir páginas"
|
1196 |
+
|
1197 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1198 |
+
#: support.php:3239
|
1199 |
+
msgid ""
|
1200 |
+
"Control where the chat box is displayed on your website. Choose which pages "
|
1201 |
+
"to include and/or exclude."
|
1202 |
+
msgstr ""
|
1203 |
+
"Controle onde a janela de chat será exibida em seu site. Escolha quais "
|
1204 |
+
"páginas terão ou não o chat."
|
1205 |
+
|
1206 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1207 |
+
#: support.php:3259
|
1208 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1209 |
+
#: support.php:3280
|
1210 |
+
msgid "Relevant Extensions"
|
1211 |
+
msgstr "Extensões relevantes"
|
1212 |
+
|
1213 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1214 |
+
#: support.php:3363
|
1215 |
+
msgid ""
|
1216 |
+
"Your API Key is Invalid. You are not eligible for future updates. Please "
|
1217 |
+
"enter your API key <a href=\"admin.php?page=wplivechat-menu-api-keys-"
|
1218 |
+
"page\">here</a>."
|
1219 |
+
msgstr "Sua chave API é inválida. Você não está apto para updates futuros."
|
1220 |
+
|
1221 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1222 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:105
|
1223 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1224 |
+
#: pro/includes/settings_page_pro.php:289
|
1225 |
+
msgid "Name "
|
1226 |
+
msgstr "Nome"
|
1227 |
+
|
1228 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1229 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:119
|
1230 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1231 |
+
#: pro/includes/settings_page_pro.php:303
|
1232 |
+
msgid "Picture"
|
1233 |
+
msgstr "Foto"
|
1234 |
+
|
1235 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1236 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:127
|
1237 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1238 |
+
#: pro/includes/settings_page_pro.php:311
|
1239 |
+
msgid "Upload Image"
|
1240 |
+
msgstr "Enviar Imagem"
|
1241 |
+
|
1242 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1243 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:129
|
1244 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1245 |
+
#: pro/includes/settings_page_pro.php:313
|
1246 |
+
msgid "Remove Image"
|
1247 |
+
msgstr "Remover imagem"
|
1248 |
+
|
1249 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1250 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:130
|
1251 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1252 |
+
#: pro/includes/settings_page_pro.php:314
|
1253 |
+
msgid "Recomended Size 40px x 40px"
|
1254 |
+
msgstr "Tamanho recomendado 40px x 40px"
|
1255 |
+
|
1256 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1257 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:136
|
1258 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1259 |
+
#: pro/includes/settings_page_pro.php:320
|
1260 |
+
msgid "Logo"
|
1261 |
+
msgstr "Logo"
|
1262 |
+
|
1263 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1264 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:144
|
1265 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1266 |
+
#: pro/includes/settings_page_pro.php:328
|
1267 |
+
msgid "Upload Logo"
|
1268 |
+
msgstr "Enviar Imagem"
|
1269 |
+
|
1270 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1271 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:146
|
1272 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1273 |
+
#: pro/includes/settings_page_pro.php:330
|
1274 |
+
msgid "Remove Logo"
|
1275 |
+
msgstr "Remover logo"
|
1276 |
+
|
1277 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1278 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:147
|
1279 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1280 |
+
#: pro/includes/settings_page_pro.php:331
|
1281 |
+
msgid "Recomended Size 250px x 40px"
|
1282 |
+
msgstr "Tamanho recomendado 250px x 40px"
|
1283 |
+
|
1284 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1285 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:153
|
1286 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1287 |
+
#: pro/includes/settings_page_pro.php:337
|
1288 |
+
msgid "Chat delay (seconds)"
|
1289 |
+
msgstr "Delay do chat (segundos)"
|
1290 |
+
|
1291 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1292 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:162
|
1293 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1294 |
+
#: pro/includes/settings_page_pro.php:346
|
1295 |
+
msgid "Chat notifications"
|
1296 |
+
msgstr "Notificações do chat"
|
1297 |
+
|
1298 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-advanced-chat-
|
1299 |
+
#: box-control/wp-live-chat-support-advanced-chat-box-control.php:189
|
1300 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1301 |
+
#: chat-support-pro.php:648
|
1302 |
+
msgid "Admin"
|
1303 |
+
msgstr "Admin"
|
1304 |
+
|
1305 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
1306 |
+
#: online/wp-live-chat-support-choose-when-online.php:177
|
1307 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1308 |
+
#: chat-support-pro.php:708
|
1309 |
+
msgid "You are currently accepting chats"
|
1310 |
+
msgstr "Você está aceitando chats no momento"
|
1311 |
+
|
1312 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
1313 |
+
#: online/wp-live-chat-support-choose-when-online.php:178
|
1314 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1315 |
+
#: chat-support-pro.php:709
|
1316 |
+
msgid "You are not accepting chats"
|
1317 |
+
msgstr "Você não está aceitando chats"
|
1318 |
+
|
1319 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-choose-when-
|
1320 |
+
#: online/wp-live-chat-support-choose-when-online.php:217
|
1321 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1322 |
+
#: pro/includes/settings_page_pro.php:144
|
1323 |
+
msgid "Choose when I want to be online"
|
1324 |
+
msgstr "Escolher quando eu quero aparecer online"
|
1325 |
+
|
1326 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-include-
|
1327 |
+
#: exclude-pages/wp-live-chat-support-include-exclude-pages.php:121
|
1328 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1329 |
+
#: pro/includes/settings_page_pro.php:222
|
1330 |
+
msgid "Include chat window on the following pages:"
|
1331 |
+
msgstr "Adicionar a janela de chat nas seguintes páginas:"
|
1332 |
+
|
1333 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-include-
|
1334 |
+
#: exclude-pages/wp-live-chat-support-include-exclude-pages.php:121
|
1335 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1336 |
+
#: pro/includes/settings_page_pro.php:222
|
1337 |
+
msgid ""
|
1338 |
+
"Show the chat window on the following pages. Leave blank to show on all. "
|
1339 |
+
"(Use comma-separated Page ID's)"
|
1340 |
+
msgstr ""
|
1341 |
+
"Mostrar a janela de chat nas seguintes páginas. Deixe em branco para mostrar "
|
1342 |
+
"em todas. (Coloque o ID das páginas separados por vírgula)"
|
1343 |
+
|
1344 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-include-
|
1345 |
+
#: exclude-pages/wp-live-chat-support-include-exclude-pages.php:129
|
1346 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1347 |
+
#: pro/includes/settings_page_pro.php:232
|
1348 |
+
msgid "Exclude chat window on the following pages:"
|
1349 |
+
msgstr "Excluir a janela de chat das seguintes páginas:"
|
1350 |
+
|
1351 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-include-
|
1352 |
+
#: exclude-pages/wp-live-chat-support-include-exclude-pages.php:129
|
1353 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1354 |
+
#: pro/includes/settings_page_pro.php:232
|
1355 |
+
msgid ""
|
1356 |
+
"Do not show the chat window on the following pages. Leave blank to show on "
|
1357 |
+
"all. (Use comma-separated Page ID's)"
|
1358 |
+
msgstr ""
|
1359 |
+
"Não mostrar a janela de chat das seguintes páginas. Deixe em branco para "
|
1360 |
+
"mostrar em todas. (Coloque o ID das páginas separados por vírgula)"
|
1361 |
+
|
1362 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-initiate-
|
1363 |
+
#: chats/wp-live-chat-support-initiate-chats.php:133
|
1364 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1365 |
+
#: pro.php:74
|
1366 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1367 |
+
#: pro.php:160
|
1368 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1369 |
+
#: support.php:1326
|
1370 |
+
msgid "Initiate Chat"
|
1371 |
+
msgstr "Iniciar Chat"
|
1372 |
+
|
1373 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-initiate-
|
1374 |
+
#: chats/wp-live-chat-support-initiate-chats.php:206
|
1375 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1376 |
+
#: chat-support-pro.php:1714
|
1377 |
+
msgid "Attempting to open the chat window... Please be patient."
|
1378 |
+
msgstr "Conectando a um atendente. Por favor, seja paciente."
|
1379 |
+
|
1380 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1381 |
+
#: agents/wp-live-chat-support-multiple-agents.php:38
|
1382 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1383 |
+
#: agents/wp-live-chat-support-multiple-agents.php:779
|
1384 |
+
msgid "Multiple Agents"
|
1385 |
+
msgstr "Múltiplos Atendentes"
|
1386 |
+
|
1387 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1388 |
+
#: agents/wp-live-chat-support-multiple-agents.php:262
|
1389 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1390 |
+
#: agents/wp-live-chat-support-multiple-agents.php:278
|
1391 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1392 |
+
#: agents/wp-live-chat-support-multiple-agents.php:293
|
1393 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1394 |
+
#: pro.php:748
|
1395 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1396 |
+
#: pro.php:764
|
1397 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1398 |
+
#: pro.php:779
|
1399 |
+
msgid "Chat Agent"
|
1400 |
+
msgstr "Atendente do Chat"
|
1401 |
+
|
1402 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1403 |
+
#: agents/wp-live-chat-support-multiple-agents.php:267
|
1404 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1405 |
+
#: agents/wp-live-chat-support-multiple-agents.php:283
|
1406 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1407 |
+
#: pro.php:753
|
1408 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1409 |
+
#: pro.php:769
|
1410 |
+
msgid "Make this user a chat agent"
|
1411 |
+
msgstr "Tenha certeza que este usuário é atendente de chat"
|
1412 |
+
|
1413 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1414 |
+
#: agents/wp-live-chat-support-multiple-agents.php:297
|
1415 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1416 |
+
#: pro.php:783
|
1417 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
1418 |
+
msgstr ""
|
1419 |
+
"Suas permissões de usuário não lhe permitem fazer de você mesmo um atendente "
|
1420 |
+
"do chat."
|
1421 |
+
|
1422 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1423 |
+
#: agents/wp-live-chat-support-multiple-agents.php:298
|
1424 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1425 |
+
#: pro.php:784
|
1426 |
+
msgid "Please contact the administrator of this website to change this."
|
1427 |
+
msgstr "Por favor entre em contato com o administrador do site para mudar isso"
|
1428 |
+
|
1429 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1430 |
+
#: agents/wp-live-chat-support-multiple-agents.php:480
|
1431 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1432 |
+
#: pro.php:869
|
1433 |
+
msgid "Chat Agent Online"
|
1434 |
+
msgstr "Atendente online"
|
1435 |
+
|
1436 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1437 |
+
#: agents/wp-live-chat-support-multiple-agents.php:482
|
1438 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1439 |
+
#: agents/wp-live-chat-support-multiple-agents.php:487
|
1440 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1441 |
+
#: pro.php:871
|
1442 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1443 |
+
#: pro.php:876
|
1444 |
+
msgid "Chat Agents Online"
|
1445 |
+
msgstr "Atendentes Online"
|
1446 |
+
|
1447 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1448 |
+
#: agents/wp-live-chat-support-multiple-agents.php:705
|
1449 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1450 |
+
#: pro/includes/settings_page_pro.php:750
|
1451 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1452 |
+
#: support.php:2948
|
1453 |
+
msgid "Current Users that are Chat Agents"
|
1454 |
+
msgstr "Atuais usuários que são atendente do chat"
|
1455 |
+
|
1456 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1457 |
+
#: agents/wp-live-chat-support-multiple-agents.php:737
|
1458 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1459 |
+
#: pro/includes/settings_page_pro.php:782
|
1460 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1461 |
+
#: chat-support-pro.php:2835
|
1462 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1463 |
+
#: support.php:1998
|
1464 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1465 |
+
#: support.php:2968
|
1466 |
+
msgid "Select"
|
1467 |
+
msgstr "Selecionar"
|
1468 |
+
|
1469 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-multiple-
|
1470 |
+
#: agents/wp-live-chat-support-multiple-agents.php:766
|
1471 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1472 |
+
#: pro/includes/settings_page_pro.php:811
|
1473 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
1474 |
+
msgstr "Se não houver atendentes online, o chat será mostrado como offline"
|
1475 |
+
|
1476 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.
|
1477 |
+
#: php:316
|
1478 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:199
|
1479 |
+
msgid "Admin has closed and ended the chat"
|
1480 |
+
msgstr "Administrador fechou e encerrou o bate-papo"
|
1481 |
+
|
1482 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.
|
1483 |
+
#: php:351
|
1484 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/ajax_new.php:223
|
1485 |
+
msgid "There is No Answer. Please Try Again Later"
|
1486 |
+
msgstr "Não há resposta. Tente novamente mais tarde"
|
1487 |
+
|
1488 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1489 |
+
#: pro.php:54
|
1490 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1491 |
+
#: pro.php:173
|
1492 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1493 |
+
#: pro.php:325
|
1494 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1495 |
+
#: chat-support-pro.php:1698
|
1496 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1497 |
+
#: 275
|
1498 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1499 |
+
#: 454
|
1500 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1501 |
+
#: support.php:1945
|
1502 |
+
msgid "IP Address not recorded"
|
1503 |
+
msgstr "Endereço IP não gravado"
|
1504 |
+
|
1505 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1506 |
+
#: pro.php:56
|
1507 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1508 |
+
#: pro.php:175
|
1509 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1510 |
+
#: pro.php:327
|
1511 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1512 |
+
#: chat-support-pro.php:1700
|
1513 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1514 |
+
#: 277
|
1515 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1516 |
+
#: 456
|
1517 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1518 |
+
#: support.php:1947
|
1519 |
+
msgid "Whois for"
|
1520 |
+
msgstr "Whois para"
|
1521 |
+
|
1522 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1523 |
+
#: pro.php:61
|
1524 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1525 |
+
#: pro.php:333
|
1526 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1527 |
+
#: 282
|
1528 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1529 |
+
#: 412
|
1530 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1531 |
+
#: 1224
|
1532 |
+
msgid "Accept Chat"
|
1533 |
+
msgstr "Aceitar Chat"
|
1534 |
+
|
1535 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1536 |
+
#: pro.php:63
|
1537 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1538 |
+
#: pro.php:335
|
1539 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1540 |
+
#: 284
|
1541 |
+
msgid "Incoming Chat"
|
1542 |
+
msgstr "Entrada de chat"
|
1543 |
+
|
1544 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1545 |
+
#: pro.php:63
|
1546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1547 |
+
#: pro.php:335
|
1548 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1549 |
+
#: 284
|
1550 |
+
msgid "You have an incoming chat."
|
1551 |
+
msgstr "Você tem uma entrada de chat"
|
1552 |
+
|
1553 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1554 |
+
#: pro.php:69
|
1555 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1556 |
+
#: pro.php:347
|
1557 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1558 |
+
#: 290
|
1559 |
+
msgid "Chat Active"
|
1560 |
+
msgstr "Ativo"
|
1561 |
+
|
1562 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1563 |
+
#: pro.php:69
|
1564 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1565 |
+
#: pro.php:347
|
1566 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1567 |
+
#: 290
|
1568 |
+
msgid "This chat is active"
|
1569 |
+
msgstr "Este chat está ativo"
|
1570 |
+
|
1571 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1572 |
+
#: pro.php:76
|
1573 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1574 |
+
#: pro.php:162
|
1575 |
+
msgid "You must be a chat agent to initiate chats"
|
1576 |
+
msgstr "Você precisa ser um atendente do chat para iniciar chats"
|
1577 |
+
|
1578 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1579 |
+
#: pro.php:143
|
1580 |
+
msgid "Visitors on site"
|
1581 |
+
msgstr "Visitantes no site"
|
1582 |
+
|
1583 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1584 |
+
#: pro.php:207
|
1585 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1586 |
+
#: pro.php:377
|
1587 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1588 |
+
#: chat-support-pro.php:1738
|
1589 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1590 |
+
#: 313
|
1591 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1592 |
+
#: support.php:1976
|
1593 |
+
msgid "Site Info"
|
1594 |
+
msgstr "Informação do site"
|
1595 |
+
|
1596 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1597 |
+
#: pro.php:209
|
1598 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1599 |
+
#: pro.php:379
|
1600 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1601 |
+
#: chat-support-pro.php:1740
|
1602 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1603 |
+
#: 315
|
1604 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1605 |
+
#: support.php:1978
|
1606 |
+
msgid "Chat initiated on:"
|
1607 |
+
msgstr "Notificações do chat"
|
1608 |
+
|
1609 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1610 |
+
#: pro.php:213
|
1611 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1612 |
+
#: pro.php:383
|
1613 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1614 |
+
#: chat-support-pro.php:1744
|
1615 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1616 |
+
#: 319
|
1617 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1618 |
+
#: support.php:1982
|
1619 |
+
msgid "Advanced Info"
|
1620 |
+
msgstr "Informação avançada"
|
1621 |
+
|
1622 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1623 |
+
#: pro.php:215
|
1624 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1625 |
+
#: pro.php:385
|
1626 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1627 |
+
#: chat-support-pro.php:1746
|
1628 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1629 |
+
#: 321
|
1630 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1631 |
+
#: support.php:1984
|
1632 |
+
msgid "Browser:"
|
1633 |
+
msgstr "Navegador:"
|
1634 |
+
|
1635 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1636 |
+
#: pro.php:216
|
1637 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1638 |
+
#: pro.php:386
|
1639 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1640 |
+
#: chat-support-pro.php:1747
|
1641 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1642 |
+
#: 322
|
1643 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1644 |
+
#: support.php:1985
|
1645 |
+
msgid "IP Address:"
|
1646 |
+
msgstr "Endereço de Email"
|
1647 |
+
|
1648 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1649 |
+
#: pro.php:259
|
1650 |
+
msgid "No visitors on-line at the moment"
|
1651 |
+
msgstr "Não há sessões de bate-papo disponíveis no momento"
|
1652 |
+
|
1653 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1654 |
+
#: pro.php:302
|
1655 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1656 |
+
#: 258
|
1657 |
+
msgid "No chat sessions available at the moment"
|
1658 |
+
msgstr "Não há sessões de bate-papo disponíveis no momento"
|
1659 |
+
|
1660 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1661 |
+
#: pro.php:304
|
1662 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1663 |
+
#: 260
|
1664 |
+
msgid "Active Chats"
|
1665 |
+
msgstr "Live Chat"
|
1666 |
+
|
1667 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1668 |
+
#: pro.php:339
|
1669 |
+
msgid "You must be a chat agent to answer chats"
|
1670 |
+
msgstr "Você precisa ser um atendente do chat para responder chats"
|
1671 |
+
|
1672 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1673 |
+
#: pro.php:345
|
1674 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1675 |
+
#: 288
|
1676 |
+
msgid "Open Chat Window"
|
1677 |
+
msgstr "Abrir Janela do Chat"
|
1678 |
+
|
1679 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1680 |
+
#: pro.php:349
|
1681 |
+
msgid "Chat has been answered by another agent"
|
1682 |
+
msgstr "Chat foi respondido por outro atendente"
|
1683 |
+
|
1684 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1685 |
+
#: pro.php:350
|
1686 |
+
msgid "Chat answered by another agent"
|
1687 |
+
msgstr "Chat respondido por outro atendente"
|
1688 |
+
|
1689 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1690 |
+
#: pro.php:409
|
1691 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1692 |
+
#: 1068
|
1693 |
+
msgid "WP Live Chat Support - Offline Message from "
|
1694 |
+
msgstr "WP Live Chat Support Feedback"
|
1695 |
+
|
1696 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1697 |
+
#: pro.php:410
|
1698 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1699 |
+
#: pro.php:969
|
1700 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1701 |
+
#: chat-support-pro.php:765
|
1702 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1703 |
+
#: chat-support-pro.php:976
|
1704 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1705 |
+
#: chat-support-pro.php:1014
|
1706 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1707 |
+
#: chat-support-pro.php:1225
|
1708 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1709 |
+
#: chat-support-pro.php:1254
|
1710 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1711 |
+
#: 1069
|
1712 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1713 |
+
#: 1442
|
1714 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1715 |
+
#: support/includes/deprecated.php:191
|
1716 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1717 |
+
#: support/includes/deprecated.php:390
|
1718 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1719 |
+
#: support.php:1023
|
1720 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1721 |
+
#: support.php:1206
|
1722 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1723 |
+
#: support.php:2332
|
1724 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1725 |
+
#: support.php:2442
|
1726 |
+
msgid "Name"
|
1727 |
+
msgstr "Nome"
|
1728 |
+
|
1729 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1730 |
+
#: pro.php:410
|
1731 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1732 |
+
#: pro.php:970
|
1733 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1734 |
+
#: chat-support-pro.php:766
|
1735 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1736 |
+
#: chat-support-pro.php:977
|
1737 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1738 |
+
#: chat-support-pro.php:1015
|
1739 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1740 |
+
#: chat-support-pro.php:1226
|
1741 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1742 |
+
#: chat-support-pro.php:1255
|
1743 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1744 |
+
#: 1070
|
1745 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1746 |
+
#: 1443
|
1747 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1748 |
+
#: support/includes/deprecated.php:192
|
1749 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1750 |
+
#: support/includes/deprecated.php:391
|
1751 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1752 |
+
#: support.php:1024
|
1753 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1754 |
+
#: support.php:1207
|
1755 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1756 |
+
#: support.php:2333
|
1757 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1758 |
+
#: support.php:2443
|
1759 |
+
msgid "Email"
|
1760 |
+
msgstr "Email"
|
1761 |
+
|
1762 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1763 |
+
#: pro.php:410
|
1764 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1765 |
+
#: pro.php:971
|
1766 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1767 |
+
#: pro.php:1543
|
1768 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1769 |
+
#: chat-support-pro.php:1016
|
1770 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1771 |
+
#: chat-support-pro.php:1256
|
1772 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1773 |
+
#: 1071
|
1774 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1775 |
+
#: support.php:1208
|
1776 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1777 |
+
#: support.php:2444
|
1778 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1779 |
+
#: support.php:3309
|
1780 |
+
msgid "Message"
|
1781 |
+
msgstr "Mensagem"
|
1782 |
+
|
1783 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1784 |
+
#: pro.php:410
|
1785 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1786 |
+
#: 1072
|
1787 |
+
msgid "Via WP Live Chat Support"
|
1788 |
+
msgstr "WP Live Chat Support Feedback"
|
1789 |
+
|
1790 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1791 |
+
#: pro.php:480
|
1792 |
+
msgid "Alert: Someone wants to chat with you on "
|
1793 |
+
msgstr "Alerta: Alguém quer conversar com você no"
|
1794 |
+
|
1795 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1796 |
+
#: pro.php:481
|
1797 |
+
msgid "Someone wants to chat with you on your website"
|
1798 |
+
msgstr "Alguém quer conversar com você no seu site"
|
1799 |
+
|
1800 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1801 |
+
#: pro.php:481
|
1802 |
+
msgid "Log in"
|
1803 |
+
msgstr "Log In"
|
1804 |
+
|
1805 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1806 |
+
#: pro.php:968
|
1807 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1808 |
+
#: chat-support-pro.php:764
|
1809 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
1810 |
+
#: 1441
|
1811 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1812 |
+
#: support.php:2331
|
1813 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1814 |
+
#: support.php:2441
|
1815 |
+
msgid "Date"
|
1816 |
+
msgstr "Data"
|
1817 |
+
|
1818 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/functions-
|
1819 |
+
#: pro.php:985
|
1820 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1821 |
+
#: support.php:2454
|
1822 |
+
msgid "You have not received any offline messages."
|
1823 |
+
msgstr "Você não recebeu nenhuma mensagem offline"
|
1824 |
+
|
1825 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1826 |
+
#: pro/includes/settings_page_pro.php:48
|
1827 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1828 |
+
#: support/includes/settings_page.php:20
|
1829 |
+
msgid "WP Live Chat Support Settings"
|
1830 |
+
msgstr "Configurações do WP Live Chat Support"
|
1831 |
+
|
1832 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1833 |
+
#: pro/includes/settings_page_pro.php:71
|
1834 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1835 |
+
#: chat-support-pro.php:632
|
1836 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1837 |
+
#: support.php:1673
|
1838 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1839 |
+
#: support.php:1688
|
1840 |
+
msgid "Dear Pro User"
|
1841 |
+
msgstr "Caro Pro User"
|
1842 |
+
|
1843 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1844 |
+
#: pro/includes/settings_page_pro.php:83
|
1845 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1846 |
+
#: support/includes/settings_page.php:42
|
1847 |
+
msgid "General Settings"
|
1848 |
+
msgstr "Configurações Gerais"
|
1849 |
+
|
1850 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1851 |
+
#: pro/includes/settings_page_pro.php:84
|
1852 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1853 |
+
#: support/includes/settings_page.php:47
|
1854 |
+
msgid "Chat Box"
|
1855 |
+
msgstr "Chat Box"
|
1856 |
+
|
1857 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1858 |
+
#: pro/includes/settings_page_pro.php:85
|
1859 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1860 |
+
#: pro/includes/settings_page_pro.php:383
|
1861 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
1862 |
+
#: chat-support-pro.php:2737
|
1863 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1864 |
+
#: support/includes/settings_page.php:52
|
1865 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1866 |
+
#: support/includes/settings_page.php:203
|
1867 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1868 |
+
#: support.php:510
|
1869 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
1870 |
+
#: support.php:513
|
1871 |
+
msgid "Offline Messages"
|
1872 |
+
msgstr "Mensagens Offline"
|
1873 |
+
|
1874 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1875 |
+
#: pro/includes/settings_page_pro.php:86
|
1876 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1877 |
+
#: pro/includes/settings_page_pro.php:485
|
1878 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1879 |
+
#: support/includes/settings_page.php:57
|
1880 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1881 |
+
#: support/includes/settings_page.php:344
|
1882 |
+
msgid "Styling"
|
1883 |
+
msgstr "Estilos"
|
1884 |
+
|
1885 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1886 |
+
#: pro/includes/settings_page_pro.php:87
|
1887 |
+
msgid "Chat Agents"
|
1888 |
+
msgstr "Atendentes"
|
1889 |
+
|
1890 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1891 |
+
#: pro/includes/settings_page_pro.php:88
|
1892 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1893 |
+
#: support/includes/settings_page.php:67
|
1894 |
+
msgid "Blocked Visitors"
|
1895 |
+
msgstr "Visitantes bloqueados"
|
1896 |
+
|
1897 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1898 |
+
#: pro/includes/settings_page_pro.php:93
|
1899 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1900 |
+
#: support/includes/settings_page.php:80
|
1901 |
+
msgid "Main Settings"
|
1902 |
+
msgstr "Configurações Principais"
|
1903 |
+
|
1904 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1905 |
+
#: pro/includes/settings_page_pro.php:130
|
1906 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1907 |
+
#: support/includes/settings_page.php:83
|
1908 |
+
msgid "Chat enabled"
|
1909 |
+
msgstr "Chat ativo"
|
1910 |
+
|
1911 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1912 |
+
#: pro/includes/settings_page_pro.php:135
|
1913 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1914 |
+
#: support/includes/settings_page.php:86
|
1915 |
+
msgid "Yes"
|
1916 |
+
msgstr "Sim"
|
1917 |
+
|
1918 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1919 |
+
#: pro/includes/settings_page_pro.php:138
|
1920 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1921 |
+
#: support/includes/settings_page.php:87
|
1922 |
+
msgid "No"
|
1923 |
+
msgstr "Não"
|
1924 |
+
|
1925 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1926 |
+
#: pro/includes/settings_page_pro.php:154
|
1927 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1928 |
+
#: support/includes/settings_page.php:93
|
1929 |
+
msgid "Hide Chat"
|
1930 |
+
msgstr "Esconder Chat"
|
1931 |
+
|
1932 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1933 |
+
#: pro/includes/settings_page_pro.php:154
|
1934 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1935 |
+
#: support/includes/settings_page.php:93
|
1936 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
1937 |
+
msgstr "Ocultar bate-papo por 24 horas quando o usuário clicar no X"
|
1938 |
+
|
1939 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1940 |
+
#: pro/includes/settings_page_pro.php:162
|
1941 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1942 |
+
#: support/includes/settings_page.php:101
|
1943 |
+
msgid "Require Name And Email"
|
1944 |
+
msgstr "Obrigar Nome e E-mail"
|
1945 |
+
|
1946 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1947 |
+
#: pro/includes/settings_page_pro.php:162
|
1948 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1949 |
+
#: support/includes/settings_page.php:101
|
1950 |
+
msgid "Users will have to enter their Name and Email Address when starting a chat"
|
1951 |
+
msgstr "Os usuários terão que entrar com o Nome e E-mail quando iniciarem um chat."
|
1952 |
+
|
1953 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1954 |
+
#: pro/includes/settings_page_pro.php:172
|
1955 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1956 |
+
#: support/includes/settings_page.php:109
|
1957 |
+
msgid "Input Field Replacement Text"
|
1958 |
+
msgstr "Substituição de texto do campo de entrada"
|
1959 |
+
|
1960 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1961 |
+
#: pro/includes/settings_page_pro.php:172
|
1962 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1963 |
+
#: support/includes/settings_page.php:109
|
1964 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
1965 |
+
msgstr "Este texto será mostrado nos campos de Nome e E-mail"
|
1966 |
+
|
1967 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1968 |
+
#: pro/includes/settings_page_pro.php:182
|
1969 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1970 |
+
#: support/includes/settings_page.php:117
|
1971 |
+
msgid "Use Logged In User Details"
|
1972 |
+
msgstr "Usar detalhes do usuário logado"
|
1973 |
+
|
1974 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1975 |
+
#: pro/includes/settings_page_pro.php:182
|
1976 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1977 |
+
#: support/includes/settings_page.php:117
|
1978 |
+
msgid ""
|
1979 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
1980 |
+
"in."
|
1981 |
+
msgstr "O Nome e E-mail do usuário logado serão usado como padrão."
|
1982 |
+
|
1983 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1984 |
+
#: pro/includes/settings_page_pro.php:193
|
1985 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1986 |
+
#: support/includes/settings_page.php:125
|
1987 |
+
msgid "Enable On Mobile Devices"
|
1988 |
+
msgstr "Habilitar em dispositivos móveis"
|
1989 |
+
|
1990 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
1991 |
+
#: pro/includes/settings_page_pro.php:193
|
1992 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
1993 |
+
#: support/includes/settings_page.php:125
|
1994 |
+
msgid ""
|
1995 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
1996 |
+
"devices. (Smartphones and Tablets)"
|
1997 |
+
msgstr ""
|
1998 |
+
"Desabilitar essa opção quer dizer que a caixa do Chat não será exibida em "
|
1999 |
+
"dispositivos móveis. (Smartphones e Tablets)"
|
2000 |
+
|
2001 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2002 |
+
#: pro/includes/settings_page_pro.php:203
|
2003 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2004 |
+
#: support/includes/settings_page.php:133
|
2005 |
+
msgid "Record a visitor's IP Address"
|
2006 |
+
msgstr "Gravar o endereço IP do visitante"
|
2007 |
+
|
2008 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2009 |
+
#: pro/includes/settings_page_pro.php:203
|
2010 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2011 |
+
#: support/includes/settings_page.php:133
|
2012 |
+
msgid "Disable this to enable anonymity for your visitors"
|
2013 |
+
msgstr "Desabilite essa opção para que os visitantes fiquem anônimos"
|
2014 |
+
|
2015 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2016 |
+
#: pro/includes/settings_page_pro.php:242
|
2017 |
+
msgid "Allow any user to make themselves a chat agent"
|
2018 |
+
msgstr "Permitir que qualquer usuário torne-se um atendente do chat"
|
2019 |
+
|
2020 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2021 |
+
#: pro/includes/settings_page_pro.php:242
|
2022 |
+
msgid ""
|
2023 |
+
"Checking this will allow any of your users to make themselves a chat agent "
|
2024 |
+
"when editing their profile."
|
2025 |
+
msgstr ""
|
2026 |
+
"Marcar essa opção permitirá que qualquer usuário torne-se um atendente do "
|
2027 |
+
"chat quando estiver editando seu perfil."
|
2028 |
+
|
2029 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2030 |
+
#: pro/includes/settings_page_pro.php:255
|
2031 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2032 |
+
#: support/includes/settings_page.php:153
|
2033 |
+
msgid "Chat Window Settings"
|
2034 |
+
msgstr "Configurações da Janela do Chat"
|
2035 |
+
|
2036 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2037 |
+
#: pro/includes/settings_page_pro.php:258
|
2038 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2039 |
+
#: support/includes/settings_page.php:156
|
2040 |
+
msgid "Chat box alignment"
|
2041 |
+
msgstr "Caixa de alinhamento do chat"
|
2042 |
+
|
2043 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2044 |
+
#: pro/includes/settings_page_pro.php:263
|
2045 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2046 |
+
#: support/includes/settings_page.php:159
|
2047 |
+
msgid "Bottom left"
|
2048 |
+
msgstr "Inferior à esquerda"
|
2049 |
+
|
2050 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2051 |
+
#: pro/includes/settings_page_pro.php:266
|
2052 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2053 |
+
#: support/includes/settings_page.php:160
|
2054 |
+
msgid "Bottom right"
|
2055 |
+
msgstr "Inferior à direita"
|
2056 |
+
|
2057 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2058 |
+
#: pro/includes/settings_page_pro.php:269
|
2059 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2060 |
+
#: support/includes/settings_page.php:161
|
2061 |
+
msgid "Left"
|
2062 |
+
msgstr "Esquerda"
|
2063 |
+
|
2064 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2065 |
+
#: pro/includes/settings_page_pro.php:272
|
2066 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2067 |
+
#: support/includes/settings_page.php:162
|
2068 |
+
msgid "Right"
|
2069 |
+
msgstr "Direita"
|
2070 |
+
|
2071 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2072 |
+
#: pro/includes/settings_page_pro.php:278
|
2073 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2074 |
+
#: support/includes/settings_page.php:168
|
2075 |
+
msgid "Auto Pop-up"
|
2076 |
+
msgstr "Auto Pop-up"
|
2077 |
+
|
2078 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2079 |
+
#: pro/includes/settings_page_pro.php:278
|
2080 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2081 |
+
#: support/includes/settings_page.php:168
|
2082 |
+
msgid ""
|
2083 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
2084 |
+
"email address)."
|
2085 |
+
msgstr ""
|
2086 |
+
"Expanda a caixa de bate-papo automaticamente (solicita ao usuário que digite "
|
2087 |
+
"seu nome e endereço de e-mail)."
|
2088 |
+
|
2089 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2090 |
+
#: pro/includes/settings_page_pro.php:356
|
2091 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2092 |
+
#: support/includes/settings_page.php:178
|
2093 |
+
msgid "Display name and avatar in chat"
|
2094 |
+
msgstr "Mostrar nome e avatar no chat"
|
2095 |
+
|
2096 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2097 |
+
#: pro/includes/settings_page_pro.php:356
|
2098 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2099 |
+
#: support/includes/settings_page.php:178
|
2100 |
+
msgid "Display the agent and user name above each message in the chat window."
|
2101 |
+
msgstr "Mostra a imagem e o nome do atendente em cada mensagem na janela de chat."
|
2102 |
+
|
2103 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2104 |
+
#: pro/includes/settings_page_pro.php:368
|
2105 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2106 |
+
#: support/includes/settings_page.php:188
|
2107 |
+
msgid "Only show the chat window to users that are logged in"
|
2108 |
+
msgstr "Mostrar janela de chat apenas para usuários logados"
|
2109 |
+
|
2110 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2111 |
+
#: pro/includes/settings_page_pro.php:368
|
2112 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2113 |
+
#: support/includes/settings_page.php:188
|
2114 |
+
msgid ""
|
2115 |
+
"By checking this, only users that are logged in will be able to chat with "
|
2116 |
+
"you."
|
2117 |
+
msgstr ""
|
2118 |
+
"Marcando essa opção, apenas usuários logados poderão iniciar um chat com "
|
2119 |
+
"você."
|
2120 |
+
|
2121 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2122 |
+
#: pro/includes/settings_page_pro.php:387
|
2123 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2124 |
+
#: support/includes/settings_page.php:207
|
2125 |
+
msgid "Do not allow users to send offline messages"
|
2126 |
+
msgstr "Não permitir que usuários enviem mensagens offline"
|
2127 |
+
|
2128 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2129 |
+
#: pro/includes/settings_page_pro.php:387
|
2130 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2131 |
+
#: support/includes/settings_page.php:207
|
2132 |
+
msgid ""
|
2133 |
+
"The chat window will be hidden when it is offline. Users will not be able to "
|
2134 |
+
"send offline messages to you"
|
2135 |
+
msgstr ""
|
2136 |
+
"A janela de chat ficará invisível quando estiver offline. Usuários não "
|
2137 |
+
"poderão mandar mensagens offline para você."
|
2138 |
+
|
2139 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2140 |
+
#: pro/includes/settings_page_pro.php:399
|
2141 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2142 |
+
#: support/includes/settings_page.php:219
|
2143 |
+
msgid "Email Address"
|
2144 |
+
msgstr "Endereço de Email"
|
2145 |
+
|
2146 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2147 |
+
#: pro/includes/settings_page_pro.php:412
|
2148 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2149 |
+
#: support/includes/settings_page.php:231
|
2150 |
+
msgid "Sending Method"
|
2151 |
+
msgstr "Método de envio"
|
2152 |
+
|
2153 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2154 |
+
#: pro/includes/settings_page_pro.php:413
|
2155 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2156 |
+
#: support/includes/settings_page.php:232
|
2157 |
+
msgid "WP Mail"
|
2158 |
+
msgstr "WP Mail"
|
2159 |
+
|
2160 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2161 |
+
#: pro/includes/settings_page_pro.php:414
|
2162 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2163 |
+
#: support/includes/settings_page.php:233
|
2164 |
+
msgid "PHP Mailer"
|
2165 |
+
msgstr "PHP Mailer"
|
2166 |
+
|
2167 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2168 |
+
#: pro/includes/settings_page_pro.php:430
|
2169 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2170 |
+
#: support/includes/settings_page.php:249
|
2171 |
+
msgid "Host"
|
2172 |
+
msgstr "Servidor"
|
2173 |
+
|
2174 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2175 |
+
#: pro/includes/settings_page_pro.php:438
|
2176 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2177 |
+
#: support/includes/settings_page.php:257
|
2178 |
+
msgid "Port"
|
2179 |
+
msgstr "Porta"
|
2180 |
+
|
2181 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2182 |
+
#: pro/includes/settings_page_pro.php:446
|
2183 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2184 |
+
#: support/includes/settings_page.php:265
|
2185 |
+
msgid "Username"
|
2186 |
+
msgstr "Nome de usuário"
|
2187 |
+
|
2188 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2189 |
+
#: pro/includes/settings_page_pro.php:454
|
2190 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2191 |
+
#: support/includes/settings_page.php:273
|
2192 |
+
msgid "Password"
|
2193 |
+
msgstr "Senha"
|
2194 |
+
|
2195 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2196 |
+
#: pro/includes/settings_page_pro.php:463
|
2197 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2198 |
+
#: support/includes/settings_page.php:282
|
2199 |
+
msgid "Offline Chat Box Title"
|
2200 |
+
msgstr "Texto offline"
|
2201 |
+
|
2202 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2203 |
+
#: pro/includes/settings_page_pro.php:471
|
2204 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2205 |
+
#: support/includes/settings_page.php:290
|
2206 |
+
msgid "Offline Text Fields"
|
2207 |
+
msgstr "Texto offline"
|
2208 |
+
|
2209 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2210 |
+
#: pro/includes/settings_page_pro.php:504
|
2211 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2212 |
+
#: support/includes/settings_page.php:348
|
2213 |
+
msgid "Choose a theme"
|
2214 |
+
msgstr "Escolha um tema"
|
2215 |
+
|
2216 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2217 |
+
#: pro/includes/settings_page_pro.php:509
|
2218 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2219 |
+
#: pro/includes/settings_page_pro.php:512
|
2220 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2221 |
+
#: support/includes/settings_page.php:353
|
2222 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2223 |
+
#: support/includes/settings_page.php:356
|
2224 |
+
msgid "Theme 1"
|
2225 |
+
msgstr "Tema 1"
|
2226 |
+
|
2227 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2228 |
+
#: pro/includes/settings_page_pro.php:515
|
2229 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2230 |
+
#: pro/includes/settings_page_pro.php:518
|
2231 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2232 |
+
#: support/includes/settings_page.php:359
|
2233 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2234 |
+
#: support/includes/settings_page.php:362
|
2235 |
+
msgid "Theme 2"
|
2236 |
+
msgstr "Tema 2"
|
2237 |
+
|
2238 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2239 |
+
#: pro/includes/settings_page_pro.php:521
|
2240 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2241 |
+
#: pro/includes/settings_page_pro.php:524
|
2242 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2243 |
+
#: support/includes/settings_page.php:365
|
2244 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2245 |
+
#: support/includes/settings_page.php:368
|
2246 |
+
msgid "Theme 3"
|
2247 |
+
msgstr "Tema 3"
|
2248 |
+
|
2249 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2250 |
+
#: pro/includes/settings_page_pro.php:527
|
2251 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2252 |
+
#: pro/includes/settings_page_pro.php:530
|
2253 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2254 |
+
#: support/includes/settings_page.php:371
|
2255 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2256 |
+
#: support/includes/settings_page.php:374
|
2257 |
+
msgid "Theme 4"
|
2258 |
+
msgstr "Tema 4"
|
2259 |
+
|
2260 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2261 |
+
#: pro/includes/settings_page_pro.php:533
|
2262 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2263 |
+
#: pro/includes/settings_page_pro.php:536
|
2264 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2265 |
+
#: support/includes/settings_page.php:377
|
2266 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2267 |
+
#: support/includes/settings_page.php:380
|
2268 |
+
msgid "Theme 5"
|
2269 |
+
msgstr "Tema 5"
|
2270 |
+
|
2271 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2272 |
+
#: pro/includes/settings_page_pro.php:539
|
2273 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2274 |
+
#: support/includes/settings_page.php:383
|
2275 |
+
msgid "Theme 6"
|
2276 |
+
msgstr "Tema 6"
|
2277 |
+
|
2278 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2279 |
+
#: pro/includes/settings_page_pro.php:542
|
2280 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2281 |
+
#: support/includes/settings_page.php:386
|
2282 |
+
msgid "Custom. Enter Colour Values Below"
|
2283 |
+
msgstr "Personalizado, escolha as cores abaixo."
|
2284 |
+
|
2285 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2286 |
+
#: pro/includes/settings_page_pro.php:568
|
2287 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2288 |
+
#: support/includes/settings_page.php:416
|
2289 |
+
msgid "Chat box fill color"
|
2290 |
+
msgstr "Preenchimento de cor do Chat box"
|
2291 |
+
|
2292 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2293 |
+
#: pro/includes/settings_page_pro.php:574
|
2294 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2295 |
+
#: support/includes/settings_page.php:422
|
2296 |
+
msgid "Chat box font color"
|
2297 |
+
msgstr "Cor da fonte do Chat Box"
|
2298 |
+
|
2299 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2300 |
+
#: pro/includes/settings_page_pro.php:594
|
2301 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2302 |
+
#: support/includes/settings_page.php:437
|
2303 |
+
msgid "First Section Text"
|
2304 |
+
msgstr "Texto da primeira seção"
|
2305 |
+
|
2306 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2307 |
+
#: pro/includes/settings_page_pro.php:601
|
2308 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2309 |
+
#: support/includes/settings_page.php:444
|
2310 |
+
msgid "Intro Text"
|
2311 |
+
msgstr "Texto de introdução"
|
2312 |
+
|
2313 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2314 |
+
#: pro/includes/settings_page_pro.php:607
|
2315 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2316 |
+
#: support/includes/settings_page.php:450
|
2317 |
+
msgid "Second Section Text"
|
2318 |
+
msgstr "Texto da segunda seção"
|
2319 |
+
|
2320 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2321 |
+
#: pro/includes/settings_page_pro.php:614
|
2322 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2323 |
+
#: support/includes/settings_page.php:457
|
2324 |
+
msgid "Reactivate Chat Section Text"
|
2325 |
+
msgstr "Reativar seção de texto do chat"
|
2326 |
+
|
2327 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2328 |
+
#: pro/includes/settings_page_pro.php:622
|
2329 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2330 |
+
#: support/includes/settings_page.php:465
|
2331 |
+
msgid "User chat welcome"
|
2332 |
+
msgstr "Usuário bem vindo ao chat"
|
2333 |
+
|
2334 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2335 |
+
#: pro/includes/settings_page_pro.php:628
|
2336 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2337 |
+
#: support/includes/settings_page.php:471
|
2338 |
+
msgid "Other text"
|
2339 |
+
msgstr "Outro"
|
2340 |
+
|
2341 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2342 |
+
#: pro/includes/settings_page_pro.php:630
|
2343 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2344 |
+
#: support/includes/settings_page.php:473
|
2345 |
+
msgid "This text is shown above the user chat input field"
|
2346 |
+
msgstr "Este texto é exibido a cima do campo de texto do usuário"
|
2347 |
+
|
2348 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2349 |
+
#: pro/includes/settings_page_pro.php:662
|
2350 |
+
msgid ""
|
2351 |
+
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
2352 |
+
"update your plugin to allow for animations to function"
|
2353 |
+
msgstr ""
|
2354 |
+
"Você está usando uma versão desatualizada do <strong>WP Live Chat Support "
|
2355 |
+
"Pro</strong>. Por favor"
|
2356 |
+
|
2357 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2358 |
+
#: pro/includes/settings_page_pro.php:666
|
2359 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2360 |
+
#: support/includes/settings_page.php:501
|
2361 |
+
msgid "Choose an animation"
|
2362 |
+
msgstr "Escolha uma animação"
|
2363 |
+
|
2364 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2365 |
+
#: pro/includes/settings_page_pro.php:674
|
2366 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2367 |
+
#: support/includes/settings_page.php:509
|
2368 |
+
msgid "Slide Up"
|
2369 |
+
msgstr "Deslizar para cima"
|
2370 |
+
|
2371 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2372 |
+
#: pro/includes/settings_page_pro.php:680
|
2373 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2374 |
+
#: support/includes/settings_page.php:515
|
2375 |
+
msgid "Slide From The Side"
|
2376 |
+
msgstr "Deslizar do lado"
|
2377 |
+
|
2378 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2379 |
+
#: pro/includes/settings_page_pro.php:686
|
2380 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2381 |
+
#: support/includes/settings_page.php:521
|
2382 |
+
msgid "Fade In"
|
2383 |
+
msgstr "Desvanecer"
|
2384 |
+
|
2385 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2386 |
+
#: pro/includes/settings_page_pro.php:692
|
2387 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2388 |
+
#: support/includes/settings_page.php:527
|
2389 |
+
msgid "No Animation"
|
2390 |
+
msgstr "Sem animação"
|
2391 |
+
|
2392 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2393 |
+
#: pro/includes/settings_page_pro.php:815
|
2394 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2395 |
+
#: support/includes/settings_page.php:554
|
2396 |
+
msgid "Blocked Visitors - Based on IP Address"
|
2397 |
+
msgstr "Visitantes bloqueados - Baseado no endereço IP"
|
2398 |
+
|
2399 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2400 |
+
#: pro/includes/settings_page_pro.php:816
|
2401 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2402 |
+
#: support/includes/settings_page.php:555
|
2403 |
+
msgid "Enter each IP Address you would like to block on a new line"
|
2404 |
+
msgstr "Insira cada Endereço IP que gostaria de bloquear em uma nova linha"
|
2405 |
+
|
2406 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-
|
2407 |
+
#: pro/includes/settings_page_pro.php:857
|
2408 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2409 |
+
#: support/includes/settings_page.php:572
|
2410 |
+
msgid "Save Settings"
|
2411 |
+
msgstr "Salvar Configurações"
|
2412 |
+
|
2413 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2414 |
+
#: chat-support-pro.php:616
|
2415 |
+
msgid "Dear User"
|
2416 |
+
msgstr "Caro Pro User"
|
2417 |
+
|
2418 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2419 |
+
#: chat-support-pro.php:617
|
2420 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
2421 |
+
msgstr ""
|
2422 |
+
"Você está usando uma versão desatualizada do <strong>WP Live Chat Support "
|
2423 |
+
"Pro</strong>. Por favor"
|
2424 |
+
|
2425 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2426 |
+
#: chat-support-pro.php:617
|
2427 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2428 |
+
#: support.php:1674
|
2429 |
+
msgid "update to at least version"
|
2430 |
+
msgstr "atualizar para a versão mais recente"
|
2431 |
+
|
2432 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2433 |
+
#: chat-support-pro.php:617
|
2434 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2435 |
+
#: support.php:1674
|
2436 |
+
msgid "to ensure all functionality is in working order"
|
2437 |
+
msgstr "para garantir que todas as funcionalidades permaneçam em funcionamento"
|
2438 |
+
|
2439 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2440 |
+
#: chat-support-pro.php:618
|
2441 |
+
msgid ""
|
2442 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
2443 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
2444 |
+
"user experience for both yourself and your visitors."
|
2445 |
+
msgstr ""
|
2446 |
+
"O Chat Box foi temporariamente desativado até que o plug-in Pro seja "
|
2447 |
+
"atualizado. Isso é necessário para garantir uma experiência de usuário "
|
2448 |
+
"agradável e sem complicações, tanto para você quanto para seus visitantes."
|
2449 |
+
|
2450 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2451 |
+
#: chat-support-pro.php:619
|
2452 |
+
msgid ""
|
2453 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a href='."
|
2454 |
+
"/plugins.php'>here</a>."
|
2455 |
+
msgstr ""
|
2456 |
+
"Você pode atualizar o seu plugin <a href='./update-core.php'>aqui</a>, <a "
|
2457 |
+
"href='./plugins.php'>aqui</a> ou <a href='http://wp-livechat.com/get-updated-"
|
2458 |
+
"version/' target='_BLANK'>aqui</a>."
|
2459 |
+
|
2460 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2461 |
+
#: chat-support-pro.php:620
|
2462 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2463 |
+
#: support.php:1677
|
2464 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2465 |
+
#: support.php:1697
|
2466 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
2467 |
+
msgstr ""
|
2468 |
+
"Se você está tendo dificuldade em atualizar o plugin, por favor entre em "
|
2469 |
+
"contato"
|
2470 |
+
|
2471 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2472 |
+
#: chat-support-pro.php:633
|
2473 |
+
msgid ""
|
2474 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
2475 |
+
"download the latest copy from"
|
2476 |
+
msgstr ""
|
2477 |
+
"WP Live Chat Pro requer WP Live Chat Support para funcionar, você pode "
|
2478 |
+
"baixar a última versão em"
|
2479 |
+
|
2480 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2481 |
+
#: chat-support-pro.php:652
|
2482 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2483 |
+
#: chat-support-pro.php:885
|
2484 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2485 |
+
#: chat-support-pro.php:1134
|
2486 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2487 |
+
#: support/includes/deprecated.php:150
|
2488 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2489 |
+
#: support/includes/deprecated.php:347
|
2490 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2491 |
+
#: support.php:381
|
2492 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2493 |
+
#: support.php:1297
|
2494 |
+
msgid "Questions?"
|
2495 |
+
msgstr "Dúvidas?"
|
2496 |
+
|
2497 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2498 |
+
#: chat-support-pro.php:653
|
2499 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2500 |
+
#: chat-support-pro.php:886
|
2501 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2502 |
+
#: chat-support-pro.php:1135
|
2503 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2504 |
+
#: support/includes/deprecated.php:150
|
2505 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2506 |
+
#: support/includes/deprecated.php:347
|
2507 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2508 |
+
#: support.php:382
|
2509 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2510 |
+
#: support.php:1298
|
2511 |
+
msgid "Chat with us"
|
2512 |
+
msgstr "Converse conosco"
|
2513 |
+
|
2514 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2515 |
+
#: chat-support-pro.php:654
|
2516 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2517 |
+
#: chat-support-pro.php:887
|
2518 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2519 |
+
#: chat-support-pro.php:1136
|
2520 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2521 |
+
#: support.php:383
|
2522 |
+
msgid "Start live chat"
|
2523 |
+
msgstr "Iniciar Chat"
|
2524 |
+
|
2525 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2526 |
+
#: chat-support-pro.php:655
|
2527 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2528 |
+
#: chat-support-pro.php:889
|
2529 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2530 |
+
#: chat-support-pro.php:1138
|
2531 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2532 |
+
#: support/includes/deprecated.php:209
|
2533 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2534 |
+
#: support/includes/deprecated.php:409
|
2535 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2536 |
+
#: support.php:384
|
2537 |
+
msgid "Start Chat"
|
2538 |
+
msgstr "Iniciar Chat"
|
2539 |
+
|
2540 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2541 |
+
#: chat-support-pro.php:656
|
2542 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2543 |
+
#: chat-support-pro.php:890
|
2544 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2545 |
+
#: chat-support-pro.php:1139
|
2546 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2547 |
+
#: support.php:385
|
2548 |
+
msgid "Connecting. Please be patient..."
|
2549 |
+
msgstr "Conectando a um atendente. Por favor, seja paciente."
|
2550 |
+
|
2551 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2552 |
+
#: chat-support-pro.php:657
|
2553 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2554 |
+
#: chat-support-pro.php:892
|
2555 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2556 |
+
#: chat-support-pro.php:1141
|
2557 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2558 |
+
#: support/includes/deprecated.php:215
|
2559 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2560 |
+
#: support/includes/deprecated.php:415
|
2561 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2562 |
+
#: support.php:386
|
2563 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2564 |
+
#: support.php:1387
|
2565 |
+
msgid "Reactivating your previous chat..."
|
2566 |
+
msgstr "Reativando seu chat anterior..."
|
2567 |
+
|
2568 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2569 |
+
#: chat-support-pro.php:658
|
2570 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2571 |
+
#: chat-support-pro.php:894
|
2572 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2573 |
+
#: chat-support-pro.php:1143
|
2574 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2575 |
+
#: support.php:375
|
2576 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2577 |
+
#: support.php:1303
|
2578 |
+
msgid "Chat offline. Leave a message"
|
2579 |
+
msgstr "Chat offline. Deixe uma mensagem"
|
2580 |
+
|
2581 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2582 |
+
#: chat-support-pro.php:659
|
2583 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2584 |
+
#: chat-support-pro.php:896
|
2585 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2586 |
+
#: chat-support-pro.php:1145
|
2587 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2588 |
+
#: support.php:376
|
2589 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2590 |
+
#: support.php:1191
|
2591 |
+
msgid "Hello. Please input your details so that I may help you."
|
2592 |
+
msgstr "Olá, insira seus dados para que eu possa lhe ajudar."
|
2593 |
+
|
2594 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2595 |
+
#: chat-support-pro.php:660
|
2596 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2597 |
+
#: chat-support-pro.php:898
|
2598 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2599 |
+
#: chat-support-pro.php:899
|
2600 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2601 |
+
#: chat-support-pro.php:1147
|
2602 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2603 |
+
#: chat-support-pro.php:1148
|
2604 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2605 |
+
#: support.php:377
|
2606 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2607 |
+
#: support.php:674
|
2608 |
+
msgid ""
|
2609 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
2610 |
+
"shortly."
|
2611 |
+
msgstr ""
|
2612 |
+
"Nós estamos offline no momento. Por favor deixe uma mensagem e nós "
|
2613 |
+
"entraremos em contato em breve."
|
2614 |
+
|
2615 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2616 |
+
#: chat-support-pro.php:661
|
2617 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2618 |
+
#: chat-support-pro.php:2587
|
2619 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2620 |
+
#: support.php:378
|
2621 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2622 |
+
#: support.php:675
|
2623 |
+
msgid "Sending message..."
|
2624 |
+
msgstr "Enviando mensagem..."
|
2625 |
+
|
2626 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2627 |
+
#: chat-support-pro.php:662
|
2628 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2629 |
+
#: chat-support-pro.php:900
|
2630 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2631 |
+
#: chat-support-pro.php:1149
|
2632 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2633 |
+
#: chat-support-pro.php:2588
|
2634 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2635 |
+
#: support.php:379
|
2636 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2637 |
+
#: support.php:676
|
2638 |
+
msgid "Thank you for your message. We will be in contact soon."
|
2639 |
+
msgstr "Obrigado pelo seu feedback. Nós entraremos em contato em breve"
|
2640 |
+
|
2641 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2642 |
+
#: chat-support-pro.php:663
|
2643 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2644 |
+
#: chat-support-pro.php:902
|
2645 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2646 |
+
#: chat-support-pro.php:1151
|
2647 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2648 |
+
#: support/includes/deprecated.php:220
|
2649 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2650 |
+
#: support/includes/deprecated.php:420
|
2651 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2652 |
+
#: support.php:388
|
2653 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2654 |
+
#: support.php:1997
|
2655 |
+
msgid "Press ENTER to send your message"
|
2656 |
+
msgstr "Pressione ENTER para enviar sua mensagem"
|
2657 |
+
|
2658 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2659 |
+
#: chat-support-pro.php:664
|
2660 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2661 |
+
#: chat-support-pro.php:904
|
2662 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2663 |
+
#: chat-support-pro.php:1153
|
2664 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2665 |
+
#: support.php:387
|
2666 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2667 |
+
#: support.php:1256
|
2668 |
+
msgid "Welcome. How may I help you?"
|
2669 |
+
msgstr "Bem vindo, como posso lhe ajudar?"
|
2670 |
+
|
2671 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2672 |
+
#: chat-support-pro.php:758
|
2673 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2674 |
+
#: support.php:2325
|
2675 |
+
msgid "Delete History"
|
2676 |
+
msgstr "Histórico"
|
2677 |
+
|
2678 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2679 |
+
#: chat-support-pro.php:767
|
2680 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2681 |
+
#: 1444
|
2682 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2683 |
+
#: support.php:2334
|
2684 |
+
msgid "URL"
|
2685 |
+
msgstr "URL"
|
2686 |
+
|
2687 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2688 |
+
#: chat-support-pro.php:768
|
2689 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2690 |
+
#: chat-support-pro.php:1590
|
2691 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2692 |
+
#: support.php:1842
|
2693 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2694 |
+
#: support.php:2335
|
2695 |
+
msgid "Status"
|
2696 |
+
msgstr "Status"
|
2697 |
+
|
2698 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2699 |
+
#: chat-support-pro.php:769
|
2700 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2701 |
+
#: chat-support-pro.php:1591
|
2702 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2703 |
+
#: support.php:1843
|
2704 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2705 |
+
#: support.php:2336
|
2706 |
+
msgid "Action"
|
2707 |
+
msgstr "Ação"
|
2708 |
+
|
2709 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2710 |
+
#: chat-support-pro.php:775
|
2711 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2712 |
+
#: support.php:2342
|
2713 |
+
msgid "No chats available at the moment"
|
2714 |
+
msgstr "Não há sessões de bate-papo disponíveis no momento"
|
2715 |
+
|
2716 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2717 |
+
#: chat-support-pro.php:785
|
2718 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2719 |
+
#: support.php:2352
|
2720 |
+
msgid "View Chat History"
|
2721 |
+
msgstr "Histórico do WP Live Chat"
|
2722 |
+
|
2723 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2724 |
+
#: chat-support-pro.php:906
|
2725 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2726 |
+
#: chat-support-pro.php:1155
|
2727 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2728 |
+
#: chat-support-pro.php:1335
|
2729 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2730 |
+
#: support.php:2547
|
2731 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
2732 |
+
msgstr "Por favor clique em 'Iniciar Chat' para iniciar uma conversa com um atendente"
|
2733 |
+
|
2734 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2735 |
+
#: chat-support-pro.php:928
|
2736 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2737 |
+
#: chat-support-pro.php:1178
|
2738 |
+
msgid "Close Chat Window"
|
2739 |
+
msgstr "Abrir Janela do Chat"
|
2740 |
+
|
2741 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2742 |
+
#: chat-support-pro.php:1028
|
2743 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2744 |
+
#: chat-support-pro.php:1266
|
2745 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2746 |
+
#: support.php:1175
|
2747 |
+
msgid "Send message"
|
2748 |
+
msgstr "Enviar mensagem"
|
2749 |
+
|
2750 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2751 |
+
#: chat-support-pro.php:1054
|
2752 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2753 |
+
#: chat-support-pro.php:1292
|
2754 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2755 |
+
#: support/includes/deprecated.php:224
|
2756 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2757 |
+
#: support/includes/deprecated.php:424
|
2758 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2759 |
+
#: support.php:1276
|
2760 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2761 |
+
#: support.php:2011
|
2762 |
+
msgid "Send"
|
2763 |
+
msgstr "Enviar"
|
2764 |
+
|
2765 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2766 |
+
#: chat-support-pro.php:1506
|
2767 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2768 |
+
#: support.php:2607
|
2769 |
+
msgid "Your settings have been saved."
|
2770 |
+
msgstr "Suas configurações foram salvas."
|
2771 |
+
|
2772 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2773 |
+
#: chat-support-pro.php:1542
|
2774 |
+
msgid "Chat sessions"
|
2775 |
+
msgstr "Delay do chat (segundos)"
|
2776 |
+
|
2777 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2778 |
+
#: chat-support-pro.php:1544
|
2779 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2780 |
+
#: support.php:1814
|
2781 |
+
msgid ""
|
2782 |
+
"Please note: This window must be open in order to receive new chat "
|
2783 |
+
"notifications."
|
2784 |
+
msgstr ""
|
2785 |
+
"Observe: Essa janela deve estar aberta para receber notificações de novo "
|
2786 |
+
"chat."
|
2787 |
+
|
2788 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2789 |
+
#: chat-support-pro.php:1693
|
2790 |
+
msgid "Unknown"
|
2791 |
+
msgstr "Desconhecido"
|
2792 |
+
|
2793 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2794 |
+
#: chat-support-pro.php:1709
|
2795 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2796 |
+
#: support.php:1953
|
2797 |
+
msgid "End chat"
|
2798 |
+
msgstr "Encerrar Chat"
|
2799 |
+
|
2800 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2801 |
+
#: chat-support-pro.php:1825
|
2802 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2803 |
+
#: support.php:2862
|
2804 |
+
msgid "This chat has already been answered. Please close the chat window"
|
2805 |
+
msgstr "Este chat já foi respondido. Por favor, feiche essa janela de chat"
|
2806 |
+
|
2807 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2808 |
+
#: chat-support-pro.php:1900
|
2809 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2810 |
+
#: support.php:2079
|
2811 |
+
msgid "User has opened the chat window"
|
2812 |
+
msgstr "Usuário abriu a janela de bate-papo"
|
2813 |
+
|
2814 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2815 |
+
#: chat-support-pro.php:1905
|
2816 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2817 |
+
#: support.php:2080
|
2818 |
+
msgid "User has minimized the chat window"
|
2819 |
+
msgstr "Usuário minimizou a janela de bate-papo"
|
2820 |
+
|
2821 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2822 |
+
#: chat-support-pro.php:1910
|
2823 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2824 |
+
#: support.php:2081
|
2825 |
+
msgid "User has maximized the chat window"
|
2826 |
+
msgstr "Usuário maximizou a janela de bate-papo"
|
2827 |
+
|
2828 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2829 |
+
#: chat-support-pro.php:1915
|
2830 |
+
msgid "User has closed and ended the chat"
|
2831 |
+
msgstr "Usuário fechou e encerrou o bate-papo"
|
2832 |
+
|
2833 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2834 |
+
#: chat-support-pro.php:2504
|
2835 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2836 |
+
#: support/includes/update_control.class.php:115
|
2837 |
+
msgid ""
|
2838 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?\" "
|
2839 |
+
"onclick=\"document.location.reload(); return false;\">Try again</a>"
|
2840 |
+
msgstr "Um erro HTTP inesperado ocorreu durante a requisição a API. Tente novamente"
|
2841 |
+
|
2842 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2843 |
+
#: chat-support-pro.php:2509
|
2844 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2845 |
+
#: support/includes/update_control.class.php:120
|
2846 |
+
msgid "An unknown error occurred"
|
2847 |
+
msgstr "Um erro desconhecido ocorreu"
|
2848 |
+
|
2849 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2850 |
+
#: chat-support-pro.php:2716
|
2851 |
+
msgid "Pro add-on"
|
2852 |
+
msgstr "Versão Pro"
|
2853 |
+
|
2854 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2855 |
+
#: chat-support-pro.php:2730
|
2856 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2857 |
+
#: support.php:494
|
2858 |
+
msgid "Live Chat"
|
2859 |
+
msgstr "Live Chat"
|
2860 |
+
|
2861 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2862 |
+
#: chat-support-pro.php:2731
|
2863 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2864 |
+
#: support.php:495
|
2865 |
+
msgid "Settings"
|
2866 |
+
msgstr "Configurações"
|
2867 |
+
|
2868 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2869 |
+
#: chat-support-pro.php:2732
|
2870 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2871 |
+
#: chat-support-pro.php:2759
|
2872 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2873 |
+
#: chat-support-pro.php:2770
|
2874 |
+
msgid "Quick Responses"
|
2875 |
+
msgstr "Respostas rápidas"
|
2876 |
+
|
2877 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2878 |
+
#: chat-support-pro.php:2733
|
2879 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2880 |
+
#: support.php:496
|
2881 |
+
msgid "History"
|
2882 |
+
msgstr "Histórico"
|
2883 |
+
|
2884 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2885 |
+
#: chat-support-pro.php:2734
|
2886 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2887 |
+
#: support.php:497
|
2888 |
+
msgid "Missed Chats"
|
2889 |
+
msgstr "Esconder Chat"
|
2890 |
+
|
2891 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2892 |
+
#: chat-support-pro.php:2739
|
2893 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
2894 |
+
#: support/includes/feedback-page.php:37
|
2895 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2896 |
+
#: support.php:517
|
2897 |
+
msgid "Feedback"
|
2898 |
+
msgstr "Feedback"
|
2899 |
+
|
2900 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2901 |
+
#: chat-support-pro.php:2746
|
2902 |
+
msgid "Error Log"
|
2903 |
+
msgstr "Log de erros"
|
2904 |
+
|
2905 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2906 |
+
#: chat-support-pro.php:2760
|
2907 |
+
msgid "Quick Response"
|
2908 |
+
msgstr "Resposta rápida"
|
2909 |
+
|
2910 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2911 |
+
#: chat-support-pro.php:2761
|
2912 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2913 |
+
#: chat-support-pro.php:2764
|
2914 |
+
msgid "New Quick Response"
|
2915 |
+
msgstr "Nova resposta rápida"
|
2916 |
+
|
2917 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2918 |
+
#: chat-support-pro.php:2762
|
2919 |
+
msgid "Add New Quick Response"
|
2920 |
+
msgstr "Adicionar nova resposta rápida"
|
2921 |
+
|
2922 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2923 |
+
#: chat-support-pro.php:2763
|
2924 |
+
msgid "Edit Quick Response"
|
2925 |
+
msgstr "Editar resposta rápida"
|
2926 |
+
|
2927 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2928 |
+
#: chat-support-pro.php:2765
|
2929 |
+
msgid "All Quick Responses"
|
2930 |
+
msgstr "Todas as respostas rápidas"
|
2931 |
+
|
2932 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2933 |
+
#: chat-support-pro.php:2766
|
2934 |
+
msgid "View Quick Responses"
|
2935 |
+
msgstr "Ver respostas rápidas"
|
2936 |
+
|
2937 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2938 |
+
#: chat-support-pro.php:2767
|
2939 |
+
msgid "Search Quick Responses"
|
2940 |
+
msgstr "Pesquisar respostas rápidas"
|
2941 |
+
|
2942 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2943 |
+
#: chat-support-pro.php:2768
|
2944 |
+
msgid "No Quick Responses found"
|
2945 |
+
msgstr "Nenhuma resposta rápida encontrada"
|
2946 |
+
|
2947 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2948 |
+
#: chat-support-pro.php:2769
|
2949 |
+
msgid "No Quick Responses found in the Trash"
|
2950 |
+
msgstr "Nenhuma resposta rápida encontrada na lixeira"
|
2951 |
+
|
2952 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2953 |
+
#: chat-support-pro.php:2774
|
2954 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
2955 |
+
msgstr "Com a Versão Pro do WP Live Chat Support, você pode"
|
2956 |
+
|
2957 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2958 |
+
#: chat-support-pro.php:2828
|
2959 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2960 |
+
#: chat-support-pro.php:2832
|
2961 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
2962 |
+
#: support.php:1998
|
2963 |
+
msgid "Assign Quick Response"
|
2964 |
+
msgstr "Associar resposta rápida"
|
2965 |
+
|
2966 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support-pro/wp-live-
|
2967 |
+
#: chat-support-pro.php:2841
|
2968 |
+
msgid "What is this?"
|
2969 |
+
msgstr "Converse conosco"
|
2970 |
+
|
2971 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2972 |
+
#: 869
|
2973 |
+
msgid "complete"
|
2974 |
+
msgstr "completo"
|
2975 |
+
|
2976 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2977 |
+
#: 872
|
2978 |
+
msgid "pending"
|
2979 |
+
msgstr "pendente"
|
2980 |
+
|
2981 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2982 |
+
#: 875
|
2983 |
+
msgid "active"
|
2984 |
+
msgstr "ativo"
|
2985 |
+
|
2986 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2987 |
+
#: 878
|
2988 |
+
msgid "deleted"
|
2989 |
+
msgstr "excluído"
|
2990 |
+
|
2991 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2992 |
+
#: 881
|
2993 |
+
msgid "browsing"
|
2994 |
+
msgstr "navegando"
|
2995 |
+
|
2996 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
2997 |
+
#: 884
|
2998 |
+
msgid "requesting chat"
|
2999 |
+
msgstr "solicitando chat"
|
3000 |
+
|
3001 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
3002 |
+
#: 887
|
3003 |
+
msgid "Chat Ended - User still browsing"
|
3004 |
+
msgstr "Conversa Encerrada - Usuário ainda navegando"
|
3005 |
+
|
3006 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
3007 |
+
#: 890
|
3008 |
+
msgid "User is browsing but doesn't want to chat"
|
3009 |
+
msgstr "Usuário está navegando, mas não quer conversar"
|
3010 |
+
|
3011 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
3012 |
+
#: 1224
|
3013 |
+
msgid "Get Pro Add-on to accept more chats"
|
3014 |
+
msgstr "Compre a Versão Pro para aceitar mais chats"
|
3015 |
+
|
3016 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/functions.php:
|
3017 |
+
#: 1471
|
3018 |
+
msgid "You have not missed any chat requests."
|
3019 |
+
msgstr "Você não perder nenhuma requisição de chat."
|
3020 |
+
|
3021 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3022 |
+
#: support/includes/deprecated.php:157
|
3023 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3024 |
+
#: support/includes/deprecated.php:354
|
3025 |
+
msgid "Start Live Chat"
|
3026 |
+
msgstr "Iniciar Chat"
|
3027 |
+
|
3028 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3029 |
+
#: support/includes/deprecated.php:212
|
3030 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3031 |
+
#: support/includes/deprecated.php:412
|
3032 |
+
msgid "Connecting you to a sales person. Please be patient."
|
3033 |
+
msgstr "Conectando a um atendente. Por favor, seja paciente."
|
3034 |
+
|
3035 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3036 |
+
#: support/includes/feedback-page.php:7
|
3037 |
+
msgid "WP Live Chat Support Feedback"
|
3038 |
+
msgstr "WP Live Chat Support Feedback"
|
3039 |
+
|
3040 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3041 |
+
#: support/includes/feedback-page.php:8
|
3042 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
3043 |
+
msgstr "Gostaríamos muito de ouvir seus comentários e/ou sugestões"
|
3044 |
+
|
3045 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3046 |
+
#: support/includes/feedback-page.php:13
|
3047 |
+
msgid "Your Name"
|
3048 |
+
msgstr "Seu Nome"
|
3049 |
+
|
3050 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3051 |
+
#: support/includes/feedback-page.php:21
|
3052 |
+
msgid "Your Email"
|
3053 |
+
msgstr "Seu Email"
|
3054 |
+
|
3055 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3056 |
+
#: support/includes/feedback-page.php:29
|
3057 |
+
msgid "Your Website"
|
3058 |
+
msgstr "Seu Website"
|
3059 |
+
|
3060 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3061 |
+
#: support/includes/feedback-page.php:48
|
3062 |
+
msgid "Send Feedback"
|
3063 |
+
msgstr "Enviar Feedback"
|
3064 |
+
|
3065 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3066 |
+
#: support/includes/settings_page.php:62
|
3067 |
+
msgid "Agents"
|
3068 |
+
msgstr "Atendentes"
|
3069 |
+
|
3070 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3071 |
+
#: support/includes/welcome_page.php:4
|
3072 |
+
msgid "Welcome to "
|
3073 |
+
msgstr "Bem-vindo ao"
|
3074 |
+
|
3075 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3076 |
+
#: support/includes/welcome_page.php:11
|
3077 |
+
msgid "How did you find us?"
|
3078 |
+
msgstr "Como nos encontrou?"
|
3079 |
+
|
3080 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3081 |
+
#: support/includes/welcome_page.php:16
|
3082 |
+
msgid "WordPress.org plugin repository "
|
3083 |
+
msgstr "Repositório do plugin no WordPress.org"
|
3084 |
+
|
3085 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3086 |
+
#: support/includes/welcome_page.php:19
|
3087 |
+
msgid "Search Term"
|
3088 |
+
msgstr "Termo de Pesquisa"
|
3089 |
+
|
3090 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3091 |
+
#: support/includes/welcome_page.php:23
|
3092 |
+
msgid "Google or other search Engine"
|
3093 |
+
msgstr "Google ou outro motor de busca"
|
3094 |
+
|
3095 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3096 |
+
#: support/includes/welcome_page.php:29
|
3097 |
+
msgid "Friend recommendation"
|
3098 |
+
msgstr "Recomendação de um amigo"
|
3099 |
+
|
3100 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3101 |
+
#: support/includes/welcome_page.php:35
|
3102 |
+
msgid "Other"
|
3103 |
+
msgstr "Outro"
|
3104 |
+
|
3105 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3106 |
+
#: support/includes/welcome_page.php:39
|
3107 |
+
msgid "Please Explain"
|
3108 |
+
msgstr "Por favor, explique"
|
3109 |
+
|
3110 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3111 |
+
#: support/includes/welcome_page.php:48
|
3112 |
+
msgid "Submit"
|
3113 |
+
msgstr "Submeter"
|
3114 |
+
|
3115 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-
|
3116 |
+
#: support/includes/welcome_page.php:50
|
3117 |
+
msgid "Skip"
|
3118 |
+
msgstr "Pular"
|
3119 |
+
|
3120 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3121 |
+
#: support.php:404
|
3122 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3123 |
+
#: support.php:2097
|
3124 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
3125 |
+
msgstr ""
|
3126 |
+
"Por favor click em \\'Iniciar Chat\\' para iniciar uma conversa com um "
|
3127 |
+
"atendente"
|
3128 |
+
|
3129 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3130 |
+
#: support.php:1674
|
3131 |
+
msgid ""
|
3132 |
+
"You are using an outdated version of <strong>WP Live Chat Support "
|
3133 |
+
"Pro</strong>. Please"
|
3134 |
+
msgstr ""
|
3135 |
+
"Você está usando uma versão desatualizada do <strong>WP Live Chat Support "
|
3136 |
+
"Pro</strong>. Por favor"
|
3137 |
+
|
3138 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3139 |
+
#: support.php:1675
|
3140 |
+
msgid ""
|
3141 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
3142 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
3143 |
+
"experience for both yourself and your visitors."
|
3144 |
+
msgstr ""
|
3145 |
+
"O Chat Box foi temporariamente desativado até que o plug-in Pro seja "
|
3146 |
+
"atualizado. Isso é necessário para garantir uma experiência de usuário "
|
3147 |
+
"agradável e sem complicações, tanto para você quanto para seus visitantes."
|
3148 |
+
|
3149 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3150 |
+
#: support.php:1676
|
3151 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3152 |
+
#: support.php:1696
|
3153 |
+
msgid ""
|
3154 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='."
|
3155 |
+
"/plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
3156 |
+
"version/' target='_BLANK'>here</a>."
|
3157 |
+
msgstr ""
|
3158 |
+
"Você pode atualizar o seu plugin <a href='./update-core.php'>aqui</a>, <a "
|
3159 |
+
"href='./plugins.php'>aqui</a> ou <a href='http://wp-livechat.com/get-updated-"
|
3160 |
+
"version/' target='_BLANK'>aqui</a>."
|
3161 |
+
|
3162 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3163 |
+
#: support.php:1689
|
3164 |
+
msgid ""
|
3165 |
+
"You are using an outdated version of <strong>WP Live Chat Support "
|
3166 |
+
"Pro</strong>."
|
3167 |
+
msgstr ""
|
3168 |
+
"Você está usando uma versão desatualizada do <strong>WP Live Chat Support "
|
3169 |
+
"Pro</strong>. Por favor"
|
3170 |
+
|
3171 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3172 |
+
#: support.php:1691
|
3173 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
3174 |
+
msgstr ""
|
3175 |
+
"Você está usando uma versão desatualizada do <strong>WP Live Chat Support "
|
3176 |
+
"Pro</strong>. Por favor"
|
3177 |
+
|
3178 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3179 |
+
#: support.php:1767
|
3180 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3181 |
+
#: support.php:2889
|
3182 |
+
msgid "see who's online and initiate chats"
|
3183 |
+
msgstr "ver quem está online e iniciar chats"
|
3184 |
+
|
3185 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3186 |
+
#: support.php:1770
|
3187 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3188 |
+
#: support.php:2889
|
3189 |
+
msgid "with your online visitors with the click of a button."
|
3190 |
+
msgstr "com seus visitantes on-line com o clique de um botão."
|
3191 |
+
|
3192 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3193 |
+
#: support.php:1939
|
3194 |
+
msgid "Previous"
|
3195 |
+
msgstr "Anterior"
|
3196 |
+
|
3197 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3198 |
+
#: support.php:1941
|
3199 |
+
msgid "Active"
|
3200 |
+
msgstr "Ativo"
|
3201 |
+
|
3202 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3203 |
+
#: support.php:1950
|
3204 |
+
msgid "Chat with"
|
3205 |
+
msgstr "Converse conosco"
|
3206 |
+
|
3207 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3208 |
+
#: support.php:1998
|
3209 |
+
msgid "Add Quick Responses to your Live Chat"
|
3210 |
+
msgstr "Adiciona respostas rápidas ao seu Chat ao vivo"
|
3211 |
+
|
3212 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3213 |
+
#: support.php:1998
|
3214 |
+
msgid "Pro version only"
|
3215 |
+
msgstr "Apenas na versão pro"
|
3216 |
+
|
3217 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3218 |
+
#: support.php:2009
|
3219 |
+
msgid "type here..."
|
3220 |
+
msgstr "Escreva aqui..."
|
3221 |
+
|
3222 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3223 |
+
#: support.php:2374
|
3224 |
+
msgid "WP Live Chat History"
|
3225 |
+
msgstr "Histórico do WP Live Chat"
|
3226 |
+
|
3227 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3228 |
+
#: support.php:2394
|
3229 |
+
msgid "WP Live Chat Missed Chats"
|
3230 |
+
msgstr "Histórico do WP Live Chat"
|
3231 |
+
|
3232 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3233 |
+
#: support.php:2409
|
3234 |
+
msgid ""
|
3235 |
+
"Please update to the latest version of WP Live Chat Support Pro to start "
|
3236 |
+
"recording any offline messages."
|
3237 |
+
msgstr ""
|
3238 |
+
"Você está usando uma versão desatualizada do <strong>WP Live Chat Support "
|
3239 |
+
"Pro</strong>. Por favor"
|
3240 |
+
|
3241 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3242 |
+
#: support.php:2412
|
3243 |
+
msgid "This option is only available in the "
|
3244 |
+
msgstr "disponível na"
|
3245 |
+
|
3246 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3247 |
+
#: support.php:2412
|
3248 |
+
msgid "Pro Add-on"
|
3249 |
+
msgstr "Versão Pro"
|
3250 |
+
|
3251 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3252 |
+
#: support.php:2424
|
3253 |
+
msgid "WP Live Chat Offline Messages"
|
3254 |
+
msgstr "Mensagens Offline"
|
3255 |
+
|
3256 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3257 |
+
#: support.php:2622
|
3258 |
+
msgid "Thank You for your feedback!"
|
3259 |
+
msgstr "Obrigado pelo seu feedback!"
|
3260 |
+
|
3261 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3262 |
+
#: support.php:2626
|
3263 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3264 |
+
#: support.php:2639
|
3265 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
3266 |
+
msgstr "Obrigado pelo seu feedback. Nós entraremos em contato em breve"
|
3267 |
+
|
3268 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3269 |
+
#: support.php:2642
|
3270 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
3271 |
+
msgstr "Houve um problema ao enviar o seu feedback. Por favor, Log seu feedback sobre"
|
3272 |
+
|
3273 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3274 |
+
#: support.php:2676
|
3275 |
+
msgid ""
|
3276 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
3277 |
+
"issues while using WP Live Chat Support as a result of this. Please get in "
|
3278 |
+
"contact your host to get this function enabled."
|
3279 |
+
msgstr ""
|
3280 |
+
"WPLC: set_time_limit() não está habilitado no servidor. Você pode ter "
|
3281 |
+
"problemas usando WP Live Chat Support por isso.\n"
|
3282 |
+
"Por favor entre em contato com seu provedor para ter essa função habilitada."
|
3283 |
+
|
3284 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3285 |
+
#: support.php:2682
|
3286 |
+
msgid ""
|
3287 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
3288 |
+
"using WP Live Chat Support as a result of this. Please contact your host to "
|
3289 |
+
"get safe mode disabled."
|
3290 |
+
msgstr ""
|
3291 |
+
"WPLC: Mode seguro está habilitado em seu servidor. Você pode ter problemas "
|
3292 |
+
"usando WP Live Chat Support por isso.\n"
|
3293 |
+
"Por favor entre em contato com seu provedor para ter essa função "
|
3294 |
+
"desabilitada."
|
3295 |
+
|
3296 |
+
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-live-chat-support/wp-live-chat-
|
3297 |
+
#: support.php:2890
|
3298 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
3299 |
+
msgstr "Com a Versão Pro do WP Live Chat Support, você pode"
|
readme.txt
CHANGED
@@ -103,10 +103,10 @@ You now have the choice to host your live chat on either your own website (using
|
|
103 |
Get a free copy of one of the premium WP Live Chat Support extensions in exchange for translating our plugin!
|
104 |
|
105 |
* English
|
106 |
-
* German (Dennis Klinger)
|
107 |
-
* Spanish (Sergio Castrillon & Ana Ayelen Martinez)
|
108 |
* Russian (Igor Butsky)
|
109 |
-
* French (Marcello Cavallucci)
|
110 |
* Brazilian (Gustavo Silva)
|
111 |
* Hebrew (David Cohen)
|
112 |
* Slovakian (Dana Kadarova)
|
@@ -114,17 +114,20 @@ Get a free copy of one of the premium WP Live Chat Support extensions in exchang
|
|
114 |
* Mongolian (Monica Batuskh)
|
115 |
* Romanian (Sergiu Balaes)
|
116 |
* Czech (Pavel Cvejn)
|
117 |
-
* Danish (Mikkel Jeppesen Juhl)
|
118 |
* Italian (Angelo Giammarresi)
|
119 |
* Dutch (Elsy Aelvoet)
|
120 |
* Greek (Peter Stavropoulos)
|
121 |
-
* Norwegian (Robert Nilsen)
|
122 |
* Hungarian (GInception & Andor Molnar)
|
123 |
* Indonesian (Andrie Willyanta)
|
124 |
* Finnish (Arttu Piipponen)
|
125 |
* Dutch (Niek Groot Bleumink)
|
126 |
* Polish (Sebastian Kajzer)
|
127 |
* Turkish (Yavuz Aksu)
|
|
|
|
|
|
|
128 |
* Chinese - Simplified^
|
129 |
* Chinese - Traditional^
|
130 |
|
@@ -202,6 +205,26 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
202 |
|
203 |
== Changelog ==
|
204 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
= 6.1.00 - 2016-03-18 - Medium priority =
|
206 |
* Fixed a bug that caused the chat agent to be nullified if you saved the settings
|
207 |
* NEW: Introduced a new modern theme
|
103 |
Get a free copy of one of the premium WP Live Chat Support extensions in exchange for translating our plugin!
|
104 |
|
105 |
* English
|
106 |
+
* German (Dennis Klinger & Benjamin Schindler)
|
107 |
+
* Spanish (Sergio Castrillon & Ana Ayelen Martinez & Olivier Gantois)
|
108 |
* Russian (Igor Butsky)
|
109 |
+
* French (Marcello Cavallucci & Olivier Gantois)
|
110 |
* Brazilian (Gustavo Silva)
|
111 |
* Hebrew (David Cohen)
|
112 |
* Slovakian (Dana Kadarova)
|
114 |
* Mongolian (Monica Batuskh)
|
115 |
* Romanian (Sergiu Balaes)
|
116 |
* Czech (Pavel Cvejn)
|
117 |
+
* Danish (Mikkel Jeppesen Juhl & Kasper Jensen)
|
118 |
* Italian (Angelo Giammarresi)
|
119 |
* Dutch (Elsy Aelvoet)
|
120 |
* Greek (Peter Stavropoulos)
|
121 |
+
* Norwegian (Robert Nilsen & Ole Petter Holthe-Berg)
|
122 |
* Hungarian (GInception & Andor Molnar)
|
123 |
* Indonesian (Andrie Willyanta)
|
124 |
* Finnish (Arttu Piipponen)
|
125 |
* Dutch (Niek Groot Bleumink)
|
126 |
* Polish (Sebastian Kajzer)
|
127 |
* Turkish (Yavuz Aksu)
|
128 |
+
* Brazilian Portuguese (Luis Simioni)
|
129 |
+
* Farsi (Maisam)
|
130 |
+
* Croatian (Petar Garzina)
|
131 |
* Chinese - Simplified^
|
132 |
* Chinese - Traditional^
|
133 |
|
205 |
|
206 |
== Changelog ==
|
207 |
|
208 |
+
= 6.1.01 - 2016-04-07 - Low Priority =
|
209 |
+
* You can now delete inidividual offline messages from your history
|
210 |
+
* Code improvements done to the way scripts are loaded when displaying the chat
|
211 |
+
* Fixed a bug that returned an undefined index when recording a visitors IP address
|
212 |
+
* Fixed a bug that displayed chat messages over the logo
|
213 |
+
* Code improvement - A visitors name will display if filled out automatically, instead of 'Guest'
|
214 |
+
* WHOIS for IP Address now opens in a new window
|
215 |
+
* Fixed a bug that caused issues when downloading the chat history containing non UTF-8 characters
|
216 |
+
* Fixed a bug that displayed the incorrect Gravatar images in the chat messages
|
217 |
+
* Translations Added:
|
218 |
+
* German Updated (Thank you Benjamin Schindler)
|
219 |
+
* Brazilian Portuguese Updated (Thank you Luis Simioni)
|
220 |
+
* Farsi (Thank you Maisam)
|
221 |
+
* Norwegian Updates (Thank you Ole Petter Holthe-Berg)
|
222 |
+
* Croatian (Thank you Petar Garzina)
|
223 |
+
* Italian Updated (Thank you Angelo Giammarresi)
|
224 |
+
* Danish Updated (Thank you Kasper Jensen)
|
225 |
+
* Spanish Updated (Thank you Olivier Gantois)
|
226 |
+
* French Updated (Thank you Olivier Gantois)
|
227 |
+
|
228 |
= 6.1.00 - 2016-03-18 - Medium priority =
|
229 |
* Fixed a bug that caused the chat agent to be nullified if you saved the settings
|
230 |
* NEW: Introduced a new modern theme
|
wp-live-chat-support.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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: 6.1.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
Text Domain: wplivechat
|
@@ -11,6 +11,26 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
* 6.1.00 - 2016-03-18 - Medium priority
|
15 |
* Fixed a bug that caused the chat agent to be nullified if you saved the settings
|
16 |
* NEW: Introduced a new modern theme
|
@@ -346,7 +366,7 @@ global $wplc_tblname_offline_msgs;
|
|
346 |
$wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
|
347 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
348 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
349 |
-
$wplc_version = "6.1.
|
350 |
|
351 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
352 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
@@ -369,6 +389,7 @@ add_action('wp_ajax_wplc_admin_remove_transient', 'wplc_action_callback');
|
|
369 |
add_action('wp_ajax_wplc_hide_ftt','wplc_action_callback');
|
370 |
add_action('wp_ajax_nopriv_wplc_user_send_offline_message', 'wplc_action_callback');
|
371 |
add_action('wp_ajax_wplc_user_send_offline_message', 'wplc_action_callback');
|
|
|
372 |
add_action('init', 'wplc_version_control');
|
373 |
|
374 |
|
@@ -547,6 +568,23 @@ function wplc_action_callback() {
|
|
547 |
|
548 |
if ($check == 1) {
|
549 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
if ($_POST['action'] == "wplc_user_send_offline_message") {
|
551 |
if(function_exists('wplc_send_offline_msg')){ wplc_send_offline_msg($_POST['name'], $_POST['email'], $_POST['msg'], $_POST['cid']); }
|
552 |
if(function_exists('wplc_store_offline_message')){ wplc_store_offline_message($_POST['name'], $_POST['email'], $_POST['msg']); }
|
@@ -664,7 +702,7 @@ function wplc_api_keys_menu() {
|
|
664 |
}
|
665 |
|
666 |
|
667 |
-
add_action("
|
668 |
|
669 |
|
670 |
function wplc_load_user_js () {
|
@@ -680,7 +718,6 @@ function wplc_load_user_js () {
|
|
680 |
} else {
|
681 |
$display_contents = 1;
|
682 |
}
|
683 |
-
|
684 |
if(function_exists('wplc_is_user_banned_basic')){
|
685 |
$user_banned = wplc_is_user_banned_basic();
|
686 |
} else {
|
@@ -1367,7 +1404,7 @@ function wplc_filter_control_live_chat_box_html_2nd_layer($wplc_settings,$logged
|
|
1367 |
$ret_msg .= "<input type=\"text\" name=\"wplc_email\" id=\"wplc_email\" value=\"\" placeholder=\"".__("Email", "wplivechat")."\" />";
|
1368 |
$ret_msg .= "<textarea name=\"wplc_message\" id=\"wplc_message\" placeholder=\"".__("Message", "wplivechat")."\"></textarea>";
|
1369 |
|
1370 |
-
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['
|
1371 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1372 |
} else {
|
1373 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
@@ -1850,7 +1887,7 @@ function wplc_hook_control_superadmin_head() {
|
|
1850 |
|
1851 |
function wplc_superadmin_javascript() {
|
1852 |
|
1853 |
-
if (isset($_GET['page']) && ($_GET['page'] == 'wplivechat-menu' || $_GET['page'] == 'wplivechat-menu-settings')) {
|
1854 |
|
1855 |
if (!isset($_GET['action'])) {
|
1856 |
if (function_exists("wplc_register_pro_version")) {
|
@@ -2266,7 +2303,7 @@ function wplc_draw_chat_area($cid) {
|
|
2266 |
if($user_ip == ""){
|
2267 |
$user_ip = __('IP Address not recorded', 'wplivechat');
|
2268 |
} else {
|
2269 |
-
$user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."'>".$user_ip."</a>";
|
2270 |
}
|
2271 |
|
2272 |
echo "<h2>$status " . __('Chat with', 'wplivechat') . " " . $result->name . "</h2>";
|
@@ -2761,7 +2798,10 @@ function wplc_hook_control_history_get_control($action,$cid,$aid) {
|
|
2761 |
if ($action == 'history') {
|
2762 |
wplc_admin_view_chat_history(sanitize_text_field($cid));
|
2763 |
} else if ($action == 'download_history'){
|
2764 |
-
|
|
|
|
|
|
|
2765 |
}
|
2766 |
|
2767 |
|
@@ -2897,7 +2937,7 @@ function wplc_admin_display_offline_messages_new() {
|
|
2897 |
global $wpdb;
|
2898 |
global $wplc_tblname_offline_msgs;
|
2899 |
|
2900 |
-
echo "
|
2901 |
<table class=\"wp-list-table widefat fixed \" cellspacing=\"0\">
|
2902 |
<thead>
|
2903 |
<tr>
|
@@ -2905,6 +2945,7 @@ function wplc_admin_display_offline_messages_new() {
|
|
2905 |
<th scope='col' id='wplc_name_colum' class='manage-column column-id'><span>" . __("Name", "wplivechat") . "</span></th>
|
2906 |
<th scope='col' id='wplc_email_colum' class='manage-column column-id'>" . __("Email", "wplivechat") . "</th>
|
2907 |
<th scope='col' id='wplc_message_colum' class='manage-column column-id'>" . __("Message", "wplivechat") . "</th>
|
|
|
2908 |
</tr>
|
2909 |
</thead>
|
2910 |
<tbody id=\"the-list\" class='list:wp_list_text_link'>";
|
@@ -2922,13 +2963,14 @@ function wplc_admin_display_offline_messages_new() {
|
|
2922 |
echo "<td class='chat_name column_chat_name' id='chat_name_" . $result->id . "'><img src=\"//www.gravatar.com/avatar/" . md5($result->email) . "?s=30\" /> " . $result->name . "</td>";
|
2923 |
echo "<td class='chat_email column_chat_email' id='chat_email_" . $result->id . "'><a href='mailto:" . $result->email . "' title='Email " . ".$result->email." . "'>" . $result->email . "</a></td>";
|
2924 |
echo "<td class='chat_name column_chat_url' id='chat_url_" . $result->id . "'>" . $result->message . "</td>";
|
|
|
2925 |
echo "</tr>";
|
2926 |
}
|
2927 |
}
|
2928 |
|
2929 |
echo "
|
2930 |
</tbody>
|
2931 |
-
</table
|
2932 |
}
|
2933 |
|
2934 |
function wplc_settings_page_basic() {
|
@@ -3778,7 +3820,72 @@ function wplc_hook_control_settings_page_relevant_extensions_main() {
|
|
3778 |
}
|
3779 |
}
|
3780 |
|
|
|
|
|
|
|
|
|
3781 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3782 |
|
3783 |
function wplc_admin_download_history($type, $cid){
|
3784 |
|
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: 6.1.01
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
Text Domain: wplivechat
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* 6.1.01 - 2016-04-07 - Low Priority
|
15 |
+
* You can now delete inidividual offline messages from your history
|
16 |
+
* Code improvements done to the way scripts are loaded when displaying the chat
|
17 |
+
* Fixed a bug that returned an undefined index when recording a visitors IP address
|
18 |
+
* Fixed a bug that displayed chat messages over the logo
|
19 |
+
* Code improvement - A visitors name will display if filled out automatically, instead of 'Guest'
|
20 |
+
* WHOIS for IP Address now opens in a new window
|
21 |
+
* Fixed a bug that caused issues when downloading the chat history containing non UTF-8 characters
|
22 |
+
* Fixed a bug that displayed the incorrect Gravatar images in the chat messages
|
23 |
+
* Translations:
|
24 |
+
* - German Updated (Thank you Benjamin Schindler)
|
25 |
+
* - Brazilian Portuguese Updated (Thank you Luis Simioni)
|
26 |
+
* - Farsi Added(Thank you Maisam)
|
27 |
+
* - Norwegian Updated (Thank you Ole Petter Holthe-Berg)
|
28 |
+
* - Croatian Added(Thank you Petar Garzina)
|
29 |
+
* - Italian Updated (Thank you Angelo Giammarresi)
|
30 |
+
* - Danish Updated (Thank you Kasper Jensen)
|
31 |
+
* - Spanish Updated (Thank you Olivier Gantois)
|
32 |
+
* - French Updated (Thank you Olivier Gantois)
|
33 |
+
*
|
34 |
* 6.1.00 - 2016-03-18 - Medium priority
|
35 |
* Fixed a bug that caused the chat agent to be nullified if you saved the settings
|
36 |
* NEW: Introduced a new modern theme
|
366 |
$wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
|
367 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
368 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
369 |
+
$wplc_version = "6.1.01";
|
370 |
|
371 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
372 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
389 |
add_action('wp_ajax_wplc_hide_ftt','wplc_action_callback');
|
390 |
add_action('wp_ajax_nopriv_wplc_user_send_offline_message', 'wplc_action_callback');
|
391 |
add_action('wp_ajax_wplc_user_send_offline_message', 'wplc_action_callback');
|
392 |
+
add_action('wp_ajax_delete_offline_message', 'wplc_action_callback');
|
393 |
add_action('init', 'wplc_version_control');
|
394 |
|
395 |
|
568 |
|
569 |
if ($check == 1) {
|
570 |
|
571 |
+
if( $_POST['action'] == 'delete_offline_message' ){
|
572 |
+
|
573 |
+
global $wplc_tblname_offline_msgs;
|
574 |
+
|
575 |
+
$mid = sanitize_text_field( $_POST['mid'] );
|
576 |
+
|
577 |
+
$sql = "DELETE FROM `$wplc_tblname_offline_msgs` WHERE `id` = '$mid'";
|
578 |
+
$query = $wpdb->Query($sql);
|
579 |
+
|
580 |
+
if( $query ){
|
581 |
+
|
582 |
+
echo 1;
|
583 |
+
|
584 |
+
}
|
585 |
+
|
586 |
+
}
|
587 |
+
|
588 |
if ($_POST['action'] == "wplc_user_send_offline_message") {
|
589 |
if(function_exists('wplc_send_offline_msg')){ wplc_send_offline_msg($_POST['name'], $_POST['email'], $_POST['msg'], $_POST['cid']); }
|
590 |
if(function_exists('wplc_store_offline_message')){ wplc_store_offline_message($_POST['name'], $_POST['email'], $_POST['msg']); }
|
702 |
}
|
703 |
|
704 |
|
705 |
+
add_action("wp_print_scripts","wplc_load_user_js",0);
|
706 |
|
707 |
|
708 |
function wplc_load_user_js () {
|
718 |
} else {
|
719 |
$display_contents = 1;
|
720 |
}
|
|
|
721 |
if(function_exists('wplc_is_user_banned_basic')){
|
722 |
$user_banned = wplc_is_user_banned_basic();
|
723 |
} else {
|
1404 |
$ret_msg .= "<input type=\"text\" name=\"wplc_email\" id=\"wplc_email\" value=\"\" placeholder=\"".__("Email", "wplivechat")."\" />";
|
1405 |
$ret_msg .= "<textarea name=\"wplc_message\" id=\"wplc_message\" placeholder=\"".__("Message", "wplivechat")."\"></textarea>";
|
1406 |
|
1407 |
+
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
|
1408 |
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1409 |
} else {
|
1410 |
$ip_address = $_SERVER['REMOTE_ADDR'];
|
1887 |
|
1888 |
function wplc_superadmin_javascript() {
|
1889 |
|
1890 |
+
if (isset($_GET['page']) && ($_GET['page'] == 'wplivechat-menu' || $_GET['page'] == 'wplivechat-menu-settings' || $_GET['page'] == 'wplivechat-menu-offline-messages') ) {
|
1891 |
|
1892 |
if (!isset($_GET['action'])) {
|
1893 |
if (function_exists("wplc_register_pro_version")) {
|
2303 |
if($user_ip == ""){
|
2304 |
$user_ip = __('IP Address not recorded', 'wplivechat');
|
2305 |
} else {
|
2306 |
+
$user_ip = "<a href='http://www.ip-adress.com/ip_tracer/" . $user_ip . "' title='".__('Whois for' ,'wplivechat')." ".$user_ip."' target='_BLANK'>".$user_ip."</a>";
|
2307 |
}
|
2308 |
|
2309 |
echo "<h2>$status " . __('Chat with', 'wplivechat') . " " . $result->name . "</h2>";
|
2798 |
if ($action == 'history') {
|
2799 |
wplc_admin_view_chat_history(sanitize_text_field($cid));
|
2800 |
} else if ($action == 'download_history'){
|
2801 |
+
|
2802 |
+
//Moved into the init hook as of version 6.0.01 due to different functionality
|
2803 |
+
|
2804 |
+
//wplc_admin_download_history(sanitize_text_field($_GET['type']), sanitize_text_field($cid));
|
2805 |
}
|
2806 |
|
2807 |
|
2937 |
global $wpdb;
|
2938 |
global $wplc_tblname_offline_msgs;
|
2939 |
|
2940 |
+
echo "
|
2941 |
<table class=\"wp-list-table widefat fixed \" cellspacing=\"0\">
|
2942 |
<thead>
|
2943 |
<tr>
|
2945 |
<th scope='col' id='wplc_name_colum' class='manage-column column-id'><span>" . __("Name", "wplivechat") . "</span></th>
|
2946 |
<th scope='col' id='wplc_email_colum' class='manage-column column-id'>" . __("Email", "wplivechat") . "</th>
|
2947 |
<th scope='col' id='wplc_message_colum' class='manage-column column-id'>" . __("Message", "wplivechat") . "</th>
|
2948 |
+
<th scope='col' id='wplc_message_colum' class='manage-column column-id'>" . __("Actions", "wplivechat") . "</th>
|
2949 |
</tr>
|
2950 |
</thead>
|
2951 |
<tbody id=\"the-list\" class='list:wp_list_text_link'>";
|
2963 |
echo "<td class='chat_name column_chat_name' id='chat_name_" . $result->id . "'><img src=\"//www.gravatar.com/avatar/" . md5($result->email) . "?s=30\" /> " . $result->name . "</td>";
|
2964 |
echo "<td class='chat_email column_chat_email' id='chat_email_" . $result->id . "'><a href='mailto:" . $result->email . "' title='Email " . ".$result->email." . "'>" . $result->email . "</a></td>";
|
2965 |
echo "<td class='chat_name column_chat_url' id='chat_url_" . $result->id . "'>" . $result->message . "</td>";
|
2966 |
+
echo "<td class='chat_name column_chat_delete'><button class='button wplc_delete_message' title='".__('Delete Message', 'wplivechat')."' class='wplc_delete_message' mid='".$result->id."'><i class='fa fa-times'></i></button></td>";
|
2967 |
echo "</tr>";
|
2968 |
}
|
2969 |
}
|
2970 |
|
2971 |
echo "
|
2972 |
</tbody>
|
2973 |
+
</table>";
|
2974 |
}
|
2975 |
|
2976 |
function wplc_settings_page_basic() {
|
3820 |
}
|
3821 |
}
|
3822 |
|
3823 |
+
add_action('init', 'wplc_admin_download_new_chat_history');
|
3824 |
+
|
3825 |
+
function wplc_admin_download_new_chat_history(){
|
3826 |
+
if (isset($_GET['action']) && $_GET['action'] == "download_history") {
|
3827 |
|
3828 |
+
global $wpdb;
|
3829 |
+
|
3830 |
+
$chat_id = $_GET['cid'];
|
3831 |
+
$fileName = 'live_chat_history_'.$chat_id.'.csv';
|
3832 |
+
|
3833 |
+
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
|
3834 |
+
header('Content-Description: File Transfer');
|
3835 |
+
header("Content-type: text/csv");
|
3836 |
+
header("Content-Disposition: attachment; filename={$fileName}");
|
3837 |
+
header("Expires: 0");
|
3838 |
+
header("Pragma: public");
|
3839 |
+
|
3840 |
+
$fh = @fopen( 'php://output', 'w' );
|
3841 |
+
|
3842 |
+
global $wpdb;
|
3843 |
+
global $wplc_tblname_msgs;
|
3844 |
+
|
3845 |
+
$results = $wpdb->get_results(
|
3846 |
+
"
|
3847 |
+
SELECT *
|
3848 |
+
FROM $wplc_tblname_msgs
|
3849 |
+
WHERE `chat_sess_id` = '$chat_id'
|
3850 |
+
ORDER BY `timestamp` ASC
|
3851 |
+
LIMIT 0, 100
|
3852 |
+
"
|
3853 |
+
);
|
3854 |
+
|
3855 |
+
$fields[] = array(
|
3856 |
+
'id' => __('Chat ID', 'wplivechat'),
|
3857 |
+
'msgfrom' => __('From', 'wplivechat'),
|
3858 |
+
'msg' => __('Message', 'wplivechat'),
|
3859 |
+
'time' => __('Timestamp', 'wplivechat'),
|
3860 |
+
'orig' => __('Origin', 'wplivechat'),
|
3861 |
+
);
|
3862 |
+
|
3863 |
+
foreach ($results as $result => $key) {
|
3864 |
+
if($key->originates == 2){
|
3865 |
+
$user = __('user', 'wplivechat');
|
3866 |
+
} else {
|
3867 |
+
$user = __('agent', 'wplivechat');
|
3868 |
+
}
|
3869 |
+
|
3870 |
+
$fields[] = array(
|
3871 |
+
'id' => $key->chat_sess_id,
|
3872 |
+
'msgfrom' => $key->msgfrom,
|
3873 |
+
'msg' => apply_filters("wplc_filter_message_control_out",$key->msg),
|
3874 |
+
'time' => $key->timestamp,
|
3875 |
+
'orig' => $user,
|
3876 |
+
);
|
3877 |
+
}
|
3878 |
+
|
3879 |
+
foreach($fields as $field){
|
3880 |
+
fputcsv($fh, $field, ",", '"');
|
3881 |
+
}
|
3882 |
+
// Close the file
|
3883 |
+
fclose($fh);
|
3884 |
+
// Make sure nothing else is sent, our file is done
|
3885 |
+
exit;
|
3886 |
+
|
3887 |
+
}
|
3888 |
+
}
|
3889 |
|
3890 |
function wplc_admin_download_history($type, $cid){
|
3891 |
|