Version Description
- 2015-07-13 - Low Priority =
- Improvement: Gravatar images will load on sites using SSL without any issues
- Improvement: Hungarian live chat translation file name fixed
- Improvement: Styling improvements on the live chat dashboard
- New Translations:
- Turkish (Thank you Yavuz Aksu)
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 4.4.2 |
Comparing to | |
See all releases |
Code changes from version 4.4.1 to 4.4.2
- ajax_new.php +0 -3
- css/chat-style.css +81 -79
- functions.php +11 -11
- includes/settings_page.php +1 -1
- languages/wplivechat-hu_HU.mo +0 -0
- languages/wplivechat-hu_HU.po +1522 -0
- languages/wplivechat-tr-TR.mo +0 -0
- languages/wplivechat-tr-TR.po +1731 -0
- readme.txt +113 -2
- wp-live-chat-support.php +34 -25
ajax_new.php
CHANGED
@@ -16,9 +16,6 @@ function wplc_init_ajax_callback() {
|
|
16 |
|
17 |
$check = check_ajax_referer( 'wplc', 'security' );
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
if ($check == 1) {
|
23 |
|
24 |
|
16 |
|
17 |
$check = check_ajax_referer( 'wplc', 'security' );
|
18 |
|
|
|
|
|
|
|
19 |
if ($check == 1) {
|
20 |
|
21 |
|
css/chat-style.css
CHANGED
@@ -133,12 +133,12 @@
|
|
133 |
clear:both;
|
134 |
|
135 |
}
|
136 |
-
|
137 |
clear:both;
|
138 |
font-size:0.9em;
|
139 |
margin-top:20px;
|
140 |
|
141 |
-
}
|
142 |
.admin_visitor_advanced_info .part1 {
|
143 |
color:#3b3b3b;
|
144 |
}
|
@@ -164,12 +164,12 @@
|
|
164 |
width: 80%;
|
165 |
margin: 0 auto;
|
166 |
}
|
167 |
-
|
168 |
width: 65%;
|
169 |
display: inline-block;
|
170 |
background-color: #FFF;
|
171 |
float: left;
|
172 |
-
padding: 10px
|
173 |
box-shadow: 1px 1px 3px #ccc;
|
174 |
}
|
175 |
|
@@ -178,96 +178,53 @@
|
|
178 |
display: inline-block;
|
179 |
background-color: #FFF;
|
180 |
float: right;
|
181 |
-
padding: 10px;
|
182 |
box-shadow: 1px 1px 3px #ccc;
|
183 |
}
|
184 |
|
185 |
-
.
|
186 |
-
|
187 |
-
display: inline-block;
|
188 |
-
border: 1px solid #EEE;
|
189 |
-
border-radius: 5px;
|
190 |
-
box-shadow: 1px 1px 21px #EEE;
|
191 |
-
margin: 8px auto;
|
192 |
-
}
|
193 |
-
|
194 |
-
.wplc_single_chat .wplc_chat_status{
|
195 |
-
|
196 |
-
}
|
197 |
-
|
198 |
-
.wplc_single_chat .wplc_user_image {
|
199 |
-
width: 100px;
|
200 |
-
display: inline-block;
|
201 |
-
}
|
202 |
-
|
203 |
-
.wplc_single_chat .wplc_user_image img{
|
204 |
-
border-radius: 100px;
|
205 |
-
}
|
206 |
-
|
207 |
-
.wplc_single_chat .wplc_user_meta_data{
|
208 |
-
font-size: 0.9em;
|
209 |
-
display: inline-block;
|
210 |
-
vertical-align: top;
|
211 |
-
}
|
212 |
-
|
213 |
-
.wplc_single_chat .wplc_chat_section{
|
214 |
-
display: inline-block;
|
215 |
-
vertical-align: top;
|
216 |
-
width: 29%;
|
217 |
-
border-left: 1px solid #eee;
|
218 |
-
padding: 13px;
|
219 |
-
height: 100px;
|
220 |
}
|
221 |
-
|
222 |
-
.wplc_single_chat .wplc_chat_section .wplc_agent_actions{
|
223 |
text-align: center;
|
224 |
-
|
225 |
}
|
226 |
|
227 |
-
.
|
228 |
-
|
229 |
-
}
|
230 |
-
|
231 |
-
.wplc_single_chat .wplc_chat_section .admin_visitor_advanced_info hr{
|
232 |
-
margin: 3px 0;
|
233 |
-
}
|
234 |
-
|
235 |
-
.wplc_single_chat .wplc_user_name {
|
236 |
}
|
237 |
|
238 |
-
.
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
padding: 0 10px;
|
243 |
-
}
|
244 |
-
.wplc_single_chat h3 .active{
|
245 |
-
color: green;
|
246 |
}
|
247 |
|
248 |
-
.
|
249 |
-
|
250 |
}
|
251 |
|
252 |
-
.wplc_single_chat
|
253 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
}
|
255 |
-
|
256 |
-
|
257 |
-
|
|
|
258 |
}
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
}
|
263 |
-
|
264 |
-
|
265 |
-
width: 100%;
|
266 |
}
|
267 |
|
268 |
-
.wplc_single_chat .wplc_actions{
|
269 |
-
|
270 |
-
}
|
271 |
|
272 |
.wplc_single_visitor{
|
273 |
border-bottom: 1px solid #ccc;
|
@@ -294,7 +251,7 @@
|
|
294 |
}
|
295 |
|
296 |
.wplc_single_visitor .wplc_user_name {
|
297 |
-
|
298 |
}
|
299 |
|
300 |
.wplc_single_visitor .wplc_user_name h3{
|
@@ -335,7 +292,7 @@
|
|
335 |
}
|
336 |
|
337 |
.wplc_single_visitor .wplc_actions{
|
338 |
-
|
339 |
}
|
340 |
|
341 |
.wplc_icon_message{
|
@@ -353,5 +310,50 @@
|
|
353 |
|
354 |
.wplc_visitor_icon{
|
355 |
padding-right: 10px;
|
356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
}
|
133 |
clear:both;
|
134 |
|
135 |
}
|
136 |
+
/*.admin_visitor_advanced_info {
|
137 |
clear:both;
|
138 |
font-size:0.9em;
|
139 |
margin-top:20px;
|
140 |
|
141 |
+
}*/
|
142 |
.admin_visitor_advanced_info .part1 {
|
143 |
color:#3b3b3b;
|
144 |
}
|
164 |
width: 80%;
|
165 |
margin: 0 auto;
|
166 |
}
|
167 |
+
#wplc_admin_chat_area{
|
168 |
width: 65%;
|
169 |
display: inline-block;
|
170 |
background-color: #FFF;
|
171 |
float: left;
|
172 |
+
/*padding: 10px;*/
|
173 |
box-shadow: 1px 1px 3px #ccc;
|
174 |
}
|
175 |
|
178 |
display: inline-block;
|
179 |
background-color: #FFF;
|
180 |
float: right;
|
|
|
181 |
box-shadow: 1px 1px 3px #ccc;
|
182 |
}
|
183 |
|
184 |
+
.wplc_visitor_container{
|
185 |
+
padding: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
}
|
187 |
+
.wplc_visitor_container h1{
|
|
|
188 |
text-align: center;
|
189 |
+
line-height: 22px;
|
190 |
}
|
191 |
|
192 |
+
.wplc_chats_container h2{
|
193 |
+
padding: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
}
|
195 |
|
196 |
+
.wplc_chat_section {
|
197 |
+
width: 33.33%;
|
198 |
+
display: table-cell;
|
199 |
+
vertical-align: middle;
|
|
|
|
|
|
|
|
|
200 |
}
|
201 |
|
202 |
+
.wplc_agent_actions{
|
203 |
+
text-align: center;
|
204 |
}
|
205 |
|
206 |
+
.wplc_single_chat{
|
207 |
+
width: 100%;
|
208 |
+
display: inline-block;
|
209 |
+
border: 1px solid #EEE;
|
210 |
+
border-radius: 5px;
|
211 |
+
box-shadow: 1px 1px 21px #EEE;
|
212 |
+
margin: 8px auto;
|
213 |
+
padding: 10px;
|
214 |
}
|
215 |
+
.wplc_single_chat .wplc_user_image {
|
216 |
+
width: 30%;
|
217 |
+
display: inline-block;
|
218 |
+
float: left;
|
219 |
}
|
220 |
+
.wplc_user_meta_data {
|
221 |
+
width: 70%;
|
222 |
+
display: inline-block;
|
223 |
}
|
224 |
+
.wplc_single_chat .wplc_user_image img{
|
225 |
+
border-radius: 100px;
|
|
|
226 |
}
|
227 |
|
|
|
|
|
|
|
228 |
|
229 |
.wplc_single_visitor{
|
230 |
border-bottom: 1px solid #ccc;
|
251 |
}
|
252 |
|
253 |
.wplc_single_visitor .wplc_user_name {
|
254 |
+
|
255 |
}
|
256 |
|
257 |
.wplc_single_visitor .wplc_user_name h3{
|
292 |
}
|
293 |
|
294 |
.wplc_single_visitor .wplc_actions{
|
295 |
+
|
296 |
}
|
297 |
|
298 |
.wplc_icon_message{
|
310 |
|
311 |
.wplc_visitor_icon{
|
312 |
padding-right: 10px;
|
313 |
+
|
314 |
+
}
|
315 |
+
|
316 |
+
@media all and (max-width: 550px) {
|
317 |
+
#wplc_admin_chat_area{
|
318 |
+
width: 100%;
|
319 |
+
padding: 0;
|
320 |
+
margin: 0 0 10px 0;
|
321 |
+
}
|
322 |
+
#wplc_admin_visitor_area{
|
323 |
+
width: 100%;
|
324 |
+
}
|
325 |
+
#wplc_admin_chat_area p{
|
326 |
+
padding: 10px
|
327 |
+
}
|
328 |
+
}
|
329 |
+
@media all and (max-width: 1440px) {
|
330 |
+
.wplc_single_chat .wplc_user_image {
|
331 |
+
width: 100%;
|
332 |
+
display: block;
|
333 |
+
text-align: center;
|
334 |
+
}
|
335 |
+
.wplc_user_meta_data {
|
336 |
+
width: 100%;
|
337 |
+
display: block;
|
338 |
+
text-align: center;
|
339 |
+
}
|
340 |
+
}
|
341 |
+
|
342 |
+
@media all and (max-width: 1200px) {
|
343 |
+
.wplc_chat_section.section_1 {
|
344 |
+
display: inline-block;
|
345 |
+
width: 100%;
|
346 |
+
padding: 10px;
|
347 |
+
}
|
348 |
+
}
|
349 |
+
|
350 |
+
@media all and (max-width: 850px) {
|
351 |
+
.wplc_chat_section.section_2 {
|
352 |
+
display: inline-block;
|
353 |
+
width: 100%;
|
354 |
+
padding: 10px;
|
355 |
+
}
|
356 |
+
.admin_visitor_advanced_info{
|
357 |
+
width: 93%;
|
358 |
+
}
|
359 |
}
|
functions.php
CHANGED
@@ -247,7 +247,7 @@ function wplc_list_chats() {
|
|
247 |
"
|
248 |
SELECT *
|
249 |
FROM $wplc_tblname_chats
|
250 |
-
WHERE `status` = 3 OR `status` = 2
|
251 |
ORDER BY `timestamp` ASC
|
252 |
|
253 |
"
|
@@ -295,23 +295,23 @@ function wplc_list_chats() {
|
|
295 |
$trstyle = "";
|
296 |
|
297 |
$table .= "
|
298 |
-
<div class='wplc_single_chat' id='record_
|
299 |
-
<div class='wplc_chat_section'>
|
300 |
<div class='wplc_user_image' id='chat_image_".$result->id."'>
|
301 |
-
<img src=\"
|
302 |
</div>
|
303 |
<div class='wplc_user_meta_data'>
|
304 |
<div class='wplc_user_name' id='chat_name_".$result->id."'>
|
305 |
<h3>".$result->name.$icon."</h3>
|
306 |
-
".$result->email."
|
307 |
</div>
|
308 |
</div>
|
309 |
</div>
|
310 |
-
<div class='wplc_chat_section'>
|
311 |
<div class='admin_visitor_advanced_info'>
|
312 |
<strong>" . __("Site Info", "wplivechat") . "</strong>
|
313 |
<hr />
|
314 |
-
<span class='part1'>" . __("Chat initiated on:", "wplivechat") . "</span> <span class='part2'>" . $result->url . "</span>
|
315 |
</div>
|
316 |
|
317 |
<div class='admin_visitor_advanced_info'>
|
@@ -321,7 +321,7 @@ function wplc_list_chats() {
|
|
321 |
<span class='part1'>" . __("IP Address:", "wplivechat") . "</span><span class='part2'> ".$user_ip."
|
322 |
</div>
|
323 |
</div>
|
324 |
-
<div class='wplc_chat_section'>
|
325 |
<div class='wplc_agent_actions'>
|
326 |
$actions
|
327 |
</div>
|
@@ -485,7 +485,7 @@ function wplc_return_chat_messages($cid) {
|
|
485 |
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim(sanitize_text_field($_COOKIE['wplc_email'])))); } else { $wplc_user_gravatar = ""; }
|
486 |
|
487 |
if($wplc_user_gravatar != ""){
|
488 |
-
$image = "<img src='
|
489 |
} else {
|
490 |
$image = "";
|
491 |
}
|
@@ -596,7 +596,7 @@ function wplc_return_admin_chat_messages($cid) {
|
|
596 |
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
|
597 |
|
598 |
if($wplc_user_gravatar != ""){
|
599 |
-
$image = "<img src='
|
600 |
} else {
|
601 |
$image = "";
|
602 |
}
|
@@ -1092,7 +1092,7 @@ function wplc_admin_display_missed_chats() {
|
|
1092 |
foreach ($results as $result) {
|
1093 |
echo "<tr id=\"record_" . $result->id . "\">";
|
1094 |
echo "<td class='chat_id column-chat_d'>" . $result->timestamp . "</td>";
|
1095 |
-
echo "<td class='chat_name column_chat_name' id='chat_name_" . $result->id . "'><img src=\"
|
1096 |
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>";
|
1097 |
echo "<td class='chat_name column_chat_url' id='chat_url_" . $result->id . "'>" . $result->url . "</td>";
|
1098 |
echo "</tr>";
|
247 |
"
|
248 |
SELECT *
|
249 |
FROM $wplc_tblname_chats
|
250 |
+
WHERE `status` = 3 OR `status` = 2 OR `status` = 10
|
251 |
ORDER BY `timestamp` ASC
|
252 |
|
253 |
"
|
295 |
$trstyle = "";
|
296 |
|
297 |
$table .= "
|
298 |
+
<div class='wplc_single_chat' id='record_".$result->id."' $trstyle>
|
299 |
+
<div class='wplc_chat_section section_1'>
|
300 |
<div class='wplc_user_image' id='chat_image_".$result->id."'>
|
301 |
+
<img src=\"//www.gravatar.com/avatar/".md5($result->email)."?s=60&d=mm\" />
|
302 |
</div>
|
303 |
<div class='wplc_user_meta_data'>
|
304 |
<div class='wplc_user_name' id='chat_name_".$result->id."'>
|
305 |
<h3>".$result->name.$icon."</h3>
|
306 |
+
<a href='mailto:".$result->email."' target='_BLANK'>".$result->email."</a>
|
307 |
</div>
|
308 |
</div>
|
309 |
</div>
|
310 |
+
<div class='wplc_chat_section section_2'>
|
311 |
<div class='admin_visitor_advanced_info'>
|
312 |
<strong>" . __("Site Info", "wplivechat") . "</strong>
|
313 |
<hr />
|
314 |
+
<span class='part1'>" . __("Chat initiated on:", "wplivechat") . "</span> <span class='part2'> <a href='".$result->url."' target='_BLANK'>" . $result->url . "</a></span>
|
315 |
</div>
|
316 |
|
317 |
<div class='admin_visitor_advanced_info'>
|
321 |
<span class='part1'>" . __("IP Address:", "wplivechat") . "</span><span class='part2'> ".$user_ip."
|
322 |
</div>
|
323 |
</div>
|
324 |
+
<div class='wplc_chat_section section_3'>
|
325 |
<div class='wplc_agent_actions'>
|
326 |
$actions
|
327 |
</div>
|
485 |
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim(sanitize_text_field($_COOKIE['wplc_email'])))); } else { $wplc_user_gravatar = ""; }
|
486 |
|
487 |
if($wplc_user_gravatar != ""){
|
488 |
+
$image = "<img src='//www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
489 |
} else {
|
490 |
$image = "";
|
491 |
}
|
596 |
if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
|
597 |
|
598 |
if($wplc_user_gravatar != ""){
|
599 |
+
$image = "<img src='//www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
600 |
} else {
|
601 |
$image = "";
|
602 |
}
|
1092 |
foreach ($results as $result) {
|
1093 |
echo "<tr id=\"record_" . $result->id . "\">";
|
1094 |
echo "<td class='chat_id column-chat_d'>" . $result->timestamp . "</td>";
|
1095 |
+
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>";
|
1096 |
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>";
|
1097 |
echo "<td class='chat_name column_chat_url' id='chat_url_" . $result->id . "'>" . $result->url . "</td>";
|
1098 |
echo "</tr>";
|
includes/settings_page.php
CHANGED
@@ -66,7 +66,7 @@
|
|
66 |
<?php _e("available in the","wplivechat")?>
|
67 |
<a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=name" title="<?php _e("Pro Add-on","wplivechat")?>" target="_BLANK"><?php _e("Pro Add-on","wplivechat")?></a>
|
68 |
<?php _e("only","wplivechat")?>
|
69 |
-
$19.95.
|
70 |
</i>
|
71 |
</small>
|
72 |
</td>
|
66 |
<?php _e("available in the","wplivechat")?>
|
67 |
<a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=name" title="<?php _e("Pro Add-on","wplivechat")?>" target="_BLANK"><?php _e("Pro Add-on","wplivechat")?></a>
|
68 |
<?php _e("only","wplivechat")?>
|
69 |
+
$19.95.
|
70 |
</i>
|
71 |
</small>
|
72 |
</td>
|
languages/wplivechat-hu_HU.mo
ADDED
Binary file
|
languages/wplivechat-hu_HU.po
ADDED
@@ -0,0 +1,1522 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2015-02-19 14:26+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-03-09 19:55+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: en\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
|
16 |
+
"live-chat-support\n"
|
17 |
+
"X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\wp-"
|
18 |
+
"live-chat-support-pro\n"
|
19 |
+
|
20 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:264
|
21 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:228
|
22 |
+
msgid "Admin has closed and ended the chat"
|
23 |
+
msgstr "Admin kilépett, a beszélgetés befejeződött"
|
24 |
+
|
25 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:299
|
26 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:252
|
27 |
+
msgid "There is No Answer. Please Try Again Later"
|
28 |
+
msgstr "Nincs válasz, később próbálja újra!"
|
29 |
+
|
30 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:23
|
31 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:874
|
32 |
+
msgid "Visitors on site"
|
33 |
+
msgstr "Látogató az oldalon"
|
34 |
+
|
35 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:40
|
36 |
+
msgid "Initiate Chat"
|
37 |
+
msgstr "Párbeszéd kezdeményezése"
|
38 |
+
|
39 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:42
|
40 |
+
msgid "You must be a chat agent to initiate chats"
|
41 |
+
msgstr "Beszélgetés csak operátorként kezdeményezhető"
|
42 |
+
|
43 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:53
|
44 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:205
|
45 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1163
|
46 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
|
47 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:940
|
48 |
+
msgid "IP Address not recorded"
|
49 |
+
msgstr "Nem regisztrált IP cím"
|
50 |
+
|
51 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:55
|
52 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:207
|
53 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1165
|
54 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:207
|
55 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:942
|
56 |
+
msgid "Whois for"
|
57 |
+
msgstr "Ki az "
|
58 |
+
|
59 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:87
|
60 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:257
|
61 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1202
|
62 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:241
|
63 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:964
|
64 |
+
msgid "Site Info"
|
65 |
+
msgstr "Oldal információ"
|
66 |
+
|
67 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:89
|
68 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:259
|
69 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1204
|
70 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:243
|
71 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:966
|
72 |
+
msgid "Chat initiated on:"
|
73 |
+
msgstr "Beszélgetés kezdeményezve:"
|
74 |
+
|
75 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:93
|
76 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:263
|
77 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1208
|
78 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:247
|
79 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:970
|
80 |
+
msgid "Advanced Info"
|
81 |
+
msgstr "Fejlesztői info"
|
82 |
+
|
83 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:95
|
84 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:265
|
85 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1210
|
86 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:249
|
87 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:972
|
88 |
+
msgid "Browser:"
|
89 |
+
msgstr "Böngésző:"
|
90 |
+
|
91 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:96
|
92 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:266
|
93 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1211
|
94 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:250
|
95 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:973
|
96 |
+
msgid "IP Address:"
|
97 |
+
msgstr "IP cím:"
|
98 |
+
|
99 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:139
|
100 |
+
msgid "No visitors on-line at the moment"
|
101 |
+
msgstr "Jelenleg nincs látogató"
|
102 |
+
|
103 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:182
|
104 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:188
|
105 |
+
msgid "No chat sessions available at the moment"
|
106 |
+
msgstr "Jelenleg nincs aktív beszélgetés"
|
107 |
+
|
108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:184
|
109 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:190
|
110 |
+
msgid "Active Chats"
|
111 |
+
msgstr "Aktív párbeszéd"
|
112 |
+
|
113 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:213
|
114 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
115 |
+
msgid "Accept Chat"
|
116 |
+
msgstr "Párbeszéd fogadása"
|
117 |
+
|
118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
119 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
120 |
+
msgid "Incoming Chat"
|
121 |
+
msgstr "Bejövő párbeszéd"
|
122 |
+
|
123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:215
|
124 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
125 |
+
msgid "You have an incoming chat."
|
126 |
+
msgstr "Bejövő beszélgetés "
|
127 |
+
|
128 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:219
|
129 |
+
msgid "You must be a chat agent to answer chats"
|
130 |
+
msgstr "Válaszadáshoz operátornak kell lenni "
|
131 |
+
|
132 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:225
|
133 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:218
|
134 |
+
msgid "Open Chat Window"
|
135 |
+
msgstr "Párbeszéd ablak megnyitása"
|
136 |
+
|
137 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
138 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
139 |
+
msgid "Chat Active"
|
140 |
+
msgstr "Aktív párbeszéd"
|
141 |
+
|
142 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:227
|
143 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
144 |
+
msgid "This chat is active"
|
145 |
+
msgstr "Ez a párbeszéd aktív"
|
146 |
+
|
147 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:229
|
148 |
+
msgid "Chat has been answered by another agent"
|
149 |
+
msgstr "A beszélgetést épp most válaszolta meg egy másik operátor "
|
150 |
+
|
151 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
|
152 |
+
msgid "Chat answered by another agent"
|
153 |
+
msgstr "A beszélgetést már megválaszolta egy operátor"
|
154 |
+
|
155 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:288
|
156 |
+
msgid "WP Live Chat Support - Offline Message from "
|
157 |
+
msgstr "WP Live Chat Support - Offline üzenet érkezett"
|
158 |
+
|
159 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
160 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:729
|
161 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:599
|
162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:819
|
163 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:858
|
164 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:886
|
165 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
|
166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:483
|
167 |
+
msgid "Name"
|
168 |
+
msgstr "Név"
|
169 |
+
|
170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
171 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:730
|
172 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:600
|
173 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:820
|
174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:859
|
175 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:887
|
176 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:484
|
177 |
+
msgid "Email"
|
178 |
+
msgstr "Email"
|
179 |
+
|
180 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
181 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:731
|
182 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:860
|
183 |
+
msgid "Message"
|
184 |
+
msgstr "Üzenet"
|
185 |
+
|
186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:289
|
187 |
+
msgid "Via WP Live Chat Support"
|
188 |
+
msgstr "WP Live Chat Support által"
|
189 |
+
|
190 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:337
|
191 |
+
msgid "Alert: Someone wants to chat with you on "
|
192 |
+
msgstr "Figyelem: Valaki beszélgetni szeretne"
|
193 |
+
|
194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
195 |
+
msgid "Someone wants to chat with you on your website"
|
196 |
+
msgstr "Valaki beszélgetni szeretne a weboldalon"
|
197 |
+
|
198 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:338
|
199 |
+
msgid "Log in"
|
200 |
+
msgstr "Bejelentkezés"
|
201 |
+
|
202 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:508
|
203 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:524
|
204 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:539
|
205 |
+
msgid "Chat Agent"
|
206 |
+
msgstr "Operátor"
|
207 |
+
|
208 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:513
|
209 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:529
|
210 |
+
msgid "Make this user a chat agent"
|
211 |
+
msgstr "A felhasználó operátorrá módosítása "
|
212 |
+
|
213 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:543
|
214 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
215 |
+
msgstr "Felhasználóként nincs jogosultsága operátort létrehozni"
|
216 |
+
|
217 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:544
|
218 |
+
msgid "Please contact the administrator of this website to change this."
|
219 |
+
msgstr ""
|
220 |
+
"Ehhez a módosításhoz vegye fel a kapcsolatot a weboldal Adminisztrátorával."
|
221 |
+
|
222 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:630
|
223 |
+
msgid "Chat Agent Online"
|
224 |
+
msgstr "Operátor online"
|
225 |
+
|
226 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:632
|
227 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:637
|
228 |
+
msgid "Chat Agents Online"
|
229 |
+
msgstr "Operátorok online"
|
230 |
+
|
231 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:728
|
232 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:598
|
233 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:885
|
234 |
+
msgid "Date"
|
235 |
+
msgstr "Dátum"
|
236 |
+
|
237 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:745
|
238 |
+
msgid "You have not received any offline messages."
|
239 |
+
msgstr "Nincs új offline üzenet"
|
240 |
+
|
241 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:20
|
242 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:5
|
243 |
+
msgid "WP Live Chat Support Settings"
|
244 |
+
msgstr "WP Live Chat Support beállítások"
|
245 |
+
|
246 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:31
|
247 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:19
|
248 |
+
msgid "General Settings"
|
249 |
+
msgstr "Általános beállítások"
|
250 |
+
|
251 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:32
|
252 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:20
|
253 |
+
msgid "Chat Box"
|
254 |
+
msgstr "Párbeszéd ablak"
|
255 |
+
|
256 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:33
|
257 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:261
|
258 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1875
|
259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:21
|
260 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:283
|
261 |
+
msgid "Offline Messages"
|
262 |
+
msgstr "Offline üzenetek"
|
263 |
+
|
264 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:34
|
265 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:360
|
266 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:22
|
267 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
|
268 |
+
msgid "Styling"
|
269 |
+
msgstr "Stílus"
|
270 |
+
|
271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:35
|
272 |
+
msgid "Chat Agents"
|
273 |
+
msgstr "Operátor"
|
274 |
+
|
275 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:36
|
276 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:551
|
277 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
|
278 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:432
|
279 |
+
msgid "Animations"
|
280 |
+
msgstr "Animáció"
|
281 |
+
|
282 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:39
|
283 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
|
284 |
+
msgid "Main Settings"
|
285 |
+
msgstr "Beállítások"
|
286 |
+
|
287 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:42
|
288 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
289 |
+
msgid "Chat enabled"
|
290 |
+
msgstr "Párbeszéd elérhető"
|
291 |
+
|
292 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:45
|
293 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
|
294 |
+
msgid "Yes"
|
295 |
+
msgstr "Igen"
|
296 |
+
|
297 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:46
|
298 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:34
|
299 |
+
msgid "No"
|
300 |
+
msgstr "Nem"
|
301 |
+
|
302 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:51
|
303 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
|
304 |
+
msgid "Choose when I want to be online"
|
305 |
+
msgstr "Online mód kiválasztása."
|
306 |
+
|
307 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:54
|
308 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
|
309 |
+
msgid ""
|
310 |
+
"Checking this will allow you to change your status to \"Online\" or \"Offline"
|
311 |
+
"\" on the \"Live Chat\" page."
|
312 |
+
msgstr ""
|
313 |
+
"Itt változtatható a státusz \"online\"-ra vagy \"offline\"-ra a \"Live Chat"
|
314 |
+
"\" oldalon"
|
315 |
+
|
316 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:59
|
317 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:55
|
318 |
+
msgid "Hide Chat"
|
319 |
+
msgstr "Beszélgetés elrejtése"
|
320 |
+
|
321 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:60
|
322 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:56
|
323 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
324 |
+
msgstr "Beszélgetés elrejtése 24 órára, ha a felhasználó a \"X\"-re kattint"
|
325 |
+
|
326 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:68
|
327 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:72
|
328 |
+
msgid "Require Name And Email"
|
329 |
+
msgstr "Név és email megadása szükséges"
|
330 |
+
|
331 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:69
|
332 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:73
|
333 |
+
msgid ""
|
334 |
+
"Users will have to enter their Name and Email Address when starting a chat"
|
335 |
+
msgstr ""
|
336 |
+
"A felhasználóknak meg kell adniuk a nevüket és email-címüket a beszélgetés "
|
337 |
+
"kezdetekor"
|
338 |
+
|
339 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
340 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:81
|
341 |
+
msgid "Input Field Replacement Text"
|
342 |
+
msgstr "A helyettesítő szöveg beviteli mezője"
|
343 |
+
|
344 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:78
|
345 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:82
|
346 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
347 |
+
msgstr "Ez a szöveg lesz látható a név és email mezőben"
|
348 |
+
|
349 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:86
|
350 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:90
|
351 |
+
msgid "Use Logged In User Details"
|
352 |
+
msgstr "Használja a bejelentkezett felhasználói adatokat"
|
353 |
+
|
354 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
355 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:91
|
356 |
+
msgid ""
|
357 |
+
"A user's Name and Email Address will be used by default if they are logged "
|
358 |
+
"in."
|
359 |
+
msgstr "A felhasználó neve és email-címe lesz alapértelmezett bejelentkezéskor"
|
360 |
+
|
361 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:95
|
362 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:99
|
363 |
+
msgid "Enable On Mobile Devices"
|
364 |
+
msgstr "Elérhető mobil eszközön"
|
365 |
+
|
366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:96
|
367 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
368 |
+
msgid ""
|
369 |
+
"Disabling this will mean that the Chat Box will not be displayed on mobile "
|
370 |
+
"devices. (Smartphones and Tablets)"
|
371 |
+
msgstr ""
|
372 |
+
"Ennek letiltásával a beszélgetés ablak nem fog megjelenni mobil eszközökön "
|
373 |
+
"(okostelefon és tablet)"
|
374 |
+
|
375 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:104
|
376 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
|
377 |
+
msgid "Record a visitor's IP Address"
|
378 |
+
msgstr "Jegyezze meg a látogató IP címét"
|
379 |
+
|
380 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:105
|
381 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:109
|
382 |
+
msgid "Disable this to enable anonymity for your visitors"
|
383 |
+
msgstr "Ennek beállításával a látogatói anonimitás érhető el."
|
384 |
+
|
385 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:113
|
386 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:117
|
387 |
+
msgid "Include chat window on the following pages:"
|
388 |
+
msgstr "A beszélgetés a következő oldalakon jelenjen meg"
|
389 |
+
|
390 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:114
|
391 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:118
|
392 |
+
msgid ""
|
393 |
+
"Show the chat window on the following pages. Leave blank to show on all. "
|
394 |
+
"(Use comma-separated Page ID's)"
|
395 |
+
msgstr ""
|
396 |
+
"A beszélgetés a következő oldalakon legyen látható (oldal ID vesszővel "
|
397 |
+
"elválasztva). Hagyja üresen, ha mindegyiken szeretné. "
|
398 |
+
|
399 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:118
|
400 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:128
|
401 |
+
msgid ""
|
402 |
+
"Do not include and exclude pages at the same time. Please only use one or "
|
403 |
+
"the other"
|
404 |
+
msgstr ""
|
405 |
+
"Egyszerre nem lehet tiltani és engedélyezni az oldalt. Egy lehetőséget "
|
406 |
+
"válasszon."
|
407 |
+
|
408 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:123
|
409 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:133
|
410 |
+
msgid "Exclude chat window on the following pages:"
|
411 |
+
msgstr "Párbeszéd ablakok kizárása a következő oldalakon:"
|
412 |
+
|
413 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:124
|
414 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:134
|
415 |
+
msgid ""
|
416 |
+
"Do not show the chat window on the following pages. Leave blank to show on "
|
417 |
+
"all. (Use comma-separated Page ID's)"
|
418 |
+
msgstr "A beszélgetés a következő abalakokon ne legyen látható:"
|
419 |
+
|
420 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:132
|
421 |
+
msgid "Allow any user to make themselves a chat agent"
|
422 |
+
msgstr "Bármilyen felhasználó számára oparátori jogosultság engedélyezése"
|
423 |
+
|
424 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:135
|
425 |
+
msgid ""
|
426 |
+
"Checking this will allow any of your users to make themselves a chat agent "
|
427 |
+
"when editing their profile."
|
428 |
+
msgstr ""
|
429 |
+
"Ennek bejelölése esetén, engedélyezheti, hogy bármelyik felhasználó "
|
430 |
+
"operátori jogosultsággal rendelkezzen, amikor a saját profiljukat "
|
431 |
+
"szerkesztik."
|
432 |
+
|
433 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:142
|
434 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:152
|
435 |
+
msgid "Chat Window Settings"
|
436 |
+
msgstr "Párbeszéd ablak beállításai"
|
437 |
+
|
438 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:145
|
439 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:155
|
440 |
+
msgid "Chat box alignment"
|
441 |
+
msgstr "Párbeszéd ablak igazítása"
|
442 |
+
|
443 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:148
|
444 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:158
|
445 |
+
msgid "Bottom left"
|
446 |
+
msgstr "Bal alsó"
|
447 |
+
|
448 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:149
|
449 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:159
|
450 |
+
msgid "Bottom right"
|
451 |
+
msgstr "Jobb alsó"
|
452 |
+
|
453 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:150
|
454 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:160
|
455 |
+
msgid "Left"
|
456 |
+
msgstr "Bal"
|
457 |
+
|
458 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:151
|
459 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:161
|
460 |
+
msgid "Right"
|
461 |
+
msgstr "Jobb"
|
462 |
+
|
463 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:157
|
464 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:167
|
465 |
+
msgid "Auto Pop-up"
|
466 |
+
msgstr "Automatikus felugrás"
|
467 |
+
|
468 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:161
|
469 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:171
|
470 |
+
msgid ""
|
471 |
+
"Expand the chat box automatically (prompts the user to enter their name and "
|
472 |
+
"email address)."
|
473 |
+
msgstr ""
|
474 |
+
"Párbeszéd abalak automatikus kiterjesztése (kötelező megadni a felhasználó "
|
475 |
+
"nevét és email címet)"
|
476 |
+
|
477 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:167
|
478 |
+
msgid "Name "
|
479 |
+
msgstr "Név"
|
480 |
+
|
481 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:181
|
482 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
|
483 |
+
msgid "Picture"
|
484 |
+
msgstr "Kép"
|
485 |
+
|
486 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:189
|
487 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:196
|
488 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:212
|
489 |
+
msgid "Upload Image"
|
490 |
+
msgstr "Kép feltöltése"
|
491 |
+
|
492 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:191
|
493 |
+
msgid "Remove Image"
|
494 |
+
msgstr "Kép eltávolítása"
|
495 |
+
|
496 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:192
|
497 |
+
msgid "Recomended Size 40px x 40px"
|
498 |
+
msgstr "Ajánlott képméret: 40px x 40px"
|
499 |
+
|
500 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:198
|
501 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
|
502 |
+
msgid "Logo"
|
503 |
+
msgstr "Logo"
|
504 |
+
|
505 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:206
|
506 |
+
msgid "Upload Logo"
|
507 |
+
msgstr "Logo feltöltés"
|
508 |
+
|
509 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:208
|
510 |
+
msgid "Remove Logo"
|
511 |
+
msgstr "Logo eltávolítása"
|
512 |
+
|
513 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:209
|
514 |
+
msgid "Recomended Size 250px x 40px"
|
515 |
+
msgstr "Ajánlott méret: 250px x 40px"
|
516 |
+
|
517 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:215
|
518 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
|
519 |
+
msgid "Chat delay (seconds)"
|
520 |
+
msgstr "Párbeszéd késleltetés (másodpercenként)"
|
521 |
+
|
522 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:218
|
523 |
+
msgid "how long it takes for your chat window to pop up"
|
524 |
+
msgstr "mennyi ideig maradjon nyitva a párbeszéd ablak"
|
525 |
+
|
526 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:224
|
527 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:241
|
528 |
+
msgid "Chat notifications"
|
529 |
+
msgstr "Párbeszéd értesítések"
|
530 |
+
|
531 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:228
|
532 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:245
|
533 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
534 |
+
msgstr ""
|
535 |
+
"Azonnal értesítsen email-ben amint valaki beszélgetést akar kezdeményezni"
|
536 |
+
|
537 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:229
|
538 |
+
msgid "(while online only)"
|
539 |
+
msgstr "(csak miközben elérhető)"
|
540 |
+
|
541 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:234
|
542 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:257
|
543 |
+
msgid "Display name and avatar in chat"
|
544 |
+
msgstr "Logo és név megjelenítése a párbeszéd ablakon"
|
545 |
+
|
546 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:240
|
547 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:263
|
548 |
+
msgid "Display the agent and user name above each message in the chat window."
|
549 |
+
msgstr ""
|
550 |
+
"Jelenítse meg az operátor és felhasználó nevét minden párbeszéd abalak "
|
551 |
+
"felett."
|
552 |
+
|
553 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:245
|
554 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:268
|
555 |
+
msgid "Only show the chat window to users that are logged in"
|
556 |
+
msgstr "Csak bejelentkezett felhasználóknak jelenjen meg a párbeszéd ablak."
|
557 |
+
|
558 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:253
|
559 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:276
|
560 |
+
msgid ""
|
561 |
+
"By checking this, only users that are logged in will be able to chat with "
|
562 |
+
"you."
|
563 |
+
msgstr ""
|
564 |
+
"Ennek bejelölése esetén, csak a bejelentkezett felhasználók lesznek képesek "
|
565 |
+
"párbeszéd kezdeményezésére."
|
566 |
+
|
567 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:265
|
568 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:287
|
569 |
+
msgid "Do not allow users to send offline messages"
|
570 |
+
msgstr "Ne engedélyezze a felhasználóknak az offline üzenetek küldését"
|
571 |
+
|
572 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:273
|
573 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:291
|
574 |
+
msgid ""
|
575 |
+
"The chat window will be hidden when it is offline. Users will not be able to "
|
576 |
+
"send offline messages to you"
|
577 |
+
msgstr ""
|
578 |
+
"A párbeszéd ablak rejtve lesz offline módban. A felhasználók nem lesznek "
|
579 |
+
"képesek offline üzenetet küldeni."
|
580 |
+
|
581 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:278
|
582 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:296
|
583 |
+
msgid "Email Address"
|
584 |
+
msgstr "Email cím"
|
585 |
+
|
586 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:282
|
587 |
+
msgid "Email address where offline messages are delivered to"
|
588 |
+
msgstr "Email cím, ahova az offline üzenetek megérkeznek."
|
589 |
+
|
590 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:283
|
591 |
+
msgid ""
|
592 |
+
"Use comma separated email addresses to send to more than one email address"
|
593 |
+
msgstr ""
|
594 |
+
"Vesszővel válassza el az email címeket, több mint egy címre küldéshez."
|
595 |
+
|
596 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:291
|
597 |
+
msgid "Sending Method"
|
598 |
+
msgstr "Küldési mód"
|
599 |
+
|
600 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:292
|
601 |
+
msgid "WP Mail"
|
602 |
+
msgstr "WP Mail"
|
603 |
+
|
604 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:293
|
605 |
+
msgid "PHP Mailer"
|
606 |
+
msgstr "PHP Mailer"
|
607 |
+
|
608 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:305
|
609 |
+
msgid "Host"
|
610 |
+
msgstr "Host"
|
611 |
+
|
612 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:313
|
613 |
+
msgid "Port"
|
614 |
+
msgstr "Port"
|
615 |
+
|
616 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:321
|
617 |
+
msgid "Username"
|
618 |
+
msgstr "Felhasználó név"
|
619 |
+
|
620 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:329
|
621 |
+
msgid "Password"
|
622 |
+
msgstr "Jelszó"
|
623 |
+
|
624 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:338
|
625 |
+
msgid "Offline Chat Box Title"
|
626 |
+
msgstr "Offline párbeszéd ablak címe"
|
627 |
+
|
628 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:346
|
629 |
+
msgid "Offline Text Fields"
|
630 |
+
msgstr "Offline üzenet mezők"
|
631 |
+
|
632 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:379
|
633 |
+
msgid "Choose a theme"
|
634 |
+
msgstr "Válassza ki a témát"
|
635 |
+
|
636 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:384
|
637 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:385
|
638 |
+
msgid "Theme 1"
|
639 |
+
msgstr "Téma 1"
|
640 |
+
|
641 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:388
|
642 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:389
|
643 |
+
msgid "Theme 2"
|
644 |
+
msgstr "Téma 2"
|
645 |
+
|
646 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:392
|
647 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:393
|
648 |
+
msgid "Theme 3"
|
649 |
+
msgstr "Téma 3"
|
650 |
+
|
651 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:396
|
652 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:397
|
653 |
+
msgid "Theme 4"
|
654 |
+
msgstr "Téma 4"
|
655 |
+
|
656 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:400
|
657 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:401
|
658 |
+
msgid "Theme 5"
|
659 |
+
msgstr "Téma 5"
|
660 |
+
|
661 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:404
|
662 |
+
msgid "Theme 6"
|
663 |
+
msgstr "Téma 6"
|
664 |
+
|
665 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:405
|
666 |
+
msgid "Custom. Enter Colour Values Below"
|
667 |
+
msgstr "Testreszabás. Szín megadás"
|
668 |
+
|
669 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:421
|
670 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:358
|
671 |
+
msgid "Chat box fill color"
|
672 |
+
msgstr "Párbeszéd ablak kitöltő színe "
|
673 |
+
|
674 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:427
|
675 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:364
|
676 |
+
msgid "Chat box font color"
|
677 |
+
msgstr "Párbeszéd ablak címsor színe"
|
678 |
+
|
679 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:441
|
680 |
+
msgid "First Section Text"
|
681 |
+
msgstr "Első szövegrész"
|
682 |
+
|
683 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:450
|
684 |
+
msgid "Intro Text"
|
685 |
+
msgstr "Bevezető szöveg"
|
686 |
+
|
687 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:456
|
688 |
+
msgid "Second Section Text"
|
689 |
+
msgstr "Második rész szöveg"
|
690 |
+
|
691 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:463
|
692 |
+
msgid "Reactivate Chat Section Text"
|
693 |
+
msgstr "Újra létrehozott párbeszéd szöveg"
|
694 |
+
|
695 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:471
|
696 |
+
msgid "User chat welcome"
|
697 |
+
msgstr "Üdvözlő üzenet"
|
698 |
+
|
699 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:480
|
700 |
+
msgid "Other text"
|
701 |
+
msgstr "Más szöveg"
|
702 |
+
|
703 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:508
|
704 |
+
msgid "Current Users that are Chat Agents"
|
705 |
+
msgstr "Jelenlegi operátorok"
|
706 |
+
|
707 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:522
|
708 |
+
msgid ""
|
709 |
+
"To add or remove a user as a chat agent, go into the users profile and "
|
710 |
+
"select the checkbox Chat Agent and click save."
|
711 |
+
msgstr ""
|
712 |
+
"Felhasználó hozzáadása vagy törlése operátorként lehetséges, lépjen be a "
|
713 |
+
"felhasználói profilba, pipálja ki az operátort, maid nyomja meg a mentés "
|
714 |
+
"gombot."
|
715 |
+
|
716 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:523
|
717 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
718 |
+
msgstr ""
|
719 |
+
"Amennyiben nincs operátor online, a párbeszéd offline módban jelenik meg."
|
720 |
+
|
721 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:556
|
722 |
+
msgid ""
|
723 |
+
"You are using an outdated version of WP Live Chat Support Basic. Please "
|
724 |
+
"update your plugin to allow for animations to function"
|
725 |
+
msgstr ""
|
726 |
+
"A Live Chat Support Basic elavult változatát használja. Kérem frissítse a "
|
727 |
+
"bővítményt a megfelelő működéshez."
|
728 |
+
|
729 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:561
|
730 |
+
msgid "Choose an animation"
|
731 |
+
msgstr "Válasszon animációt."
|
732 |
+
|
733 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:567
|
734 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:442
|
735 |
+
msgid "Slide Up"
|
736 |
+
msgstr "Felfele csúsztatás"
|
737 |
+
|
738 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:571
|
739 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:446
|
740 |
+
msgid "Slide From The Side"
|
741 |
+
msgstr "Oldalról csúsztatás"
|
742 |
+
|
743 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:575
|
744 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:450
|
745 |
+
msgid "Fade In"
|
746 |
+
msgstr "Előugrás"
|
747 |
+
|
748 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:579
|
749 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:454
|
750 |
+
msgid "No Animation"
|
751 |
+
msgstr "Nincs animáció"
|
752 |
+
|
753 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:592
|
754 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:462
|
755 |
+
msgid "Save Settings"
|
756 |
+
msgstr "Beállítások mentése"
|
757 |
+
|
758 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:457
|
759 |
+
msgid "Dear User"
|
760 |
+
msgstr "Kedves Felhasználó!"
|
761 |
+
|
762 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:458
|
763 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
764 |
+
msgstr "A WP Live Chat Support Basic elavult változatát használja."
|
765 |
+
|
766 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:458
|
767 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:801
|
768 |
+
msgid "update to at least version"
|
769 |
+
msgstr "Utolsó verzióra való frissítés"
|
770 |
+
|
771 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:458
|
772 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:801
|
773 |
+
msgid "to ensure all functionality is in working order"
|
774 |
+
msgstr "az összes funkcionalitás megfelelő működésének biztosítása "
|
775 |
+
|
776 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:459
|
777 |
+
msgid ""
|
778 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
779 |
+
"basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
780 |
+
"user experience for both yourself and your visitors."
|
781 |
+
msgstr ""
|
782 |
+
"A párbeszéd ablak átmenetileg nem elérhető a weboldalán amíg nem frissíti a "
|
783 |
+
"bővítményt. Ez biztosítja a zavartalan beszélgetést a látogatóival."
|
784 |
+
|
785 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:460
|
786 |
+
msgid ""
|
787 |
+
"You can update your plugin <a href='./update-core.php'>here</a> or <a "
|
788 |
+
"href='./plugins.php'>here</a>."
|
789 |
+
msgstr ""
|
790 |
+
"Frissítheti a bővítményeit: <a href='./update-core.php'>itt</a> vagy <a "
|
791 |
+
"href='./plugins.php'>itt</a>."
|
792 |
+
|
793 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:461
|
794 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:804
|
795 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:822
|
796 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
797 |
+
msgstr "Amennyiben nehézsége van a bővítmény frissítésével, kérem jelezze."
|
798 |
+
|
799 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:474
|
800 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:800
|
801 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:813
|
802 |
+
msgid "Dear Pro User"
|
803 |
+
msgstr "Kedves profi felhasználó!"
|
804 |
+
|
805 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:475
|
806 |
+
msgid ""
|
807 |
+
"WP Live Chat Support Pro requires WP Live Chat Support to function. You can "
|
808 |
+
"download the latest copy from"
|
809 |
+
msgstr ""
|
810 |
+
"Amennyiben a WP Live Chat Support Pro verzióját igényli, töltse le az utolsó "
|
811 |
+
"változatot a következő oldalról:"
|
812 |
+
|
813 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:487
|
814 |
+
msgid "Admin"
|
815 |
+
msgstr "Admin"
|
816 |
+
|
817 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:491
|
818 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:373
|
819 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:437
|
820 |
+
msgid "Questions?"
|
821 |
+
msgstr "Kérdések?"
|
822 |
+
|
823 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:492
|
824 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:374
|
825 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:437
|
826 |
+
msgid "Chat with us"
|
827 |
+
msgstr "Kérdezzen tőlünk"
|
828 |
+
|
829 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:493
|
830 |
+
msgid "Start live chat"
|
831 |
+
msgstr "Élő párbeszéd kezdése"
|
832 |
+
|
833 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:494
|
834 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
|
835 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:510
|
836 |
+
msgid "Start Chat"
|
837 |
+
msgstr "Párbeszéd kezdeményezése"
|
838 |
+
|
839 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:495
|
840 |
+
msgid "Connecting. Please be patient..."
|
841 |
+
msgstr "Csatlakozás: Kérjük szíves türelmét.."
|
842 |
+
|
843 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:496
|
844 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:389
|
845 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:520
|
846 |
+
msgid "Reactivating your previous chat..."
|
847 |
+
msgstr "Előző beszélgetés aktiválása"
|
848 |
+
|
849 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:497
|
850 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:314
|
851 |
+
msgid "Chat offline. Leave a message"
|
852 |
+
msgstr "A párbeszéd nem elérhető, hagyjon üzenetet."
|
853 |
+
|
854 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:498
|
855 |
+
msgid "Hello. Please input your details so that I may help you."
|
856 |
+
msgstr "Hello! Kérem adja meg az adataid, hogy segíthessek."
|
857 |
+
|
858 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:499
|
859 |
+
msgid ""
|
860 |
+
"We are currently offline. Please leave a message and we'll get back to you "
|
861 |
+
"shortly."
|
862 |
+
msgstr ""
|
863 |
+
"Jelenleg nem vagyunk elérhetőek. Kérem hagyjon üzenetet és hamarosan "
|
864 |
+
"válaszolunk."
|
865 |
+
|
866 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:500
|
867 |
+
msgid "Sending message..."
|
868 |
+
msgstr "Üzenet küldése..."
|
869 |
+
|
870 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:501
|
871 |
+
msgid "Thank you for your message. We will be in contact soon."
|
872 |
+
msgstr "Köszönjük a megkeresését! Hamarosan felvesszük Önnel a kapcsolatot."
|
873 |
+
|
874 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:502
|
875 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:525
|
876 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:981
|
877 |
+
msgid "Press ENTER to send your message"
|
878 |
+
msgstr "Nyomja meg az ENTER-t az üzenet elküldéséhez."
|
879 |
+
|
880 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:503
|
881 |
+
msgid "Welcome. How may I help you?"
|
882 |
+
msgstr "Üdvözlöm! Miben segíthetek?"
|
883 |
+
|
884 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
|
885 |
+
msgid "You are currently accepting chats"
|
886 |
+
msgstr "Jelenleg fogadhat üzenetet."
|
887 |
+
|
888 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:544
|
889 |
+
msgid "You are not accepting chats"
|
890 |
+
msgstr "Jelenleg nem fogadhat üzenetet"
|
891 |
+
|
892 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:601
|
893 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:888
|
894 |
+
msgid "URL"
|
895 |
+
msgstr "URL"
|
896 |
+
|
897 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:602
|
898 |
+
msgid "Status"
|
899 |
+
msgstr "Státusz"
|
900 |
+
|
901 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:603
|
902 |
+
msgid "Action"
|
903 |
+
msgstr "Action"
|
904 |
+
|
905 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:609
|
906 |
+
msgid "No chats available at the moment"
|
907 |
+
msgstr "Pillanatnyilag nincs elérhető párbeszéd"
|
908 |
+
|
909 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:770
|
910 |
+
msgid "Minize Chat Window"
|
911 |
+
msgstr "Párbeszéd ablak kicsinyítés"
|
912 |
+
|
913 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:771
|
914 |
+
msgid "Close Chat Window"
|
915 |
+
msgstr "Párbeszéd ablak bezárása"
|
916 |
+
|
917 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:862
|
918 |
+
msgid "Send message"
|
919 |
+
msgstr "Üzenet küldés"
|
920 |
+
|
921 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:890
|
922 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:529
|
923 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:995
|
924 |
+
msgid "Send"
|
925 |
+
msgstr "Küldés"
|
926 |
+
|
927 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:930
|
928 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1421
|
929 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
930 |
+
msgstr ""
|
931 |
+
"Kérem klikkeljen a 'Beszélgetés kezdeményezése'-re, hogy az ügyintézőtől "
|
932 |
+
"kérdezhessen."
|
933 |
+
|
934 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1047
|
935 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1445
|
936 |
+
msgid "Your settings have been saved."
|
937 |
+
msgstr "A beállításaid mentve"
|
938 |
+
|
939 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1062
|
940 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:854
|
941 |
+
msgid "Chat sessions"
|
942 |
+
msgstr "Csevegés"
|
943 |
+
|
944 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1064
|
945 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:856
|
946 |
+
msgid ""
|
947 |
+
"Please note: This window must be open in order to receive new chat "
|
948 |
+
"notifications."
|
949 |
+
msgstr ""
|
950 |
+
"Figyelem: Ennek az ablaknak nyitva kell lennie, hogy megkapja az üzenet "
|
951 |
+
"értesítést."
|
952 |
+
|
953 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1158
|
954 |
+
msgid "Unknown"
|
955 |
+
msgstr "Ismeretlen"
|
956 |
+
|
957 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1174
|
958 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:948
|
959 |
+
msgid "End chat"
|
960 |
+
msgstr "Beszélgetés vége"
|
961 |
+
|
962 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1179
|
963 |
+
msgid "Attempting to open the chat window... Please be patient."
|
964 |
+
msgstr "Párbeszéd kezdeményezése folyamatban.... Kérjük szíves türelmét."
|
965 |
+
|
966 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1276
|
967 |
+
msgid "This chat has already been answered. Please close the chat window"
|
968 |
+
msgstr "Ez a beszélgetés már meg lett válaszolva. Kérem zárja be az ablakot."
|
969 |
+
|
970 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1344
|
971 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1107
|
972 |
+
msgid "User has opened the chat window"
|
973 |
+
msgstr "A felhasználó megnyitotta a párbeszéd ablakot."
|
974 |
+
|
975 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1349
|
976 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1112
|
977 |
+
msgid "User has minimized the chat window"
|
978 |
+
msgstr "A felhasználó kicsinyítette a párbeszéd ablakot."
|
979 |
+
|
980 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1354
|
981 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1117
|
982 |
+
msgid "User has maximized the chat window"
|
983 |
+
msgstr "A felhasználó menyitotta a párbeszéd ablakot."
|
984 |
+
|
985 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1359
|
986 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1122
|
987 |
+
msgid "User has closed and ended the chat"
|
988 |
+
msgstr "A felhasználó bezárta és befejezte a bezélgetést"
|
989 |
+
|
990 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1737
|
991 |
+
msgid ""
|
992 |
+
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
993 |
+
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
994 |
+
msgstr ""
|
995 |
+
"Váratlan HTTP hiba történt az API lekérésekor.</p> <p><a href=\"?\" onclick="
|
996 |
+
"\"document.location.reload(); return false;\"> Próbálja újra </a>"
|
997 |
+
|
998 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1742
|
999 |
+
msgid "An unknown error occurred"
|
1000 |
+
msgstr "Ismeretlen hiba történt"
|
1001 |
+
|
1002 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1869
|
1003 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:248
|
1004 |
+
msgid "Live Chat"
|
1005 |
+
msgstr "Élő beszélgetés"
|
1006 |
+
|
1007 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1870
|
1008 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:249
|
1009 |
+
msgid "Settings"
|
1010 |
+
msgstr "Beállítások"
|
1011 |
+
|
1012 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1871
|
1013 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1886
|
1014 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1897
|
1015 |
+
msgid "Quick Responses"
|
1016 |
+
msgstr "Gyors válaszok"
|
1017 |
+
|
1018 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1873
|
1019 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:250
|
1020 |
+
msgid "History"
|
1021 |
+
msgstr "Előzmények"
|
1022 |
+
|
1023 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1874
|
1024 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:251
|
1025 |
+
msgid "Missed Chats"
|
1026 |
+
msgstr "Elmulasztott beszélgetés"
|
1027 |
+
|
1028 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1876
|
1029 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1030 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:252
|
1031 |
+
msgid "Feedback"
|
1032 |
+
msgstr "Visszacsatolás"
|
1033 |
+
|
1034 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1880
|
1035 |
+
msgid "Error Log"
|
1036 |
+
msgstr "Hibás log"
|
1037 |
+
|
1038 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1887
|
1039 |
+
msgid "Quick Response"
|
1040 |
+
msgstr "Gyors válaszok"
|
1041 |
+
|
1042 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1888
|
1043 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1891
|
1044 |
+
msgid "New Quick Response"
|
1045 |
+
msgstr "Új gyors válasz"
|
1046 |
+
|
1047 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1889
|
1048 |
+
msgid "Add New Quick Response"
|
1049 |
+
msgstr "Új gyors válasz hozzáadás "
|
1050 |
+
|
1051 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1890
|
1052 |
+
msgid "Edit Quick Response"
|
1053 |
+
msgstr "Gyors válasz szerkesztése"
|
1054 |
+
|
1055 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1892
|
1056 |
+
msgid "All Quick Responses"
|
1057 |
+
msgstr "Összes gyors válasz"
|
1058 |
+
|
1059 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1893
|
1060 |
+
msgid "View Quick Responses"
|
1061 |
+
msgstr "Gyors válaszok megtekintése"
|
1062 |
+
|
1063 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1894
|
1064 |
+
msgid "Search Quick Responses"
|
1065 |
+
msgstr "Gyors válasz keresés"
|
1066 |
+
|
1067 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1895
|
1068 |
+
msgid "No Quick Responses found"
|
1069 |
+
msgstr "Nincs találat"
|
1070 |
+
|
1071 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1896
|
1072 |
+
msgid "No Quick Responses found in the Trash"
|
1073 |
+
msgstr "Nincs találat a törölt elemek között"
|
1074 |
+
|
1075 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1901
|
1076 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
1077 |
+
msgstr "Gyors válasz a WP Live Chat Support Pro"
|
1078 |
+
|
1079 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1956
|
1080 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1960
|
1081 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
1082 |
+
msgid "Assign Quick Response"
|
1083 |
+
msgstr "Gyors válasz kijelölése"
|
1084 |
+
|
1085 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1963
|
1086 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
1087 |
+
msgid "Select"
|
1088 |
+
msgstr "Választ"
|
1089 |
+
|
1090 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1969
|
1091 |
+
msgid "What is this?"
|
1092 |
+
msgstr "Mi ez?"
|
1093 |
+
|
1094 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:566
|
1095 |
+
msgid "complete"
|
1096 |
+
msgstr "kitöltés"
|
1097 |
+
|
1098 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:569
|
1099 |
+
msgid "pending"
|
1100 |
+
msgstr "függőben"
|
1101 |
+
|
1102 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:572
|
1103 |
+
msgid "active"
|
1104 |
+
msgstr "aktív"
|
1105 |
+
|
1106 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:575
|
1107 |
+
msgid "deleted"
|
1108 |
+
msgstr "törölt"
|
1109 |
+
|
1110 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:578
|
1111 |
+
msgid "browsing"
|
1112 |
+
msgstr "böngészés"
|
1113 |
+
|
1114 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:581
|
1115 |
+
msgid "requesting chat"
|
1116 |
+
msgstr "Beszélgetés felkérés"
|
1117 |
+
|
1118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:584
|
1119 |
+
msgid "Chat Ended - User still browsing"
|
1120 |
+
msgstr "A beszélgetés befejeződött - A felhasználó még nézelődik"
|
1121 |
+
|
1122 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:587
|
1123 |
+
msgid "User is browsing but doesn't want to chat"
|
1124 |
+
msgstr "A felhasználó nézelődik, de nem akar beszélgetést kezdeményezni."
|
1125 |
+
|
1126 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:671
|
1127 |
+
msgid "Get Pro Add-on to accept more chats"
|
1128 |
+
msgstr "Pro-Add beszerzése a több párbeszédhez"
|
1129 |
+
|
1130 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:915
|
1131 |
+
msgid "You have not missed any chat requests."
|
1132 |
+
msgstr "Nincs elmulasztott beszélgetés"
|
1133 |
+
|
1134 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1135 |
+
msgid "WP Live Chat Support Feedback"
|
1136 |
+
msgstr "WP Live Chat Support visszacsatolás"
|
1137 |
+
|
1138 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
1139 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
1140 |
+
msgstr "Szeretnénk hallani a megjegyzését és/vagy a javaslatát"
|
1141 |
+
|
1142 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
1143 |
+
msgid "Your Name"
|
1144 |
+
msgstr "Neve"
|
1145 |
+
|
1146 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
1147 |
+
msgid "Your Email"
|
1148 |
+
msgstr "Email címe"
|
1149 |
+
|
1150 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1151 |
+
msgid "Your Website"
|
1152 |
+
msgstr "Weboldala"
|
1153 |
+
|
1154 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1155 |
+
msgid "Send Feedback"
|
1156 |
+
msgstr "visszacsatolás küldése"
|
1157 |
+
|
1158 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:23
|
1159 |
+
msgid "Agents"
|
1160 |
+
msgstr "Operátor"
|
1161 |
+
|
1162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:46
|
1163 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:62
|
1164 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:124
|
1165 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:140
|
1166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:183
|
1167 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:199
|
1168 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:215
|
1169 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:231
|
1170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:248
|
1171 |
+
msgid "available in the"
|
1172 |
+
msgstr "elérhető a"
|
1173 |
+
|
1174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:47
|
1175 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:63
|
1176 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:125
|
1177 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:141
|
1178 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:184
|
1179 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:200
|
1180 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:216
|
1181 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:232
|
1182 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:249
|
1183 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:303
|
1184 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:317
|
1185 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:393
|
1186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1360
|
1187 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1380
|
1188 |
+
msgid "Pro Add-on"
|
1189 |
+
msgstr "Pro hozzáadás"
|
1190 |
+
|
1191 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:48
|
1192 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:64
|
1193 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:126
|
1194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:142
|
1195 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:185
|
1196 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:201
|
1197 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:217
|
1198 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:233
|
1199 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:250
|
1200 |
+
msgid "only"
|
1201 |
+
msgstr "csak"
|
1202 |
+
|
1203 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:65
|
1204 |
+
msgid " once off. Updates included forever."
|
1205 |
+
msgstr "Egyszeri frissítés örökre."
|
1206 |
+
|
1207 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:302
|
1208 |
+
msgid "Get offline messages with the "
|
1209 |
+
msgstr "Offline üzenetek megkapása a "
|
1210 |
+
|
1211 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:311
|
1212 |
+
msgid "Offline text"
|
1213 |
+
msgstr "Offline szöveg"
|
1214 |
+
|
1215 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:316
|
1216 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:392
|
1217 |
+
msgid "Edit these text fields using the "
|
1218 |
+
msgstr "Mezők szerkesztése a "
|
1219 |
+
|
1220 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
|
1221 |
+
msgid "Choose a colour scheme. Only available in the"
|
1222 |
+
msgstr "Válasszon egy színsémát. Csak az elérhetőek közül"
|
1223 |
+
|
1224 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
|
1225 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:433
|
1226 |
+
msgid "Pro add-on"
|
1227 |
+
msgstr "Csak Pro verziónál"
|
1228 |
+
|
1229 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:346
|
1230 |
+
msgid "Colour Scheme 1"
|
1231 |
+
msgstr "Színséma 1"
|
1232 |
+
|
1233 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:347
|
1234 |
+
msgid "Colour Scheme 2"
|
1235 |
+
msgstr "Színséma 2"
|
1236 |
+
|
1237 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:348
|
1238 |
+
msgid "Colour Scheme 3"
|
1239 |
+
msgstr "Színséma 3"
|
1240 |
+
|
1241 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
|
1242 |
+
msgid "Colour Scheme 4"
|
1243 |
+
msgstr "Színséma 4"
|
1244 |
+
|
1245 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:350
|
1246 |
+
msgid "Colour Scheme 5"
|
1247 |
+
msgstr "Színséma 5"
|
1248 |
+
|
1249 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:351
|
1250 |
+
msgid "Colour Scheme 6"
|
1251 |
+
msgstr "Színséma 6"
|
1252 |
+
|
1253 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:371
|
1254 |
+
msgid "First section text"
|
1255 |
+
msgstr "Első szövegrész"
|
1256 |
+
|
1257 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1258 |
+
msgid "Second section text"
|
1259 |
+
msgstr "Második szövegrész"
|
1260 |
+
|
1261 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:381
|
1262 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:517
|
1263 |
+
msgid "Connecting you to a sales person. Please be patient."
|
1264 |
+
msgstr "Értékesítő kapcsolása. Kérjük szíves türelmét."
|
1265 |
+
|
1266 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:387
|
1267 |
+
msgid "Reactivate chat section text"
|
1268 |
+
msgstr "Szövegrész aktiválása"
|
1269 |
+
|
1270 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:404
|
1271 |
+
msgid "Multiple Agents"
|
1272 |
+
msgstr "Több operátor"
|
1273 |
+
|
1274 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:405
|
1275 |
+
msgid "Get"
|
1276 |
+
msgstr "Beszerzés"
|
1277 |
+
|
1278 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:405
|
1279 |
+
msgid "Multiple agent support"
|
1280 |
+
msgstr "Több operátor támogatás"
|
1281 |
+
|
1282 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:433
|
1283 |
+
msgid "Get a variety of animations in the "
|
1284 |
+
msgstr "Különböző variációk beszerzése"
|
1285 |
+
|
1286 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:436
|
1287 |
+
msgid "Choose an animation (Pro Only)"
|
1288 |
+
msgstr "Animációk kiválasztása (Csak Pro felhasználók)"
|
1289 |
+
|
1290 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1291 |
+
msgid "Welcome to "
|
1292 |
+
msgstr "Üdvözöljük a"
|
1293 |
+
|
1294 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1295 |
+
msgid "Version 4"
|
1296 |
+
msgstr "Verziószám: 4"
|
1297 |
+
|
1298 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1299 |
+
msgid "Provide Instant Live Chat Support!"
|
1300 |
+
msgstr "Provide Instant Live Chat Support!"
|
1301 |
+
|
1302 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1303 |
+
msgid "How did you find us?"
|
1304 |
+
msgstr "Hogy talált meg minket?"
|
1305 |
+
|
1306 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1307 |
+
msgid "WordPress.org plugin repository "
|
1308 |
+
msgstr "WordPress.org plugin repository "
|
1309 |
+
|
1310 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
1311 |
+
msgid "Search Term"
|
1312 |
+
msgstr "Keresőmező"
|
1313 |
+
|
1314 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
1315 |
+
msgid "Google or other search Engine"
|
1316 |
+
msgstr "Google vagy más kereső(motor)"
|
1317 |
+
|
1318 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1319 |
+
msgid "Friend recommendation"
|
1320 |
+
msgstr "Ajánlás a barátoknak"
|
1321 |
+
|
1322 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1323 |
+
msgid "Other"
|
1324 |
+
msgstr "Egyéb"
|
1325 |
+
|
1326 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
1327 |
+
msgid "Please Explain"
|
1328 |
+
msgstr "Kérem magyarázza meg"
|
1329 |
+
|
1330 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
1331 |
+
msgid "Submit"
|
1332 |
+
msgstr "Submit"
|
1333 |
+
|
1334 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1335 |
+
msgid "Skip"
|
1336 |
+
msgstr "Ugrás"
|
1337 |
+
|
1338 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:217
|
1339 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1253
|
1340 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1341 |
+
msgstr ""
|
1342 |
+
"Kérem klikkeljen a ' Beszélgetés kezdeményezése' gombra, hogy párbeszédet "
|
1343 |
+
"folytathasson egy operátorral."
|
1344 |
+
|
1345 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:447
|
1346 |
+
msgid "Start Live Chat"
|
1347 |
+
msgstr "Élő csevegés"
|
1348 |
+
|
1349 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:801
|
1350 |
+
msgid ""
|
1351 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1352 |
+
"strong>. Please"
|
1353 |
+
msgstr ""
|
1354 |
+
"Elavult verzióját használja a <strong>WP Live Chat Support Pro</strong>. "
|
1355 |
+
"Kérem frissítse."
|
1356 |
+
|
1357 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:802
|
1358 |
+
msgid ""
|
1359 |
+
"You're live chat box on your website has been temporarily disabled until the "
|
1360 |
+
"Pro plugin has been updated. This is to ensure a smooth and hassle-free user "
|
1361 |
+
"experience for both yourself and your visitors."
|
1362 |
+
msgstr ""
|
1363 |
+
"A párbeszéd ablak átmentelig nem elérhető a weboldalán, amíg nem frissíti a "
|
1364 |
+
"bővítményt. Ez biztosítja a zavartalan beszélgetést látogatóival."
|
1365 |
+
|
1366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:803
|
1367 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:821
|
1368 |
+
msgid ""
|
1369 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./"
|
1370 |
+
"plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1371 |
+
"version/' target='_BLANK'>here</a>."
|
1372 |
+
msgstr ""
|
1373 |
+
"Frissítheti a bővítményt: <a href='./update-core.php'>itt</a>, <a href='./"
|
1374 |
+
"plugins.php'>itt</a> vagy <a href='http://wp-livechat.com/get-updated-"
|
1375 |
+
"version/' target='_BLANK'>itt</a>."
|
1376 |
+
|
1377 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:814
|
1378 |
+
msgid ""
|
1379 |
+
"You are using an outdated version of <strong>WP Live Chat Support Pro</"
|
1380 |
+
"strong>."
|
1381 |
+
msgstr ""
|
1382 |
+
"Elavult verzióját használja a <strong>WP Live Chat Support Pro</strong> - "
|
1383 |
+
"nak."
|
1384 |
+
|
1385 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:816
|
1386 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1387 |
+
msgstr "Kérem frissítse a WP Live Chat Support Pro-t a legutolsó verzióra."
|
1388 |
+
|
1389 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:817
|
1390 |
+
msgid "Version 4.4.5"
|
1391 |
+
msgstr "Verzió 4.4.5"
|
1392 |
+
|
1393 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:818
|
1394 |
+
msgid "to take advantage of chat window transitions and colour schemes."
|
1395 |
+
msgstr "hogy kihasználja a párbeszéd ablak átmeneteit és színsémáit"
|
1396 |
+
|
1397 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:845
|
1398 |
+
msgid "Experiencing problems with the plugin?"
|
1399 |
+
msgstr "Problémái adódtak a bővítménnyel?"
|
1400 |
+
|
1401 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:847
|
1402 |
+
msgid "Review the documentation."
|
1403 |
+
msgstr "Dokumentáció megtekintése"
|
1404 |
+
|
1405 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:848
|
1406 |
+
msgid "Or ask a question on our"
|
1407 |
+
msgstr "Vagy kérdezzen a mi..."
|
1408 |
+
|
1409 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:848
|
1410 |
+
msgid "Support forum."
|
1411 |
+
msgstr "Támogatás"
|
1412 |
+
|
1413 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:876
|
1414 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1415 |
+
msgstr "A WP Live Chat Support Pro verzióval tud"
|
1416 |
+
|
1417 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:877
|
1418 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:878
|
1419 |
+
msgid "see who's online and initiate chats"
|
1420 |
+
msgstr "nézze meg ki van online és ki kezdeményezett beszélgetést"
|
1421 |
+
|
1422 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:879
|
1423 |
+
msgid "with your online visitors with the click of a button."
|
1424 |
+
msgstr "az online látogatókhoz kattintson a gombra"
|
1425 |
+
|
1426 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:880
|
1427 |
+
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates FOREVER."
|
1428 |
+
msgstr ""
|
1429 |
+
"VásárolJa meg a Pro verziót most csak: 19.95$. Ingyenes frissítés örökre."
|
1430 |
+
|
1431 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:882
|
1432 |
+
msgid "Buy the Pro add-on now for only $19.95 once off. Free Updates Forever."
|
1433 |
+
msgstr ""
|
1434 |
+
"Vásárolja meg a Pro verziót most csak: 19.95$. Ingyenes frissítés örökre."
|
1435 |
+
|
1436 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:934
|
1437 |
+
msgid "Previous"
|
1438 |
+
msgstr "előző"
|
1439 |
+
|
1440 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:936
|
1441 |
+
msgid "Active"
|
1442 |
+
msgstr "Aktív"
|
1443 |
+
|
1444 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:945
|
1445 |
+
msgid "Chat with"
|
1446 |
+
msgstr "Csevegés a következővel"
|
1447 |
+
|
1448 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
1449 |
+
msgid "Add Quick Responses to your Live Chat"
|
1450 |
+
msgstr "Gyors válaszok hozzáadása az élő beszélgetéshez"
|
1451 |
+
|
1452 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:982
|
1453 |
+
msgid "Pro version only"
|
1454 |
+
msgstr "Csak Pro verziónál"
|
1455 |
+
|
1456 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:993
|
1457 |
+
msgid "type here..."
|
1458 |
+
msgstr "ide írjon"
|
1459 |
+
|
1460 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1356
|
1461 |
+
msgid "WP Live Chat History"
|
1462 |
+
msgstr "WP Live Chat előzmény"
|
1463 |
+
|
1464 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1360
|
1465 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1380
|
1466 |
+
msgid "This option is only available in the "
|
1467 |
+
msgstr "Ez az opció csak a ... elérhető"
|
1468 |
+
|
1469 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1360
|
1470 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1380
|
1471 |
+
msgid "Get it now for only $19.95 once off!"
|
1472 |
+
msgstr "Vegye meg most $19.95 egyszeri díj ellenében"
|
1473 |
+
|
1474 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1365
|
1475 |
+
msgid "WP Live Chat Missed Chats"
|
1476 |
+
msgstr "WP Live Chat elmulasztott beszélgetések"
|
1477 |
+
|
1478 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1372
|
1479 |
+
msgid "WP Live Chat Offline Messages"
|
1480 |
+
msgstr "WP Live Chat offline üzenetek"
|
1481 |
+
|
1482 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1377
|
1483 |
+
msgid ""
|
1484 |
+
"Please update to the latest version of WP Live Chat Support Pro to start "
|
1485 |
+
"recording any offline messages."
|
1486 |
+
msgstr ""
|
1487 |
+
"Töltse le a legújabb WP Live Chat Support Pro verziót, hogy mentve legyenek "
|
1488 |
+
"az üzenetei"
|
1489 |
+
|
1490 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1460
|
1491 |
+
msgid "Thank You for your feedback!"
|
1492 |
+
msgstr "Köszönjük a visszajelzést."
|
1493 |
+
|
1494 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1464
|
1495 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1477
|
1496 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1497 |
+
msgstr "Köszönjük a visszajelzést. Hamarosan jelentkezünk"
|
1498 |
+
|
1499 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1480
|
1500 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1501 |
+
msgstr ""
|
1502 |
+
"Probléma merült fel a visszajelzésnél. Kérem kapcsolja be a visszajelzést."
|
1503 |
+
|
1504 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1513
|
1505 |
+
msgid ""
|
1506 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience "
|
1507 |
+
"issues while using WP Live Chat Support as a result of this. Please get in "
|
1508 |
+
"contact your host to get this function enabled."
|
1509 |
+
msgstr ""
|
1510 |
+
"WPLC: időkorlát beállítása nincs engedélyezve a szerveren. Ha problémái "
|
1511 |
+
"merültek fel a WP Live Chat Support használata közben, kérem vegye fel a "
|
1512 |
+
"kapcsolatot a rendszer üzemeltetőjével, hogy engedélyezze ezt a funkciót."
|
1513 |
+
|
1514 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1519
|
1515 |
+
msgid ""
|
1516 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while "
|
1517 |
+
"using WP Live Chat Support as a result of this. Please contact your host to "
|
1518 |
+
"get safe mode disabled."
|
1519 |
+
msgstr ""
|
1520 |
+
"WPLC: a biztonságos mód be van kapcsolva a szerveren. Ha problémái merültek "
|
1521 |
+
"fel a WP Live Chat Support használata közben, kérem vegye fel a kapcsolatot "
|
1522 |
+
"a rendszer üzemeltetőjével."
|
languages/wplivechat-tr-TR.mo
ADDED
Binary file
|
languages/wplivechat-tr-TR.po
ADDED
@@ -0,0 +1,1731 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wplivechat\n"
|
4 |
+
"POT-Creation-Date: 2015-07-03 15:08+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-07-07 03:17+0300\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: en\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.2\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-support\n"
|
16 |
+
"X-Poedit-SearchPath-1: C:/wamp/www/wordpress/wp-content/plugins/wp-live-chat-support-pro\n"
|
17 |
+
|
18 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:280
|
19 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:230
|
20 |
+
msgid "Admin has closed and ended the chat"
|
21 |
+
msgstr "Yönetici sohbeti sonlandırdı ve kapattı"
|
22 |
+
|
23 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/ajax-pro.php:315
|
24 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/ajax.php:254
|
25 |
+
msgid "There is No Answer. Please Try Again Later"
|
26 |
+
msgstr "Yanıt Alınamadı. Lütfen Daha Sonra Tekrar Deneyiniz"
|
27 |
+
|
28 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:26
|
29 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:945
|
30 |
+
msgid "Visitors on site"
|
31 |
+
msgstr "Sitedeki ziyaretçiler"
|
32 |
+
|
33 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:43
|
34 |
+
msgid "Initiate Chat"
|
35 |
+
msgstr "Sohbet Başlat"
|
36 |
+
|
37 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:45
|
38 |
+
msgid "You must be a chat agent to initiate chats"
|
39 |
+
msgstr "Sohbet başlatmak için sohbet temsilcisi olmalısınız"
|
40 |
+
|
41 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:56
|
42 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:208
|
43 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1284
|
44 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:205
|
45 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1011
|
46 |
+
msgid "IP Address not recorded"
|
47 |
+
msgstr "IP Adresi kayıt edilmedi"
|
48 |
+
|
49 |
+
# PLEASE CHECK NUMBER 1 LİNE ON THE DOCUMENT I SENT YOU
|
50 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:58
|
51 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:210
|
52 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1286
|
53 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:207
|
54 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1013
|
55 |
+
msgid "Whois for"
|
56 |
+
msgstr "Whois bilgi"
|
57 |
+
|
58 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:90
|
59 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:260
|
60 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1323
|
61 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:241
|
62 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1035
|
63 |
+
msgid "Site Info"
|
64 |
+
msgstr "Site Bilgisi"
|
65 |
+
|
66 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:92
|
67 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:262
|
68 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1325
|
69 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:243
|
70 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1037
|
71 |
+
msgid "Chat initiated on:"
|
72 |
+
msgstr "Sohbet başlatma:"
|
73 |
+
|
74 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:96
|
75 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:266
|
76 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1329
|
77 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:247
|
78 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1041
|
79 |
+
msgid "Advanced Info"
|
80 |
+
msgstr "Gelişmiş Bilgi"
|
81 |
+
|
82 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:98
|
83 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:268
|
84 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1331
|
85 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:249
|
86 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1043
|
87 |
+
msgid "Browser:"
|
88 |
+
msgstr "Tarayıcı:"
|
89 |
+
|
90 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:99
|
91 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:269
|
92 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1332
|
93 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:250
|
94 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1044
|
95 |
+
msgid "IP Address:"
|
96 |
+
msgstr "IP Adresi:"
|
97 |
+
|
98 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:142
|
99 |
+
msgid "No visitors on-line at the moment"
|
100 |
+
msgstr "Şu an çevrimiçi ziyaretçi bulunmamaktadır."
|
101 |
+
|
102 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:185
|
103 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:188
|
104 |
+
msgid "No chat sessions available at the moment"
|
105 |
+
msgstr "Şu an için sohbet oturumu bulunmamaktadır."
|
106 |
+
|
107 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:187
|
108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:190
|
109 |
+
msgid "Active Chats"
|
110 |
+
msgstr "Aktif Sohbetler"
|
111 |
+
|
112 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:216
|
113 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:212
|
114 |
+
msgid "Accept Chat"
|
115 |
+
msgstr "Sohbeti Kabul Et"
|
116 |
+
|
117 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:218
|
118 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
119 |
+
msgid "Incoming Chat"
|
120 |
+
msgstr "Yeni Sohbet"
|
121 |
+
|
122 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:218
|
123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:214
|
124 |
+
msgid "You have an incoming chat."
|
125 |
+
msgstr "Yeni bir sohbetiniz var."
|
126 |
+
|
127 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:222
|
128 |
+
msgid "You must be a chat agent to answer chats"
|
129 |
+
msgstr "Sohbeti yanıtlamak için sohbet temsilcisi olmalısınız"
|
130 |
+
|
131 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:228
|
132 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:218
|
133 |
+
msgid "Open Chat Window"
|
134 |
+
msgstr "Sohbet Penceresini Aç"
|
135 |
+
|
136 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
|
137 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
138 |
+
msgid "Chat Active"
|
139 |
+
msgstr "Sohbet Aktif"
|
140 |
+
|
141 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:230
|
142 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:220
|
143 |
+
msgid "This chat is active"
|
144 |
+
msgstr "Bu sohbet aktiftir"
|
145 |
+
|
146 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:232
|
147 |
+
msgid "Chat has been answered by another agent"
|
148 |
+
msgstr "Sohbet başka temsilci tarafından yanıtlandı"
|
149 |
+
|
150 |
+
# PLEASE CHECK READ ME FILE LINE 2
|
151 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:233
|
152 |
+
msgid "Chat answered by another agent"
|
153 |
+
msgstr "Sohbet başka temsilci tarafından yanıtlandı"
|
154 |
+
|
155 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:291
|
156 |
+
msgid "WP Live Chat Support - Offline Message from "
|
157 |
+
msgstr "WP Canlı Sohbet Desteği - Çevrimdışı Mesaj"
|
158 |
+
|
159 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:292
|
160 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:739
|
161 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:650
|
162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:858
|
163 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:896
|
164 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:897
|
165 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:171
|
166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:534
|
167 |
+
msgid "Name"
|
168 |
+
msgstr "İsim"
|
169 |
+
|
170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:292
|
171 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:740
|
172 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:651
|
173 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:859
|
174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:897
|
175 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:898
|
176 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:535
|
177 |
+
msgid "Email"
|
178 |
+
msgstr "Eposta"
|
179 |
+
|
180 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:292
|
181 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:741
|
182 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:898
|
183 |
+
msgid "Message"
|
184 |
+
msgstr "Mesaj"
|
185 |
+
|
186 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:292
|
187 |
+
msgid "Via WP Live Chat Support"
|
188 |
+
msgstr "WP Canlı Sohbet Destek Aracılığıyla"
|
189 |
+
|
190 |
+
# For that kind of half sentences such as:
|
191 |
+
# Offline Message from ...
|
192 |
+
# chat with you on ...
|
193 |
+
# You can always ask my opinion for the Turkish reference when you decide.
|
194 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:344
|
195 |
+
msgid "Alert: Someone wants to chat with you on "
|
196 |
+
msgstr "Uyarı: Birisi sizinle sohbet etmek istiyor"
|
197 |
+
|
198 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
199 |
+
msgid "Someone wants to chat with you on your website"
|
200 |
+
msgstr "Websitenizde biri sizinle sohbet etmek istiyor"
|
201 |
+
|
202 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:345
|
203 |
+
msgid "Log in"
|
204 |
+
msgstr "Giriş yap"
|
205 |
+
|
206 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:518
|
207 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:534
|
208 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:549
|
209 |
+
msgid "Chat Agent"
|
210 |
+
msgstr "Sohbet Temsilcisi"
|
211 |
+
|
212 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:523
|
213 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:539
|
214 |
+
msgid "Make this user a chat agent"
|
215 |
+
msgstr "Bu kullanıcıyı sohbet temsilcisi yap"
|
216 |
+
|
217 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:553
|
218 |
+
msgid "Your user role does not allow you to make yourself a chat agent."
|
219 |
+
msgstr "Kullanıcı durumunuz kendinizi sohbet temsilcisi olarak tanımlamanıza izin vermiyor."
|
220 |
+
|
221 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:554
|
222 |
+
msgid "Please contact the administrator of this website to change this."
|
223 |
+
msgstr "Bu bölümü değiştirmek için lütfen site yöneticisine danışınız."
|
224 |
+
|
225 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:640
|
226 |
+
msgid "Chat Agent Online"
|
227 |
+
msgstr "Sohbet Temsilcisi Çevrimiçi"
|
228 |
+
|
229 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:642
|
230 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:647
|
231 |
+
msgid "Chat Agents Online"
|
232 |
+
msgstr "Sohbet Temsilcileri Çevrimiçi"
|
233 |
+
|
234 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:738
|
235 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:649
|
236 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:896
|
237 |
+
msgid "Date"
|
238 |
+
msgstr "Tarih"
|
239 |
+
|
240 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:755
|
241 |
+
msgid "You have not received any offline messages."
|
242 |
+
msgstr "Çevrimdışı mesajınız bulunmamaktadır."
|
243 |
+
|
244 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1059
|
245 |
+
msgid "Administrator"
|
246 |
+
msgstr "Yönetici"
|
247 |
+
|
248 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1060
|
249 |
+
msgid "Editor"
|
250 |
+
msgstr "Editör"
|
251 |
+
|
252 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1061
|
253 |
+
msgid "Author"
|
254 |
+
msgstr "Yazar"
|
255 |
+
|
256 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1062
|
257 |
+
msgid "Contributor"
|
258 |
+
msgstr "İçerik Sağlayan"
|
259 |
+
|
260 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/functions-pro.php:1063
|
261 |
+
msgid "Subscriber"
|
262 |
+
msgstr "Abone"
|
263 |
+
|
264 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:42
|
265 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:10
|
266 |
+
msgid "WP Live Chat Support Settings"
|
267 |
+
msgstr "WP Canlı Sohbet Destek Ayarları"
|
268 |
+
|
269 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:65
|
270 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:522
|
271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:871
|
272 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:886
|
273 |
+
msgid "Dear Pro User"
|
274 |
+
msgstr "Sevgili Pro Sürümü Kullanıcısı"
|
275 |
+
|
276 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:66
|
277 |
+
msgid ""
|
278 |
+
"Please enter a valid API key on the 'Live Chat' -> 'Settings' page. Failing to do this will result in you no longer receiving updates for this plugin."
|
279 |
+
msgstr "'Canlı Sohbet' -> 'Ayarlar' Sayfasında lütfen geçerli bir API anahtarı giriniz. Aksi takdirde bu eklenti için artık güncelleme alamayacaksınız. "
|
280 |
+
|
281 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:67
|
282 |
+
msgid "You can obtain a copy of your API key "
|
283 |
+
msgstr "API anahtarınızın kopyasını alabilirsiniz"
|
284 |
+
|
285 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:67
|
286 |
+
msgid "here"
|
287 |
+
msgstr "burada"
|
288 |
+
|
289 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:67
|
290 |
+
msgid "An account has been created for you while purchasing the plugin. If you have lost your password, please reset it "
|
291 |
+
msgstr "Eklentiyi satın alırken sizin için bir hesap oluşturuldu. Eğer şifrenizi kaybettiyseniz, lütfen şifrenizi sıfırlayınız"
|
292 |
+
|
293 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:68
|
294 |
+
msgid "If you feel you are getting this message in error, please try refreshing the page."
|
295 |
+
msgstr "Eğer bu mesajı yanlışlıkla aldığınızı düşünüyorsanız, lütfen sayfayı yenileyiniz."
|
296 |
+
|
297 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:77
|
298 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:24
|
299 |
+
msgid "General Settings"
|
300 |
+
msgstr "Genel Ayarlar"
|
301 |
+
|
302 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:78
|
303 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:25
|
304 |
+
msgid "Chat Box"
|
305 |
+
msgstr "Sohbet Kutusu"
|
306 |
+
|
307 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:79
|
308 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:362
|
309 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2059
|
310 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:26
|
311 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:275
|
312 |
+
msgid "Offline Messages"
|
313 |
+
msgstr "Çevrimdışı Mesajları"
|
314 |
+
|
315 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:80
|
316 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:464
|
317 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:27
|
318 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:329
|
319 |
+
msgid "Styling"
|
320 |
+
msgstr "Stil"
|
321 |
+
|
322 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:81
|
323 |
+
msgid "Chat Agents"
|
324 |
+
msgstr "Sohbet Temsilcileri"
|
325 |
+
|
326 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:82
|
327 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:29
|
328 |
+
msgid "Blocked Visitors"
|
329 |
+
msgstr "Engellenmiş Ziyaretçiler"
|
330 |
+
|
331 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:83
|
332 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:741
|
333 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:747
|
334 |
+
msgid "Chat Experience Ratings"
|
335 |
+
msgstr "Sohbet Tecrübe Değerlendirmeleri"
|
336 |
+
|
337 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:84
|
338 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:30
|
339 |
+
msgid "Encryption"
|
340 |
+
msgstr "Şifreleme"
|
341 |
+
|
342 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:87
|
343 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:33
|
344 |
+
msgid "Main Settings"
|
345 |
+
msgstr "Ana Ayarlar"
|
346 |
+
|
347 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:90
|
348 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2158
|
349 |
+
msgid "What is this?"
|
350 |
+
msgstr "Bu nedir?"
|
351 |
+
|
352 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:92
|
353 |
+
msgid "Use External Server "
|
354 |
+
msgstr "Harici bir Sunucu Kullanın"
|
355 |
+
|
356 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:101
|
357 |
+
msgid "API Key"
|
358 |
+
msgstr "API Anahtarı"
|
359 |
+
|
360 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:106
|
361 |
+
msgid "This API key is "
|
362 |
+
msgstr "Bu API anahtarı"
|
363 |
+
|
364 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:109
|
365 |
+
msgid "valid"
|
366 |
+
msgstr "geçerli"
|
367 |
+
|
368 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:112
|
369 |
+
msgid "invalid"
|
370 |
+
msgstr "geçersiz"
|
371 |
+
|
372 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:119
|
373 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:36
|
374 |
+
msgid "Chat enabled"
|
375 |
+
msgstr "Sohbet Seçilebilir"
|
376 |
+
|
377 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:124
|
378 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:39
|
379 |
+
msgid "Yes"
|
380 |
+
msgstr "Evet"
|
381 |
+
|
382 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:127
|
383 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:40
|
384 |
+
msgid "No"
|
385 |
+
msgstr "Hayır"
|
386 |
+
|
387 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:133
|
388 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
|
389 |
+
msgid "Choose when I want to be online"
|
390 |
+
msgstr "Ne zaman çevrimiçi olacağımı seç"
|
391 |
+
|
392 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:133
|
393 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:45
|
394 |
+
msgid "Checking this will allow you to change your status to Online or Offline on the Live Chat page."
|
395 |
+
msgstr "Bunu seçmek size Canlı Sohbet sayfasında durumunuzu Çevrimiçi ya da Çevrimdışı olarak değiştirme seçeneği verir."
|
396 |
+
|
397 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:143
|
398 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
399 |
+
msgid "Hide Chat"
|
400 |
+
msgstr "Sohbeti Gizle"
|
401 |
+
|
402 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:143
|
403 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:60
|
404 |
+
msgid "Hides chat for 24hrs when user clicks X"
|
405 |
+
msgstr "Kullanıcı X i tıkladığında sohbet 24 saat için gizlenir"
|
406 |
+
|
407 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:151
|
408 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
409 |
+
msgid "Require Name And Email"
|
410 |
+
msgstr "İsim ve Eposta İste"
|
411 |
+
|
412 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:151
|
413 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:76
|
414 |
+
msgid "Users will have to enter their Name and Email Address when starting a chat"
|
415 |
+
msgstr "Kullanıcılar bir sohbet başlattığında İsim ve Eposta kullanmalıdır"
|
416 |
+
|
417 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:161
|
418 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
419 |
+
msgid "Input Field Replacement Text"
|
420 |
+
msgstr "Veri Alanı Değiştirme Metni"
|
421 |
+
|
422 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:161
|
423 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:84
|
424 |
+
msgid "This is the text that will show in place of the Name And Email fields"
|
425 |
+
msgstr "Bu metin İsim ve Eposta alanları yerini alacak metindir"
|
426 |
+
|
427 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:171
|
428 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
429 |
+
msgid "Use Logged In User Details"
|
430 |
+
msgstr "Giriş Yapan Kullanıcı Bilgilerini Kullan"
|
431 |
+
|
432 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:171
|
433 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:92
|
434 |
+
msgid "A user's Name and Email Address will be used by default if they are logged in."
|
435 |
+
msgstr "Kullanıcı Adı ve Eposta Adresi giriş yaptıklarında varsayılan olarak kullanılacaktır."
|
436 |
+
|
437 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
438 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
439 |
+
msgid "Enable On Mobile Devices"
|
440 |
+
msgstr "Mobil Cihazlarda İzin Ver"
|
441 |
+
|
442 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:182
|
443 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:100
|
444 |
+
msgid "Disabling this will mean that the Chat Box will not be displayed on mobile devices. (Smartphones and Tablets)"
|
445 |
+
msgstr "Bunu etkisizleştirmek Sohbet Kutusunun mobil cihazlarda gösterilmesini durduracaktır. (Akıllı telefon ve Tabletler)"
|
446 |
+
|
447 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:192
|
448 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
|
449 |
+
msgid "Record a visitor's IP Address"
|
450 |
+
msgstr "Ziyaratçinin IP Adresini Kaydet"
|
451 |
+
|
452 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:192
|
453 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:108
|
454 |
+
msgid "Disable this to enable anonymity for your visitors"
|
455 |
+
msgstr "Kullanıcıların isimsiz dolaşmalarına izin vermek için bunu etkisizleştir"
|
456 |
+
|
457 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:202
|
458 |
+
msgid "Include chat window on the following pages:"
|
459 |
+
msgstr "Aşağıdaki sayfalarda sohbet penceresini dahil et:"
|
460 |
+
|
461 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:202
|
462 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
463 |
+
msgid "Show the chat window on the following pages. Leave blank to show on all. (Use comma-separated Page ID's)"
|
464 |
+
msgstr "Aşağıdaki sayfalarda sohbet penceresini göster. Hepsinde göstermek için boş bırak. (Sayfa ID'lerini ayırmak için virgül kullan)"
|
465 |
+
|
466 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:212
|
467 |
+
msgid "Exclude chat window on the following pages:"
|
468 |
+
msgstr "Sohbet penceresini aşağıdaki sayfalardan çıkar:"
|
469 |
+
|
470 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:212
|
471 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
472 |
+
msgid "Do not show the chat window on the following pages. Leave blank to show on all. (Use comma-separated Page ID's)"
|
473 |
+
msgstr "Aşağıdaki sayfalarda sohbet penceresini gösterme. Hepsinde göstermek için boş bırak. (Sayfa ID'lerini ayrımak için virgül kullan)"
|
474 |
+
|
475 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
476 |
+
msgid "Allow any user to make themselves a chat agent"
|
477 |
+
msgstr "Kullanıcıların kendilerini sohbet temsilcisi olarak atmasına izin ver"
|
478 |
+
|
479 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:222
|
480 |
+
msgid "Checking this will allow any of your users to make themselves a chat agent when editing their profile."
|
481 |
+
msgstr "Bunu işaretlediğinizde kullanıcılar profillerini düzenlediklerinde kendilerini sohbet temsilcisi olarak atayabilirler."
|
482 |
+
|
483 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:234
|
484 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:147
|
485 |
+
msgid "Chat Window Settings"
|
486 |
+
msgstr "Sohbet Penceresi Ayarları"
|
487 |
+
|
488 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:237
|
489 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:150
|
490 |
+
msgid "Chat box alignment"
|
491 |
+
msgstr "Sohbet Kutusu Hizalaması"
|
492 |
+
|
493 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:242
|
494 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:153
|
495 |
+
msgid "Bottom left"
|
496 |
+
msgstr "Sol alt"
|
497 |
+
|
498 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:245
|
499 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:154
|
500 |
+
msgid "Bottom right"
|
501 |
+
msgstr "Sağ alt"
|
502 |
+
|
503 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:248
|
504 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:155
|
505 |
+
msgid "Left"
|
506 |
+
msgstr "Sol"
|
507 |
+
|
508 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:251
|
509 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:156
|
510 |
+
msgid "Right"
|
511 |
+
msgstr "Sağ"
|
512 |
+
|
513 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:257
|
514 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
|
515 |
+
msgid "Auto Pop-up"
|
516 |
+
msgstr "Otomatik Açılış"
|
517 |
+
|
518 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:257
|
519 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:162
|
520 |
+
msgid "Expand the chat box automatically (prompts the user to enter their name and email address)."
|
521 |
+
msgstr "Sohbet kutusunu otomatik olarak genişlet (kullanıcıların isim ve epostalarını girmelerini teşvik eder)."
|
522 |
+
|
523 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:268
|
524 |
+
msgid "Name "
|
525 |
+
msgstr "İsim"
|
526 |
+
|
527 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:282
|
528 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:187
|
529 |
+
msgid "Picture"
|
530 |
+
msgstr "Fotoğraf"
|
531 |
+
|
532 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:290
|
533 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:190
|
534 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:206
|
535 |
+
msgid "Upload Image"
|
536 |
+
msgstr "Fotoğraf Yükle"
|
537 |
+
|
538 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:292
|
539 |
+
msgid "Remove Image"
|
540 |
+
msgstr "Fotoğraf Kaldır"
|
541 |
+
|
542 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:293
|
543 |
+
msgid "Recomended Size 40px x 40px"
|
544 |
+
msgstr "Önerilen Ölçü 40px x 40px"
|
545 |
+
|
546 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:299
|
547 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:203
|
548 |
+
msgid "Logo"
|
549 |
+
msgstr "Logo"
|
550 |
+
|
551 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:307
|
552 |
+
msgid "Upload Logo"
|
553 |
+
msgstr "Logo Yükle"
|
554 |
+
|
555 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:309
|
556 |
+
msgid "Remove Logo"
|
557 |
+
msgstr "Logo Kaldır"
|
558 |
+
|
559 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:310
|
560 |
+
msgid "Recomended Size 250px x 40px"
|
561 |
+
msgstr "Önerilen Ölçü 250px x 40px"
|
562 |
+
|
563 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:316
|
564 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:219
|
565 |
+
msgid "Chat delay (seconds)"
|
566 |
+
msgstr "Sohbet Gecikmesi (saniye)"
|
567 |
+
|
568 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:316
|
569 |
+
msgid "How long it takes for your chat window to pop up"
|
570 |
+
msgstr "Sohbet penceresinin belirmesi için geçen süre"
|
571 |
+
|
572 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:325
|
573 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:235
|
574 |
+
msgid "Chat notifications"
|
575 |
+
msgstr "Sohbet Bildirimleri"
|
576 |
+
|
577 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:325
|
578 |
+
msgid "Alert me via email as soon as someone wants to chat (while online only)"
|
579 |
+
msgstr "Birisi sohbet etmek istediğinde beni eposta ile hemen uyar (sadece çevrimiçiyken)"
|
580 |
+
|
581 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:335
|
582 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
583 |
+
msgid "Display name and avatar in chat"
|
584 |
+
msgstr "İsim ve avatarı sohbette göster"
|
585 |
+
|
586 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:335
|
587 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:251
|
588 |
+
msgid "Display the agent and user name above each message in the chat window."
|
589 |
+
msgstr "Sohbet penceresinde kullanıcı ve temsilci adını her mesajın üstünde göster."
|
590 |
+
|
591 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:347
|
592 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
|
593 |
+
msgid "Only show the chat window to users that are logged in"
|
594 |
+
msgstr "Sohbet penceresini sadece giriş yapmış kullanıcılara göster"
|
595 |
+
|
596 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:347
|
597 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:261
|
598 |
+
msgid "By checking this, only users that are logged in will be able to chat with you."
|
599 |
+
msgstr "Bunu işaretlerseniz sadece giriş yapmış kullanıcılar sizinle sohbet edebilir."
|
600 |
+
|
601 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:366
|
602 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:279
|
603 |
+
msgid "Do not allow users to send offline messages"
|
604 |
+
msgstr "Kullanıcıların çevrimdışı mesaj göndermelerine izin verme"
|
605 |
+
|
606 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:366
|
607 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:279
|
608 |
+
msgid "The chat window will be hidden when it is offline. Users will not be able to send offline messages to you"
|
609 |
+
msgstr "Sohbet penceresi çevrimdışıyken gizlenecektir. Kullanıcılar size çevrimdışı mesaj gönderemeyecek."
|
610 |
+
|
611 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:378
|
612 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:287
|
613 |
+
msgid "Email Address"
|
614 |
+
msgstr "Eposta Adresi"
|
615 |
+
|
616 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:378
|
617 |
+
msgid "Email address where offline messages are delivered to. Use comma separated email addresses to send to more than one email address"
|
618 |
+
msgstr "Çevrimdışı mesajlarının gönderileceği eposta adresi. Birden fazla eposta adresine göndermek için virgülle eposta adreslerini ayırınız"
|
619 |
+
|
620 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:391
|
621 |
+
msgid "Sending Method"
|
622 |
+
msgstr "Gönderme Şekli"
|
623 |
+
|
624 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:392
|
625 |
+
msgid "WP Mail"
|
626 |
+
msgstr "WP Postası"
|
627 |
+
|
628 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:393
|
629 |
+
msgid "PHP Mailer"
|
630 |
+
msgstr "PHP postalayıcı"
|
631 |
+
|
632 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:409
|
633 |
+
msgid "Host"
|
634 |
+
msgstr "Sunucu"
|
635 |
+
|
636 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:417
|
637 |
+
msgid "Port"
|
638 |
+
msgstr "Port"
|
639 |
+
|
640 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:425
|
641 |
+
msgid "Username"
|
642 |
+
msgstr "Kullanıcı Adı"
|
643 |
+
|
644 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:433
|
645 |
+
msgid "Password"
|
646 |
+
msgstr "Şifre"
|
647 |
+
|
648 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:442
|
649 |
+
msgid "Offline Chat Box Title"
|
650 |
+
msgstr "Çevrimdışı Sohbet Kutusu Başlığı"
|
651 |
+
|
652 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:450
|
653 |
+
msgid "Offline Text Fields"
|
654 |
+
msgstr "Çevrimdışı Metin Alanları"
|
655 |
+
|
656 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:483
|
657 |
+
msgid "Choose a theme"
|
658 |
+
msgstr "Tema Seçin"
|
659 |
+
|
660 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:488
|
661 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:491
|
662 |
+
msgid "Theme 1"
|
663 |
+
msgstr "Tema 1"
|
664 |
+
|
665 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:494
|
666 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:497
|
667 |
+
msgid "Theme 2"
|
668 |
+
msgstr "Tema 2"
|
669 |
+
|
670 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:500
|
671 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:503
|
672 |
+
msgid "Theme 3"
|
673 |
+
msgstr "Tema 3"
|
674 |
+
|
675 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:506
|
676 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:509
|
677 |
+
msgid "Theme 4"
|
678 |
+
msgstr "Tema 4"
|
679 |
+
|
680 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:512
|
681 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:515
|
682 |
+
msgid "Theme 5"
|
683 |
+
msgstr "Tema 5"
|
684 |
+
|
685 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:518
|
686 |
+
msgid "Theme 6"
|
687 |
+
msgstr "Tema 6"
|
688 |
+
|
689 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:521
|
690 |
+
msgid "Custom. Enter Colour Values Below"
|
691 |
+
msgstr "Özel. Aşağıya Renk Değeri Girin"
|
692 |
+
|
693 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:547
|
694 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:349
|
695 |
+
msgid "Chat box fill color"
|
696 |
+
msgstr "Sohbet kutusu rengi"
|
697 |
+
|
698 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:553
|
699 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:355
|
700 |
+
msgid "Chat box font color"
|
701 |
+
msgstr "Sohbet kutusu yazı rengi"
|
702 |
+
|
703 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:560
|
704 |
+
msgid "I'm using a localization plugin"
|
705 |
+
msgstr "Lokalizasyon eklentisi kullanıyorum"
|
706 |
+
|
707 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:563
|
708 |
+
msgid "documentation"
|
709 |
+
msgstr "belgeleme"
|
710 |
+
|
711 |
+
# Please Check Read me File line 4
|
712 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:568
|
713 |
+
msgid ""
|
714 |
+
"You will only be able to edit the strings shown in the chat window of the code now. <br/> This has been done to accommodate as many localization "
|
715 |
+
"plugins as possible. <br/> For more information on how to change these strings, please consult the "
|
716 |
+
msgstr ""
|
717 |
+
"Şu an sadece kodun sohbet penceresinin içerisinde gösterilen çizgileri düzenleyebilirsiniz. <br/> Bu mümkün olduğunca fazla lokalizasyon eklentisi "
|
718 |
+
"barındırabilmek için yapıldı. <br/> Bu çizgileri değiştirmekle ilgili daha fazla bilgi almak için, lütfen ........ danışınız"
|
719 |
+
|
720 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:573
|
721 |
+
msgid "First Section Text"
|
722 |
+
msgstr "İlk Bölüm Metni"
|
723 |
+
|
724 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:580
|
725 |
+
msgid "Intro Text"
|
726 |
+
msgstr "Giriş Metni"
|
727 |
+
|
728 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:586
|
729 |
+
msgid "Second Section Text"
|
730 |
+
msgstr "İkinci Bölüm Metni"
|
731 |
+
|
732 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:593
|
733 |
+
msgid "Reactivate Chat Section Text"
|
734 |
+
msgstr "Sohbet Bölüm Metnini Tekrar Aktif Edin"
|
735 |
+
|
736 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:601
|
737 |
+
msgid "User chat welcome"
|
738 |
+
msgstr "Kullanıcı sohbet karşılaması"
|
739 |
+
|
740 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:607
|
741 |
+
msgid "Other text"
|
742 |
+
msgstr "Diğer Metin"
|
743 |
+
|
744 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:609
|
745 |
+
msgid "This text is shown above the user chat input field"
|
746 |
+
msgstr "Bu metin kullanıcı veri alanının üzerinde gösteriliyor"
|
747 |
+
|
748 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:641
|
749 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please update your plugin to allow for animations to function"
|
750 |
+
msgstr "Wp Canlı Sohbet Destek Temel eski sürümünü kullanıyorsunuz. Lütfen animasyonları aktive etmek için sürümü yükseltiniz. "
|
751 |
+
|
752 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:645
|
753 |
+
msgid "Choose an animation"
|
754 |
+
msgstr "Bir animasyon seçiniz"
|
755 |
+
|
756 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:653
|
757 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:426
|
758 |
+
msgid "Slide Up"
|
759 |
+
msgstr "Sunum Üst"
|
760 |
+
|
761 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:659
|
762 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:430
|
763 |
+
msgid "Slide From The Side"
|
764 |
+
msgstr "Sunum yandan"
|
765 |
+
|
766 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:665
|
767 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:434
|
768 |
+
msgid "Fade In"
|
769 |
+
msgstr "Solma"
|
770 |
+
|
771 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:671
|
772 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:438
|
773 |
+
msgid "No Animation"
|
774 |
+
msgstr "Animasyon Yok"
|
775 |
+
|
776 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:709
|
777 |
+
msgid "Current Users that are Chat Agents"
|
778 |
+
msgstr "Şu an sohbet temsilcisi olan kullanıcılar "
|
779 |
+
|
780 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:723
|
781 |
+
msgid "To add or remove a user as a chat agent, go into the users profile and select the checkbox Chat Agent and click save."
|
782 |
+
msgstr "Sohbet temsilcisi eklemek ve kaldırmak için kullanıcı profiline gidin, Sohbet Temsilcisi kutucuğunu işaretleyin ve kaydedin."
|
783 |
+
|
784 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:724
|
785 |
+
msgid "If there are no chat agents online, the chat will show as offline"
|
786 |
+
msgstr "Eğer çevrimiçi sohbet temsilcisi yoksa, sohbet çevrimdışı olarak görünecektir"
|
787 |
+
|
788 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:728
|
789 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:450
|
790 |
+
msgid "Blocked Visitors - Based on IP Address"
|
791 |
+
msgstr "Engellenmiş Ziyaretçiler - IP Adreslerine Göre"
|
792 |
+
|
793 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:729
|
794 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:451
|
795 |
+
msgid "Enter each IP Address you would like to block on a new line"
|
796 |
+
msgstr "Her seferinde yeni bir satırda engellemek istediğiniz IP adresini Girin"
|
797 |
+
|
798 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:738
|
799 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:460
|
800 |
+
msgid ""
|
801 |
+
"Blocking a user's IP Address here will hide the chat window from them, preventing them from chatting with you. Each IP Address must be on a new line"
|
802 |
+
msgstr ""
|
803 |
+
"Burada bir kullanıcının IP adresi engellendiğinde sohbet penceresi onlardan gizlenir, bu onların sizinle sohbet etmelerini engeller. Her IP Adresi yeni "
|
804 |
+
"bir satırda olmalıdır"
|
805 |
+
|
806 |
+
# Please see "read me" file line 5
|
807 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:747
|
808 |
+
msgid "are only available in the WP Live Chat Support Chat Experience Ratings add-on"
|
809 |
+
msgstr "....... sadece WP Canlı Sohbet Desteği Sohbet Tecrübesi Değerlendirme eklentisinde bulunabilir."
|
810 |
+
|
811 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:751
|
812 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:463
|
813 |
+
msgid "Chat Encryption"
|
814 |
+
msgstr "Sohbet Şifreleme"
|
815 |
+
|
816 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:754
|
817 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:466
|
818 |
+
msgid "Enable Encryption"
|
819 |
+
msgstr "Şifrelemeyi Etkinleştir"
|
820 |
+
|
821 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:754
|
822 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:466
|
823 |
+
msgid "All messages will be encrypted when being sent to and from the user and agent."
|
824 |
+
msgstr "Kullanıcı ve temsilcinin birbirine gönderip aldığı mesajların hepsi şifrelenecektir. "
|
825 |
+
|
826 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:762
|
827 |
+
msgid "Once enabled, all messages sent will be encrypted. This cannot be undone."
|
828 |
+
msgstr "Aktif edildiğinde tüm mesaj şifrelenecektir. Bu süreç geri alınamaz."
|
829 |
+
|
830 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/includes/settings_page_pro.php:768
|
831 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:480
|
832 |
+
msgid "Save Settings"
|
833 |
+
msgstr "Ayarları Kaydet"
|
834 |
+
|
835 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:506
|
836 |
+
msgid "Dear User"
|
837 |
+
msgstr "Değerli Kullanıcı"
|
838 |
+
|
839 |
+
# Instead of line by line if I translate it as a full sentece I would say :
|
840 |
+
# Wp Canlı Sohbet Desteği Temel eski sürümünü kullanıyorsunuz. Her bir fonksiyonun düzgün çalıştığından emin olmak için lütfen bir üst sürüme yükseltiniz.
|
841 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:507
|
842 |
+
msgid "You are using an outdated version of WP Live Chat Support Basic. Please"
|
843 |
+
msgstr "Wp Canlı Sohbet Desteği Temel eski sürümünü kullanıyorsunuz. Lütfen "
|
844 |
+
|
845 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:507
|
846 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:872
|
847 |
+
msgid "update to at least version"
|
848 |
+
msgstr "bir üst sürüme yükseltiniz"
|
849 |
+
|
850 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:507
|
851 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:872
|
852 |
+
msgid "to ensure all functionality is in working order"
|
853 |
+
msgstr "her fonksiyonun düzgün çalıştığından emin olmak için"
|
854 |
+
|
855 |
+
# There is a grammar mistake in the main sentence. I do that sometimes too or the auto text screws sometimes. So Please Check Read me file line 7
|
856 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:508
|
857 |
+
msgid ""
|
858 |
+
"You're live chat box on your website has been temporarily disabled until the basic plugin has been updated. This is to ensure a smooth and hassle-free "
|
859 |
+
"user experience for both yourself and your visitors."
|
860 |
+
msgstr ""
|
861 |
+
"Temel eklenti güncellenene kadar sitenizdeki canlı sohbet kutusu geçici bir süreliğine kapatılacaktır. Bu hem siz hem de ziyaretçileriniz için sorunsuz "
|
862 |
+
"bir kullanıcı tecrübesi yaşatmayı garantilemek içindir."
|
863 |
+
|
864 |
+
# Read me file/ Line 6
|
865 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:509
|
866 |
+
msgid "You can update your plugin <a href='./update-core.php'>here</a> or <a href='./plugins.php'>here</a>."
|
867 |
+
msgstr "Eklentinizi yükseltebilirsiniz <a href='./update-core.php'>here</a> or <a href='./plugins.php'>here</a>."
|
868 |
+
|
869 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:510
|
870 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:875
|
871 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:895
|
872 |
+
msgid "If you are having difficulty updating the plugin, please contact"
|
873 |
+
msgstr "Eğer eklentiyi güncellerken bir zorluk yaşarsanız, lütfen iletişime geçiniz"
|
874 |
+
|
875 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:523
|
876 |
+
msgid "WP Live Chat Support Pro requires WP Live Chat Support to function. You can download the latest copy from"
|
877 |
+
msgstr "WP Canlı Sohbet Pro yüklemek için WP Canlı Sohbet Desteği kurmanız gerekmektedir. En son çıkan sürümünü buradan ............. indirebilirsiniz. "
|
878 |
+
|
879 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:535
|
880 |
+
msgid "Admin"
|
881 |
+
msgstr "Yönetici"
|
882 |
+
|
883 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:539
|
884 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:767
|
885 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:364
|
886 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:491
|
887 |
+
msgid "Questions?"
|
888 |
+
msgstr "Sorunuz?"
|
889 |
+
|
890 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:540
|
891 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:768
|
892 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:365
|
893 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:491
|
894 |
+
msgid "Chat with us"
|
895 |
+
msgstr "Bizimle sohbet edin"
|
896 |
+
|
897 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:541
|
898 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:769
|
899 |
+
msgid "Start live chat"
|
900 |
+
msgstr "Canlı sohbet başlat"
|
901 |
+
|
902 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:542
|
903 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:771
|
904 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:371
|
905 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:553
|
906 |
+
msgid "Start Chat"
|
907 |
+
msgstr "Sohbet Başlat "
|
908 |
+
|
909 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:543
|
910 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:772
|
911 |
+
msgid "Connecting. Please be patient..."
|
912 |
+
msgstr "Bağlanıyor. Lütfen bekleyiniz..."
|
913 |
+
|
914 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:544
|
915 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:774
|
916 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:380
|
917 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:559
|
918 |
+
msgid "Reactivating your previous chat..."
|
919 |
+
msgstr "Önceki sohbetinizi aktif ediyor..."
|
920 |
+
|
921 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:545
|
922 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:776
|
923 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:305
|
924 |
+
msgid "Chat offline. Leave a message"
|
925 |
+
msgstr "Sohbet çevrimdışı. Mesaj bırakınız"
|
926 |
+
|
927 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:546
|
928 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:778
|
929 |
+
msgid "Hello. Please input your details so that I may help you."
|
930 |
+
msgstr "Merhaba. Size yardımcı olabilmem için lütfen detayları giriniz. "
|
931 |
+
|
932 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:547
|
933 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:780
|
934 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:781
|
935 |
+
msgid "We are currently offline. Please leave a message and we'll get back to you shortly."
|
936 |
+
msgstr "Şu an çevrimdışıyız. Lütfen bir mesaj bırakınız, size tekrar döneceğiz."
|
937 |
+
|
938 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:548
|
939 |
+
msgid "Sending message..."
|
940 |
+
msgstr "Mesaj gönderiyor..."
|
941 |
+
|
942 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:549
|
943 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:782
|
944 |
+
msgid "Thank you for your message. We will be in contact soon."
|
945 |
+
msgstr "Mesajınız için teşekkürler. Sizinle iletişime geçeceğiz. "
|
946 |
+
|
947 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:550
|
948 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:784
|
949 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:564
|
950 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1052
|
951 |
+
msgid "Press ENTER to send your message"
|
952 |
+
msgstr "Mesaj göndermek için ENTER a basınız "
|
953 |
+
|
954 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:551
|
955 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:786
|
956 |
+
msgid "Welcome. How may I help you?"
|
957 |
+
msgstr "Hoşgeldiniz. Nasıl yardımcı olabilirim?"
|
958 |
+
|
959 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:590
|
960 |
+
msgid "Rating Unavailable"
|
961 |
+
msgstr "Derecelendirme Yok"
|
962 |
+
|
963 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:594
|
964 |
+
msgid "You are currently accepting chats"
|
965 |
+
msgstr "Şu an sohbet kabul ediyorsunuz"
|
966 |
+
|
967 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:595
|
968 |
+
msgid "You are not accepting chats"
|
969 |
+
msgstr "Sohbet kabul etmiyorsunuz"
|
970 |
+
|
971 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:643
|
972 |
+
msgid "Delete History"
|
973 |
+
msgstr "Geçmişi Sil"
|
974 |
+
|
975 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:652
|
976 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:899
|
977 |
+
msgid "URL"
|
978 |
+
msgstr "URL"
|
979 |
+
|
980 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:653
|
981 |
+
msgid "Status"
|
982 |
+
msgstr "Durum"
|
983 |
+
|
984 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:654
|
985 |
+
msgid "Action"
|
986 |
+
msgstr "Hareket"
|
987 |
+
|
988 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:660
|
989 |
+
msgid "No chats available at the moment"
|
990 |
+
msgstr "Şu an bir sohbet bulunmamaktadır"
|
991 |
+
|
992 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:668
|
993 |
+
msgid "View Chat History"
|
994 |
+
msgstr "Sohbet Geçmişini Gör"
|
995 |
+
|
996 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:788
|
997 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:977
|
998 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1513
|
999 |
+
msgid "Please click 'Start Chat' to initiate a chat with an agent"
|
1000 |
+
msgstr "Bir temsilciyle sohbet etmek için lütfen 'Sohbet Başlat' ı tıklayınız"
|
1001 |
+
|
1002 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:809
|
1003 |
+
msgid "Minimize Chat Window"
|
1004 |
+
msgstr "Sohbet Ekranını Küçült"
|
1005 |
+
|
1006 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:810
|
1007 |
+
msgid "Close Chat Window"
|
1008 |
+
msgstr "Sohbet Penceresini Kapat"
|
1009 |
+
|
1010 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:910
|
1011 |
+
msgid "Send message"
|
1012 |
+
msgstr "Mesaj Gönder"
|
1013 |
+
|
1014 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:936
|
1015 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:568
|
1016 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1066
|
1017 |
+
msgid "Send"
|
1018 |
+
msgstr "Gönder"
|
1019 |
+
|
1020 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1147
|
1021 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1547
|
1022 |
+
msgid "Your settings have been saved."
|
1023 |
+
msgstr "Ayarlarınız kaydedildi."
|
1024 |
+
|
1025 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1163
|
1026 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:927
|
1027 |
+
msgid "Chat sessions"
|
1028 |
+
msgstr "Sohbet oturumları"
|
1029 |
+
|
1030 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1165
|
1031 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:929
|
1032 |
+
msgid "Please note: This window must be open in order to receive new chat notifications."
|
1033 |
+
msgstr "Lütfen dikkat: Bu pencere yeni sohbet bildirimleri almak için açık olmalıdır. "
|
1034 |
+
|
1035 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1169
|
1036 |
+
msgid "You are not a chat agent. Please make yourself a chat agent before trying to chat to visitors"
|
1037 |
+
msgstr "Sohbet temsilcisi değilsiniz. Ziyaretçilerle sohbet edebilmek için kendinizi sohbet temsilcisi yapın"
|
1038 |
+
|
1039 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1279
|
1040 |
+
msgid "Unknown"
|
1041 |
+
msgstr "Bilinmiyor"
|
1042 |
+
|
1043 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1295
|
1044 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1019
|
1045 |
+
msgid "End chat"
|
1046 |
+
msgstr "Sohbeti Bitir"
|
1047 |
+
|
1048 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1300
|
1049 |
+
msgid "Attempting to open the chat window... Please be patient."
|
1050 |
+
msgstr "Sohbet penceresi açılıyor... Lütfen bekleyiniz."
|
1051 |
+
|
1052 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1402
|
1053 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1664
|
1054 |
+
msgid "This chat has already been answered. Please close the chat window"
|
1055 |
+
msgstr "Bu sohbet zaten yanıtlandı. Lütfen sohbet penceresini kapatınız"
|
1056 |
+
|
1057 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1469
|
1058 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1178
|
1059 |
+
msgid "User has opened the chat window"
|
1060 |
+
msgstr "Kullanıcı sohbet penceresini açtı"
|
1061 |
+
|
1062 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1474
|
1063 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1183
|
1064 |
+
msgid "User has minimized the chat window"
|
1065 |
+
msgstr "Kullanıcı sohbet penceresini küçülttü"
|
1066 |
+
|
1067 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1479
|
1068 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1188
|
1069 |
+
msgid "User has maximized the chat window"
|
1070 |
+
msgstr "Kullanıcı sohbet penceresini büyüttü"
|
1071 |
+
|
1072 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1484
|
1073 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1193
|
1074 |
+
msgid "User has closed and ended the chat"
|
1075 |
+
msgstr "Kullanıcı sohbeti sonlandırdı ve kapattı"
|
1076 |
+
|
1077 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1871
|
1078 |
+
msgid "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
1079 |
+
msgstr ""
|
1080 |
+
"API isteği esnasında beklenmedik bir HTTP Hatası meydana geldi. </p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;\">Try again</"
|
1081 |
+
"a>"
|
1082 |
+
|
1083 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:1876
|
1084 |
+
msgid "An unknown error occurred"
|
1085 |
+
msgstr "Bilinmeyen bir hata meydana geldi"
|
1086 |
+
|
1087 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2053
|
1088 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:301
|
1089 |
+
msgid "Live Chat"
|
1090 |
+
msgstr "Canlı Sohbet"
|
1091 |
+
|
1092 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2054
|
1093 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:302
|
1094 |
+
msgid "Settings"
|
1095 |
+
msgstr "Ayarlar"
|
1096 |
+
|
1097 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2055
|
1098 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2076
|
1099 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2087
|
1100 |
+
msgid "Quick Responses"
|
1101 |
+
msgstr "Hızlı Yanıtlar"
|
1102 |
+
|
1103 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2057
|
1104 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:303
|
1105 |
+
msgid "History"
|
1106 |
+
msgstr "Geçmiş"
|
1107 |
+
|
1108 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2058
|
1109 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:304
|
1110 |
+
msgid "Missed Chats"
|
1111 |
+
msgstr "Cevaplanmayan Sohbetler"
|
1112 |
+
|
1113 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2060
|
1114 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:37
|
1115 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:305
|
1116 |
+
msgid "Feedback"
|
1117 |
+
msgstr "Geribildirim"
|
1118 |
+
|
1119 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2064
|
1120 |
+
msgid "Error Log"
|
1121 |
+
msgstr "Hata Günlüğü"
|
1122 |
+
|
1123 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2067
|
1124 |
+
msgid "Statistics"
|
1125 |
+
msgstr "İstatistikler"
|
1126 |
+
|
1127 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2070
|
1128 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:306
|
1129 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1671
|
1130 |
+
msgid "Support"
|
1131 |
+
msgstr "Destek"
|
1132 |
+
|
1133 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2077
|
1134 |
+
msgid "Quick Response"
|
1135 |
+
msgstr "Hızlı Yanıt"
|
1136 |
+
|
1137 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2078
|
1138 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2081
|
1139 |
+
msgid "New Quick Response"
|
1140 |
+
msgstr "Yeni Hızlı Yanıt"
|
1141 |
+
|
1142 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2079
|
1143 |
+
msgid "Add New Quick Response"
|
1144 |
+
msgstr "Yeni Hızlı Yanıt Ekle"
|
1145 |
+
|
1146 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2080
|
1147 |
+
msgid "Edit Quick Response"
|
1148 |
+
msgstr "Hızlı Yanıt Düzenleyin"
|
1149 |
+
|
1150 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2082
|
1151 |
+
msgid "All Quick Responses"
|
1152 |
+
msgstr "Tüm Hızlı Yanıtlar"
|
1153 |
+
|
1154 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2083
|
1155 |
+
msgid "View Quick Responses"
|
1156 |
+
msgstr "Hızlı Yanıtları Gör"
|
1157 |
+
|
1158 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2084
|
1159 |
+
msgid "Search Quick Responses"
|
1160 |
+
msgstr "Hızlı Yanıtlar Ara"
|
1161 |
+
|
1162 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2085
|
1163 |
+
msgid "No Quick Responses found"
|
1164 |
+
msgstr "Hızlı Yanıt Bulunamadı"
|
1165 |
+
|
1166 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2086
|
1167 |
+
msgid "No Quick Responses found in the Trash"
|
1168 |
+
msgstr "Çöp Tenekesinde Hızlı Yanıtlar bulunamadı"
|
1169 |
+
|
1170 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2091
|
1171 |
+
msgid "Quick Responses for WP Live Chat Support Pro"
|
1172 |
+
msgstr "WP Canlı Sohbet Destek Pro için Hızlı Yanıtlar "
|
1173 |
+
|
1174 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2145
|
1175 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2149
|
1176 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1053
|
1177 |
+
msgid "Assign Quick Response"
|
1178 |
+
msgstr "Hızlı Yanıt Belirleyin"
|
1179 |
+
|
1180 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support-pro/wp-live-chat-support-pro.php:2152
|
1181 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1053
|
1182 |
+
msgid "Select"
|
1183 |
+
msgstr "Seç"
|
1184 |
+
|
1185 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:580
|
1186 |
+
msgid "complete"
|
1187 |
+
msgstr "Tamamlandı"
|
1188 |
+
|
1189 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:583
|
1190 |
+
msgid "pending"
|
1191 |
+
msgstr "beklemede"
|
1192 |
+
|
1193 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:586
|
1194 |
+
msgid "active"
|
1195 |
+
msgstr "aktif"
|
1196 |
+
|
1197 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:589
|
1198 |
+
msgid "deleted"
|
1199 |
+
msgstr "silindi"
|
1200 |
+
|
1201 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:592
|
1202 |
+
msgid "browsing"
|
1203 |
+
msgstr "tarıyor"
|
1204 |
+
|
1205 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:595
|
1206 |
+
msgid "requesting chat"
|
1207 |
+
msgstr "sohbet isteniyor"
|
1208 |
+
|
1209 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:598
|
1210 |
+
msgid "Chat Ended - User still browsing"
|
1211 |
+
msgstr "Sohbet sonlandırıldı. Kullanıcı hala sitede"
|
1212 |
+
|
1213 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:601
|
1214 |
+
msgid "User is browsing but doesn't want to chat"
|
1215 |
+
msgstr "Kullanıcı sitede fakat sohbet etmek istemiyor"
|
1216 |
+
|
1217 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:682
|
1218 |
+
msgid "Get Pro Add-on to accept more chats"
|
1219 |
+
msgstr "Daha fazla sohbet kabul edebilmek için Pro Eklentisini alınız "
|
1220 |
+
|
1221 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/functions.php:926
|
1222 |
+
msgid "You have not missed any chat requests."
|
1223 |
+
msgstr "Cevaplanmayan sohbet isteği bulunmamaktadır"
|
1224 |
+
|
1225 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:7
|
1226 |
+
msgid "WP Live Chat Support Feedback"
|
1227 |
+
msgstr "WP Canlı Sohbet Destek Geribildirimi"
|
1228 |
+
|
1229 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:8
|
1230 |
+
msgid "We'd love to hear your comments and/or suggestions"
|
1231 |
+
msgstr "Yorum ve önerilerinizi duymaktan memnun oluruz"
|
1232 |
+
|
1233 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:13
|
1234 |
+
msgid "Your Name"
|
1235 |
+
msgstr "Adınız"
|
1236 |
+
|
1237 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:21
|
1238 |
+
msgid "Your Email"
|
1239 |
+
msgstr "Epostanız"
|
1240 |
+
|
1241 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:29
|
1242 |
+
msgid "Your Website"
|
1243 |
+
msgstr "Websiteniz"
|
1244 |
+
|
1245 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/feedback-page.php:48
|
1246 |
+
msgid "Send Feedback"
|
1247 |
+
msgstr "Geribildirim gönderin"
|
1248 |
+
|
1249 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:28
|
1250 |
+
msgid "Agents"
|
1251 |
+
msgstr "Temsilciler"
|
1252 |
+
|
1253 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:51
|
1254 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:66
|
1255 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:122
|
1256 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:137
|
1257 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:177
|
1258 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:193
|
1259 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:209
|
1260 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:225
|
1261 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:242
|
1262 |
+
msgid "available in the"
|
1263 |
+
msgstr "....... bulunabilir"
|
1264 |
+
|
1265 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:52
|
1266 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:67
|
1267 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:123
|
1268 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:138
|
1269 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:178
|
1270 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:194
|
1271 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:210
|
1272 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:226
|
1273 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:243
|
1274 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:294
|
1275 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:308
|
1276 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:384
|
1277 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:471
|
1278 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1452
|
1279 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1472
|
1280 |
+
msgid "Pro Add-on"
|
1281 |
+
msgstr "Pro Eklentisi"
|
1282 |
+
|
1283 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:53
|
1284 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:68
|
1285 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:124
|
1286 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:139
|
1287 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:179
|
1288 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:195
|
1289 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:211
|
1290 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:227
|
1291 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:244
|
1292 |
+
msgid "only"
|
1293 |
+
msgstr "sadece"
|
1294 |
+
|
1295 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:69
|
1296 |
+
msgid " Updates included forever."
|
1297 |
+
msgstr "Limitsiz güncellemeler dahildir."
|
1298 |
+
|
1299 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:116
|
1300 |
+
msgid "Include chat window on the following pages"
|
1301 |
+
msgstr "Sohbet penceresini sonraki sayfalarda göster"
|
1302 |
+
|
1303 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:131
|
1304 |
+
msgid "Exclude chat window on the following pages"
|
1305 |
+
msgstr "Sohbet penceresini sonraki sayfalarda gösterme"
|
1306 |
+
|
1307 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:239
|
1308 |
+
msgid "Alert me via email as soon as someone wants to chat"
|
1309 |
+
msgstr "Birisi sohbet istediğinde derhal beni eposta ile bilgilendir"
|
1310 |
+
|
1311 |
+
# Or;
|
1312 |
+
# .............. ile çevrimdışı mesajları al
|
1313 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:293
|
1314 |
+
msgid "Get offline messages with the "
|
1315 |
+
msgstr "Çevrimdışı mesajları ................... ile al"
|
1316 |
+
|
1317 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:302
|
1318 |
+
msgid "Offline text"
|
1319 |
+
msgstr "Çevrimdışı metni"
|
1320 |
+
|
1321 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:307
|
1322 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:383
|
1323 |
+
msgid "Edit these text fields using the "
|
1324 |
+
msgstr "Bu metin alanlarını .............. kullanarak düzenle"
|
1325 |
+
|
1326 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1327 |
+
msgid "Choose a colour scheme. Only available in the"
|
1328 |
+
msgstr "Renk çizelgesi seçiniz. Sadece .................. bulunabilir"
|
1329 |
+
|
1330 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:333
|
1331 |
+
msgid "Pro add-on"
|
1332 |
+
msgstr "Pro Eklentisi"
|
1333 |
+
|
1334 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:337
|
1335 |
+
msgid "Colour Scheme 1"
|
1336 |
+
msgstr "Renk Çizelgesi 1"
|
1337 |
+
|
1338 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:338
|
1339 |
+
msgid "Colour Scheme 2"
|
1340 |
+
msgstr "Renk Çizelgesi 2"
|
1341 |
+
|
1342 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:339
|
1343 |
+
msgid "Colour Scheme 3"
|
1344 |
+
msgstr "Renk Çizelgesi 3"
|
1345 |
+
|
1346 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:340
|
1347 |
+
msgid "Colour Scheme 4"
|
1348 |
+
msgstr "Renk Çizelgesi 4"
|
1349 |
+
|
1350 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:341
|
1351 |
+
msgid "Colour Scheme 5"
|
1352 |
+
msgstr "Renk Çizelgesi 5"
|
1353 |
+
|
1354 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:342
|
1355 |
+
msgid "Colour Scheme 6"
|
1356 |
+
msgstr "Renk Çizelgesi 6"
|
1357 |
+
|
1358 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:362
|
1359 |
+
msgid "First section text"
|
1360 |
+
msgstr "İlk bölüm metni"
|
1361 |
+
|
1362 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:369
|
1363 |
+
msgid "Second section text"
|
1364 |
+
msgstr "İkinci bölüm metni"
|
1365 |
+
|
1366 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:372
|
1367 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:556
|
1368 |
+
msgid "Connecting you to a sales person. Please be patient."
|
1369 |
+
msgstr "Sizi bir satışı yetkilisine bağlıyoruz. Lütfen bekleyiniz."
|
1370 |
+
|
1371 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:378
|
1372 |
+
msgid "Reactivate chat section text"
|
1373 |
+
msgstr "Sohbet oturum metnini tekrar aktif et"
|
1374 |
+
|
1375 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:418
|
1376 |
+
msgid "Choose an animation. Only available in the"
|
1377 |
+
msgstr "Bir animasyon seçiniz. Sadece ............. bulunabilir"
|
1378 |
+
|
1379 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:419
|
1380 |
+
msgid "Pro"
|
1381 |
+
msgstr "Pro"
|
1382 |
+
|
1383 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:446
|
1384 |
+
msgid "Multiple Agents"
|
1385 |
+
msgstr "Birden fazla temsilci"
|
1386 |
+
|
1387 |
+
# Get
|
1388 |
+
# Mutiple agent support
|
1389 |
+
# If these two are together, it should be traslated as : "Birden fazla temsilci desteği alın"
|
1390 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
1391 |
+
msgid "Get"
|
1392 |
+
msgstr "Alın"
|
1393 |
+
|
1394 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:447
|
1395 |
+
msgid "Multiple agent support"
|
1396 |
+
msgstr "Birden fazla temsilci desteği"
|
1397 |
+
|
1398 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/settings_page.php:470
|
1399 |
+
msgid "Encrypt your chat messages in the "
|
1400 |
+
msgstr "............ sohbet mesajlarınızı şifreleyin"
|
1401 |
+
|
1402 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:4
|
1403 |
+
msgid "Welcome to "
|
1404 |
+
msgstr "Hoşgeldiniz"
|
1405 |
+
|
1406 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:6
|
1407 |
+
msgid "Version 4"
|
1408 |
+
msgstr "Sürüm 4"
|
1409 |
+
|
1410 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:8
|
1411 |
+
msgid "Provide Instant Live Chat Support!"
|
1412 |
+
msgstr "Hızlı Canlı Sohbet Desteği Sağla!"
|
1413 |
+
|
1414 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:10
|
1415 |
+
msgid "How did you find us?"
|
1416 |
+
msgstr "Bize nasıl ulaştınız?"
|
1417 |
+
|
1418 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:15
|
1419 |
+
msgid "WordPress.org plugin repository "
|
1420 |
+
msgstr "WordPress.org eklenti havuzu"
|
1421 |
+
|
1422 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:18
|
1423 |
+
msgid "Search Term"
|
1424 |
+
msgstr "Terim Araması"
|
1425 |
+
|
1426 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:22
|
1427 |
+
msgid "Google or other search Engine"
|
1428 |
+
msgstr "Google ya da diğer arama Motoru"
|
1429 |
+
|
1430 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:28
|
1431 |
+
msgid "Friend recommendation"
|
1432 |
+
msgstr "Arkadaş tavsiyesi"
|
1433 |
+
|
1434 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:34
|
1435 |
+
msgid "Other"
|
1436 |
+
msgstr "Diğer"
|
1437 |
+
|
1438 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:38
|
1439 |
+
msgid "Please Explain"
|
1440 |
+
msgstr "Lütfen Açıklayın"
|
1441 |
+
|
1442 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:47
|
1443 |
+
msgid "Submit"
|
1444 |
+
msgstr "Gönder"
|
1445 |
+
|
1446 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/includes/welcome_page.php:49
|
1447 |
+
msgid "Skip"
|
1448 |
+
msgstr "Vazgeç"
|
1449 |
+
|
1450 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:270
|
1451 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1324
|
1452 |
+
msgid "Please click \\'Start Chat\\' to initiate a chat with an agent"
|
1453 |
+
msgstr "Bir temsilciyle sohbet etmek için lütfen \\'Sohbet Başlat\\' tıklayınız."
|
1454 |
+
|
1455 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:498
|
1456 |
+
msgid "Start Live Chat"
|
1457 |
+
msgstr "Canlı Sohbet Başlat"
|
1458 |
+
|
1459 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:712
|
1460 |
+
msgid "New chat received"
|
1461 |
+
msgstr "Yeni sohbet alındı"
|
1462 |
+
|
1463 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:714
|
1464 |
+
msgid "A new chat has been received. Please go the 'Live Chat' page to accept the chat"
|
1465 |
+
msgstr "Yeni bir sohbet alındı. Lütfen sohbeti kabul etmek için 'Canlı Sohbet' sayfasına gidiniz"
|
1466 |
+
|
1467 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:872
|
1468 |
+
msgid "You are using an outdated version of <strong>WP Live Chat Support Pro</strong>. Please"
|
1469 |
+
msgstr "<strong>WP Canlı Sohbet Destek Pro</strong> eski sürümünü kullanıyorsunuz. Lütfen"
|
1470 |
+
|
1471 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:873
|
1472 |
+
msgid ""
|
1473 |
+
"You're live chat box on your website has been temporarily disabled until the Pro plugin has been updated. This is to ensure a smooth and hassle-free "
|
1474 |
+
"user experience for both yourself and your visitors."
|
1475 |
+
msgstr ""
|
1476 |
+
"Pro eklenti güncellenene kadar sitenizdeki canlı sohbet kutusu geçici bir süreliğine kapatılacaktır. Bu hem siz hem de ziyaretçileriniz için sorunsuz "
|
1477 |
+
"bir kullanıcı tecrübesi yaşatmayı garantilemek içindir."
|
1478 |
+
|
1479 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:874
|
1480 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:894
|
1481 |
+
msgid ""
|
1482 |
+
"You can update your plugin <a href='./update-core.php'>here</a>, <a href='./plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1483 |
+
"version/' target='_BLANK'>here</a>."
|
1484 |
+
msgstr ""
|
1485 |
+
"Eklentinizi güncelleyebilirsiniz <a href='./update-core.php'>here</a>, <a href='./plugins.php'>here</a> or <a href='http://wp-livechat.com/get-updated-"
|
1486 |
+
"version/' target='_BLANK'>here</a>."
|
1487 |
+
|
1488 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:887
|
1489 |
+
msgid "You are using an outdated version of <strong>WP Live Chat Support Pro</strong>."
|
1490 |
+
msgstr "<strong>WP Canlı Sohbet Destek Pro</strong> eski sürümünü kullanıyorsunuz. "
|
1491 |
+
|
1492 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:889
|
1493 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro"
|
1494 |
+
msgstr "Lütfen WP Canlı Sohbet destek Pro en son sürümüne yükseltiniz"
|
1495 |
+
|
1496 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:890
|
1497 |
+
msgid "Version 4.4.5"
|
1498 |
+
msgstr "Sürüm 4.4.5"
|
1499 |
+
|
1500 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:891
|
1501 |
+
msgid "to take advantage of chat window transitions and colour schemes."
|
1502 |
+
msgstr "sohbet penceresi geçişleri ve renk çizelgelerinden faydalanmak için."
|
1503 |
+
|
1504 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:918
|
1505 |
+
msgid "Experiencing problems with the plugin?"
|
1506 |
+
msgstr "Eklenti ile ilgili zorluk mu yaşıyorsunuz?"
|
1507 |
+
|
1508 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:920
|
1509 |
+
msgid "Review the documentation."
|
1510 |
+
msgstr "Belgelemeye bakınız."
|
1511 |
+
|
1512 |
+
# Reade me / line 11
|
1513 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:921
|
1514 |
+
msgid "Or ask a question on our"
|
1515 |
+
msgstr "Ya da soru sorunuz "
|
1516 |
+
|
1517 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:921
|
1518 |
+
msgid "Support forum."
|
1519 |
+
msgstr "Destek forumu."
|
1520 |
+
|
1521 |
+
# Read me / liine 12
|
1522 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:947
|
1523 |
+
msgid "With the Pro add-on of WP Live Chat Support, you can"
|
1524 |
+
msgstr "WP Canlı Sohbet Destek Pro eklentisi ile, "
|
1525 |
+
|
1526 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:948
|
1527 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:949
|
1528 |
+
msgid "see who's online and initiate chats"
|
1529 |
+
msgstr "kim çevrimiçi görebilir ve sohbet başlatabilirsiniz"
|
1530 |
+
|
1531 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:950
|
1532 |
+
msgid "with your online visitors with the click of a button."
|
1533 |
+
msgstr "çevrimiçi ziyaretçileriniz ile tek bir tıkla."
|
1534 |
+
|
1535 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:951
|
1536 |
+
msgid "Buy the Pro add-on now for only $19.95. Free Updates FOREVER."
|
1537 |
+
msgstr "Pro eklentisini şimdi sadece $19.95. LİMİTSİZ bedava güncelleme ile."
|
1538 |
+
|
1539 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:953
|
1540 |
+
msgid "Buy the Pro add-on now for only $19.95. Free Updates Forever."
|
1541 |
+
msgstr "Pro eklentisini şimdi sadece $19.95. Limitsiz Bedava Güncelleme ile."
|
1542 |
+
|
1543 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1005
|
1544 |
+
msgid "Previous"
|
1545 |
+
msgstr "Önceki"
|
1546 |
+
|
1547 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1007
|
1548 |
+
msgid "Active"
|
1549 |
+
msgstr "Aktif"
|
1550 |
+
|
1551 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1016
|
1552 |
+
msgid "Chat with"
|
1553 |
+
msgstr "...... ile sohbet edin"
|
1554 |
+
|
1555 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1053
|
1556 |
+
msgid "Add Quick Responses to your Live Chat"
|
1557 |
+
msgstr "Canlı sohbetinize Hızlı Yanıtlar ekleyin"
|
1558 |
+
|
1559 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1053
|
1560 |
+
msgid "Pro version only"
|
1561 |
+
msgstr "Sadece Pro sürümü"
|
1562 |
+
|
1563 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1064
|
1564 |
+
msgid "type here..."
|
1565 |
+
msgstr "buraya yazın..."
|
1566 |
+
|
1567 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1445
|
1568 |
+
msgid "WP Live Chat History"
|
1569 |
+
msgstr "WP Canlı Sohbet Geçmişi"
|
1570 |
+
|
1571 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1452
|
1572 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1472
|
1573 |
+
msgid "This option is only available in the "
|
1574 |
+
msgstr "Bu seçenek sadece ........... bulunabilir"
|
1575 |
+
|
1576 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1452
|
1577 |
+
msgid "Get it now for only $19.95"
|
1578 |
+
msgstr "Şimdi sadece 19.95 dolara sahip olun"
|
1579 |
+
|
1580 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1457
|
1581 |
+
msgid "WP Live Chat Missed Chats"
|
1582 |
+
msgstr "WP Canlı Sohbet Cevapsız Sohbetler"
|
1583 |
+
|
1584 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1464
|
1585 |
+
msgid "WP Live Chat Offline Messages"
|
1586 |
+
msgstr "WP Canlı Sohbet Çevrimdışı Mesajlar"
|
1587 |
+
|
1588 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1469
|
1589 |
+
msgid "Please update to the latest version of WP Live Chat Support Pro to start recording any offline messages."
|
1590 |
+
msgstr "Çevrimdışı mesajları kaydedebilmek için lütfen WP Canlı Sohbet Destek Pro son sürümüne yükseltiniz. "
|
1591 |
+
|
1592 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1472
|
1593 |
+
msgid "Get it now for only $19.95."
|
1594 |
+
msgstr "Şimdi sadece 19.95 dolara sahip olun"
|
1595 |
+
|
1596 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1562
|
1597 |
+
msgid "Thank You for your feedback!"
|
1598 |
+
msgstr "Geribildiriminiz için teşekkür ederiz."
|
1599 |
+
|
1600 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1566
|
1601 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1579
|
1602 |
+
msgid "Thank you for your feedback. We will be in touch soon"
|
1603 |
+
msgstr "Geribildiriminiz için teşekkür ederiz. Sizinle yakında iletişime geçeceğiz."
|
1604 |
+
|
1605 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1582
|
1606 |
+
msgid "There was a problem sending your feedback. Please log your feedback on "
|
1607 |
+
msgstr "Geribildirimini göndermede sorun yaşandı. Lütfen geribildiriminizi giriniz"
|
1608 |
+
|
1609 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1615
|
1610 |
+
msgid ""
|
1611 |
+
"WPLC: set_time_limit() is not enabled on this server. You may experience issues while using WP Live Chat Support as a result of this. Please get in "
|
1612 |
+
"contact your host to get this function enabled."
|
1613 |
+
msgstr ""
|
1614 |
+
"WPLC: set_time_limit() bu sunucuda kullanılamıyor. Bu yüzden WP Canlı Sohbet Desteğini kullanırken sorun yaşayabilirsiniz. Bu durumu gidermek için "
|
1615 |
+
"sunucunuzla iletişim kurunuz."
|
1616 |
+
|
1617 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1621
|
1618 |
+
msgid ""
|
1619 |
+
"WPLC: Safe mode is enabled on this server. You may experience issues while using WP Live Chat Support as a result of this. Please contact your host to "
|
1620 |
+
"get safe mode disabled."
|
1621 |
+
msgstr ""
|
1622 |
+
"WPLC: Güvenli mod bu sunucuda kullanılabilir. Bu yüzden WP Canlı Sohbet Desteğini kullanırken sorun yaşayabilirsiniz. Güvenli modu kapatmak için "
|
1623 |
+
"sunucunuzla iletişim kurunuz."
|
1624 |
+
|
1625 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1633
|
1626 |
+
msgid "WP Live Chat Support"
|
1627 |
+
msgstr "WP Canlı Sohbet Destek"
|
1628 |
+
|
1629 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1636
|
1630 |
+
msgid "Documentation"
|
1631 |
+
msgstr "Belgeleme"
|
1632 |
+
|
1633 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1638
|
1634 |
+
msgid "Getting started? Read through some of these articles to help you along your way."
|
1635 |
+
msgstr "Başlıyor muyuz? Size yardımcı olması için bu makaleleri okuyabilirsiniz."
|
1636 |
+
|
1637 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1639
|
1638 |
+
msgid "Documentation:"
|
1639 |
+
msgstr "Belgeleme:"
|
1640 |
+
|
1641 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1641
|
1642 |
+
msgid "Installing the WP Live Chat Support Pro add-on"
|
1643 |
+
msgstr "WP Canlı Sohbet Destek Pro eklentisini yüklüyor"
|
1644 |
+
|
1645 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1642
|
1646 |
+
msgid "Running the WP Live Chat Support plugin for the first time (Pro)"
|
1647 |
+
msgstr "WP Canlı Sohbet (Pro) eklentisi ilk kez başlatılıyor"
|
1648 |
+
|
1649 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1643
|
1650 |
+
msgid "Upgrading your licence (Pro)"
|
1651 |
+
msgstr "(Pro) Lisansınız yükseltiliyor "
|
1652 |
+
|
1653 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1644
|
1654 |
+
msgid "Minimum System Requirements"
|
1655 |
+
msgstr "Minimum Sistem Gereksinimleri"
|
1656 |
+
|
1657 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1646
|
1658 |
+
msgid "FAQ's:"
|
1659 |
+
msgstr "SSS"
|
1660 |
+
|
1661 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1648
|
1662 |
+
msgid "How do I check for JavaScript errors on my site?"
|
1663 |
+
msgstr "Sitemdeki JavaScript hatalarını nasıl kontrol edebilirim?"
|
1664 |
+
|
1665 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1649
|
1666 |
+
msgid "What are Quick Responses?"
|
1667 |
+
msgstr "Hızlı Yanıtlar nelerdir?"
|
1668 |
+
|
1669 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1650
|
1670 |
+
msgid "Can I use this plugin on my multi-site?"
|
1671 |
+
msgstr "Bu eklentiyi farklı sitelerimde kullanabilir miyim?"
|
1672 |
+
|
1673 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1651
|
1674 |
+
msgid "How do I disable APC Object Cache?"
|
1675 |
+
msgstr "APC Nesne Önbelleği nasıl kapatabilirim?"
|
1676 |
+
|
1677 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1652
|
1678 |
+
msgid "Do you have a mobile app?"
|
1679 |
+
msgstr "Mobil uygulamanız var mı?"
|
1680 |
+
|
1681 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1653
|
1682 |
+
msgid "Do I have to be logged into the dashboard to chat with visitors?"
|
1683 |
+
msgstr "Ziyaretçilerle sohbet edebilmek için gösterge paneline bağlanmalı mıyım?"
|
1684 |
+
|
1685 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1657
|
1686 |
+
msgid "Troubleshooting"
|
1687 |
+
msgstr "Sorun Giderme"
|
1688 |
+
|
1689 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1659
|
1690 |
+
msgid ""
|
1691 |
+
"WP Live Chat Support Pro has a diverse and wide range of features which may, from time to time, run into conflicts with the thousands of themes and "
|
1692 |
+
"other plugins on the market."
|
1693 |
+
msgstr ""
|
1694 |
+
"WP Canlı Sohbet Destek Pro geniş ve farklı özelliklere sahiptir. Bu sebeple zaman zaman pazardaki binlerce tema ve diğer eklentilerin dosyalarıyla "
|
1695 |
+
"çakışmalar olabilmektedir."
|
1696 |
+
|
1697 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1660
|
1698 |
+
msgid "Common issues:"
|
1699 |
+
msgstr "Genel Problemler"
|
1700 |
+
|
1701 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1662
|
1702 |
+
msgid "The chat box doesnt show up"
|
1703 |
+
msgstr "Sohbet kutusu belirmedi"
|
1704 |
+
|
1705 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1663
|
1706 |
+
msgid "The chat window disappears when I logout or go offline"
|
1707 |
+
msgstr "Sohbet penceresi ben çıkış yaptığımda ya da çevrimdışı olduğumda kayboluyor"
|
1708 |
+
|
1709 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1665
|
1710 |
+
msgid "Messages only show when I refresh the chat window"
|
1711 |
+
msgstr "Mesajlar sadece ben sohbet penceresini yenilediğimde görünüyor"
|
1712 |
+
|
1713 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1666
|
1714 |
+
msgid "I'm not getting any notifications of a new chat"
|
1715 |
+
msgstr "Yeni sohbet bildirimlerinden hiçbirini alamıyorum"
|
1716 |
+
|
1717 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1667
|
1718 |
+
msgid "The chat window never goes offline"
|
1719 |
+
msgstr "Sohbet penceresi hiçbir zaman çevrimdışı olmuyor"
|
1720 |
+
|
1721 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1673
|
1722 |
+
msgid "Still need help? Use one of these links below."
|
1723 |
+
msgstr "Çözüm bulamadınız mı? Lütfen aşağıdaki linklere göz atınız."
|
1724 |
+
|
1725 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1675
|
1726 |
+
msgid "Support forum"
|
1727 |
+
msgstr "Destek forumu"
|
1728 |
+
|
1729 |
+
#: C:\wamp\www\wordpress\wp-content\plugins\wp-live-chat-support/wp-live-chat-support.php:1676
|
1730 |
+
msgid "Contact us"
|
1731 |
+
msgstr "Bize Ulaşın"
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Tested up to: 4.2.2
|
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2
|
9 |
|
10 |
-
Fully functional Live Chat plugin. Chat with your visitors for free! No need for
|
11 |
|
12 |
== Description ==
|
13 |
|
@@ -104,6 +104,7 @@ Get a free copy of the WP Live Chat Support Pro version in exchange for translat
|
|
104 |
* Finnish (Arttu Piipponen)
|
105 |
* Dutch (Niek Groot Bleumink)
|
106 |
* Polish (Sebastian Kajzer)
|
|
|
107 |
* Chinese - Simplified^
|
108 |
* Chinese - Traditional^
|
109 |
|
@@ -182,6 +183,13 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
182 |
|
183 |
== Changelog ==
|
184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
= 4.4.1 - 2015-07-09 - Critical Priority =
|
186 |
* Further security enhancements
|
187 |
|
@@ -373,4 +381,107 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
373 |
* Added Welcome Page
|
374 |
* Fixed Visitor pending forever - Now Shown a message that admin is away
|
375 |
* Fixed many small bugs
|
376 |
-
* Added Multiple Live Chat Agents support (Add On)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2
|
9 |
|
10 |
+
Fully functional Live Chat plugin. Chat with your visitors for free! No need for monthly payments. Add live chat support to your site now.
|
11 |
|
12 |
== Description ==
|
13 |
|
104 |
* Finnish (Arttu Piipponen)
|
105 |
* Dutch (Niek Groot Bleumink)
|
106 |
* Polish (Sebastian Kajzer)
|
107 |
+
* Turkish (Yavuz Aksu)
|
108 |
* Chinese - Simplified^
|
109 |
* Chinese - Traditional^
|
110 |
|
183 |
|
184 |
== Changelog ==
|
185 |
|
186 |
+
= 4.4.2 - 2015-07-13 - Low Priority =
|
187 |
+
* Improvement: Gravatar images will load on sites using SSL without any issues
|
188 |
+
* Improvement: Hungarian live chat translation file name fixed
|
189 |
+
* Improvement: Styling improvements on the live chat dashboard
|
190 |
+
* New Translations:
|
191 |
+
* Turkish (Thank you Yavuz Aksu)
|
192 |
+
|
193 |
= 4.4.1 - 2015-07-09 - Critical Priority =
|
194 |
* Further security enhancements
|
195 |
|
381 |
* Added Welcome Page
|
382 |
* Fixed Visitor pending forever - Now Shown a message that admin is away
|
383 |
* Fixed many small bugs
|
384 |
+
* Added Multiple Live Chat Agents support (Add On)
|
385 |
+
|
386 |
+
= 3.08 =
|
387 |
+
|
388 |
+
* Fixed Languages not been translated
|
389 |
+
* Fixed 500 Error from ajax call
|
390 |
+
* Email validation bug fixed
|
391 |
+
|
392 |
+
= 3.07 =
|
393 |
+
|
394 |
+
* Fixed height issues with input boxes
|
395 |
+
* Fixed Input that was showing half over chat area
|
396 |
+
* Fixed Endless Connecting
|
397 |
+
|
398 |
+
= 3.06 =
|
399 |
+
|
400 |
+
* Fixed Placeholder text not showing in input on IE
|
401 |
+
|
402 |
+
= 3.05 =
|
403 |
+
|
404 |
+
* Low priority update
|
405 |
+
|
406 |
+
= 3.04 =
|
407 |
+
|
408 |
+
* Fixed Close & Minimixe Button Styling Issues
|
409 |
+
* Fixed bug where text was not hidden when offline message was sent
|
410 |
+
* Fixed bug that would hide text behind image if text was 2 lines
|
411 |
+
* Fixed bug that continuesly scrolled chat down
|
412 |
+
* Fixed styling of inputs on some themes (overlaps chat box)
|
413 |
+
* Set CSS color for inputs
|
414 |
+
* Fixed bug that wasn't alerting admin in wp-admin to chat if Alert via email was set (Pro)
|
415 |
+
* Fixed Double opening bug if chat was moved
|
416 |
+
* Fixed Bug to inform admin and user either or has ended the chat
|
417 |
+
* Fixed other small bugs
|
418 |
+
|
419 |
+
= 3.03 =
|
420 |
+
|
421 |
+
* Fixed Text Area CSS Bug
|
422 |
+
|
423 |
+
= 3.02 =
|
424 |
+
|
425 |
+
* Fixed CSS Box Border Issue
|
426 |
+
|
427 |
+
= 3.01 =
|
428 |
+
|
429 |
+
* Fixed CSS bug with icons
|
430 |
+
* Fixed CSS bug with inputs
|
431 |
+
|
432 |
+
= 3.0 =
|
433 |
+
* Improved chat UI
|
434 |
+
* Chat Box is draggable
|
435 |
+
|
436 |
+
= 2.9 =
|
437 |
+
* Added comprehensive documentation
|
438 |
+
|
439 |
+
= 2.8 =
|
440 |
+
* Fixed bug that stopped dynamic css loading in some themes
|
441 |
+
|
442 |
+
= 2.7 =
|
443 |
+
* Fixed the live chat initiation bug
|
444 |
+
* Fixed the style bug
|
445 |
+
* Added support to email for proper smtp (pro)
|
446 |
+
* Fixed cookie bugs
|
447 |
+
* Add delete live chat history option (pro)
|
448 |
+
* Added UTF8 character support for the live chat
|
449 |
+
* Added error reporting (pro)
|
450 |
+
|
451 |
+
= 2.6 =
|
452 |
+
* Fixed a bug that showed 'page not found' when saving the live chat settings
|
453 |
+
* Better UI
|
454 |
+
* Added the ability to end live chats
|
455 |
+
|
456 |
+
= 2.5 =
|
457 |
+
* Major performance improvements
|
458 |
+
* Small UI improvements
|
459 |
+
|
460 |
+
= 2.4 =
|
461 |
+
* You now have full control of the fill and font color of your live chat box
|
462 |
+
* Added the ability to turn live chat on and off
|
463 |
+
* Better notification of incoming live chats.
|
464 |
+
* Added more localization support
|
465 |
+
* Plugin should now be compatible with caching plugins.
|
466 |
+
|
467 |
+
= 2.3 =
|
468 |
+
* Fixed another small bug
|
469 |
+
|
470 |
+
= 2.2 =
|
471 |
+
* Fixed a small bug
|
472 |
+
|
473 |
+
= 2.1 =
|
474 |
+
* More precise functionality to handle if you are online or offline
|
475 |
+
* Fixed a bug that recorded visitors when offline
|
476 |
+
* Neatened up some code
|
477 |
+
* Fixed some small bugs
|
478 |
+
|
479 |
+
= 2.0 =
|
480 |
+
* Bug fixes
|
481 |
+
* Better front-end UI (Basic + Pro)
|
482 |
+
* You can now get an email notification when a visitor wants to chat (Pro)
|
483 |
+
* Allow your visitors to leave messages when you are offline (Pro)
|
484 |
+
* More text fields can be customized
|
485 |
+
|
486 |
+
= 1.0 =
|
487 |
+
* Launch!
|
wp-live-chat-support.php
CHANGED
@@ -3,13 +3,20 @@
|
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
-
Version: 4.4.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
-
/* 4.4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
* Major security update. Please ensure you update to this version to eliminate previous vulnerabilities.
|
14 |
*
|
15 |
* 4.3.5 Espresso - 2015-07-03 - Low Priority
|
@@ -210,7 +217,7 @@ global $wplc_tblname_chats;
|
|
210 |
global $wplc_tblname_msgs;
|
211 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
212 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
213 |
-
$wplc_version = "4.4.
|
214 |
|
215 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
216 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
@@ -385,7 +392,7 @@ function wplc_draw_user_box() {
|
|
385 |
}
|
386 |
|
387 |
if ($wplc_user_gravatar != "") {
|
388 |
-
$wplc_grav_image = "<img src='
|
389 |
} else {
|
390 |
$wplc_grav_image = "";
|
391 |
}
|
@@ -939,32 +946,34 @@ function wplc_admin_menu_layout_display() {
|
|
939 |
|
940 |
<p><?php _e("Please note: This window must be open in order to receive new chat notifications.", "wplivechat"); ?></p>
|
941 |
</div>
|
|
|
942 |
<div id="wplc_sound"></div>
|
943 |
|
944 |
<div class="wplc_admin_dashboard_container">
|
945 |
-
<div id="wplc_sound"></div>
|
946 |
<div id="wplc_admin_chat_area">
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
</div>
|
955 |
<div id="wplc_admin_visitor_area">
|
956 |
-
<
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
<?php _e("see who's online and initiate chats", "wplivechat"); ?>
|
961 |
-
|
962 |
-
|
963 |
-
<
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
|
|
|
|
968 |
</div>
|
969 |
</div>
|
970 |
|
@@ -1034,7 +1043,7 @@ function wplc_draw_chat_area($cid) {
|
|
1034 |
|
1035 |
echo"<div class='admin_chat_box'><div class='admin_chat_box_inner' id='admin_chat_box_area_" . $result->id . "'>" . wplc_return_chat_messages($cid) . "</div><div class='admin_chat_box_inner_bottom'>" . wplc_return_chat_response_box($cid) . "</div></div>";
|
1036 |
echo "<div class='admin_visitor_info'>";
|
1037 |
-
echo " <div style='float:left; width:100px;'><img src=\"
|
1038 |
echo " <div style='float:left;'>";
|
1039 |
|
1040 |
echo " <div class='admin_visitor_info_box1'>";
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
+
Version: 4.4.2
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* 4.4.2 - 2015-07-13 - Low Priority
|
13 |
+
* Improvement: Gravatar images will load on sites using SSL without any issues
|
14 |
+
* Improvement: Hungarian live chat translation file name fixed
|
15 |
+
* Improvement: Styling improvements on the live chat dashboard
|
16 |
+
* New Translations:
|
17 |
+
* Turkish (Thank you Yavuz Aksu)
|
18 |
+
*
|
19 |
+
* 4.4.1 - 2015-07-08 - Critical Priority
|
20 |
* Major security update. Please ensure you update to this version to eliminate previous vulnerabilities.
|
21 |
*
|
22 |
* 4.3.5 Espresso - 2015-07-03 - Low Priority
|
217 |
global $wplc_tblname_msgs;
|
218 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
219 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
220 |
+
$wplc_version = "4.4.02";
|
221 |
|
222 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
223 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
392 |
}
|
393 |
|
394 |
if ($wplc_user_gravatar != "") {
|
395 |
+
$wplc_grav_image = "<img src='//www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
|
396 |
} else {
|
397 |
$wplc_grav_image = "";
|
398 |
}
|
946 |
|
947 |
<p><?php _e("Please note: This window must be open in order to receive new chat notifications.", "wplivechat"); ?></p>
|
948 |
</div>
|
949 |
+
|
950 |
<div id="wplc_sound"></div>
|
951 |
|
952 |
<div class="wplc_admin_dashboard_container">
|
|
|
953 |
<div id="wplc_admin_chat_area">
|
954 |
+
<?php
|
955 |
+
if (function_exists("wplc_register_pro_version")) {
|
956 |
+
echo wplc_list_chats_pro();
|
957 |
+
} else {
|
958 |
+
echo wplc_list_chats();
|
959 |
+
}
|
960 |
+
?>
|
961 |
</div>
|
962 |
<div id="wplc_admin_visitor_area">
|
963 |
+
<div class="wplc_visitor_container">
|
964 |
+
<h1><?php _e("Visitors on site", "wplivechat") ?></h1>
|
965 |
+
<p>
|
966 |
+
<?php _e("With the Pro add-on of WP Live Chat Support, you can", "wplivechat"); ?>
|
967 |
+
<a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate1" title="<?php _e("see who's online and initiate chats", "wplivechat"); ?>" target=\"_BLANK\">
|
968 |
+
<?php _e("see who's online and initiate chats", "wplivechat"); ?>
|
969 |
+
</a> <?php _e("with your online visitors with the click of a button.", "wplivechat"); ?>
|
970 |
+
<a href="http://www.wp-livechat.com/purchase-pro/?utm_source=plugin&utm_medium=link&utm_campaign=initiate2" title="<?php _e("Buy the Pro add-on now for only $19.95. Free Updates FOREVER.", "wplivechat"); ?>" target=\"_BLANK\">
|
971 |
+
<strong>
|
972 |
+
<?php _e("Buy the Pro add-on now for only $19.95.", "wplivechat"); ?>
|
973 |
+
</strong>
|
974 |
+
</a>
|
975 |
+
</p>
|
976 |
+
</div>
|
977 |
</div>
|
978 |
</div>
|
979 |
|
1043 |
|
1044 |
echo"<div class='admin_chat_box'><div class='admin_chat_box_inner' id='admin_chat_box_area_" . $result->id . "'>" . wplc_return_chat_messages($cid) . "</div><div class='admin_chat_box_inner_bottom'>" . wplc_return_chat_response_box($cid) . "</div></div>";
|
1045 |
echo "<div class='admin_visitor_info'>";
|
1046 |
+
echo " <div style='float:left; width:100px;'><img src=\"//www.gravatar.com/avatar/" . md5($result->email) . "\" class=\"admin_chat_img\" /></div>";
|
1047 |
echo " <div style='float:left;'>";
|
1048 |
|
1049 |
echo " <div class='admin_visitor_info_box1'>";
|