mirror of
https://github.com/Mibew/i18n.git
synced 2025-02-02 17:44:42 +03:00
Fix HTML attributes markup
This commit is contained in:
parent
621f5951c4
commit
0f86f558ec
@ -234,8 +234,8 @@ function check_sound()
|
|||||||
|
|
||||||
$page['soundcheck'] = true;
|
$page['soundcheck'] = true;
|
||||||
$page['done'][] = getlocal2("install.5.text", array(
|
$page['done'][] = getlocal2("install.5.text", array(
|
||||||
"<a id='check-nv' href='javascript:void(0)'>" . getlocal("install.5.newvisitor") . "</a>",
|
"<a id=\"check-nv\" href=\"javascript:void(0)\">" . getlocal("install.5.newvisitor") . "</a>",
|
||||||
"<a id='check-nm' href='javascript:void(0)'>" . getlocal("install.5.newmessage") . "</a>"
|
"<a id=\"check-nm\" href=\"javascript:void(0)\">" . getlocal("install.5.newmessage") . "</a>"
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
Copyright (c) 2005-2013 Mibew Messenger Community
|
Copyright (c) 2005-2013 Mibew Messenger Community
|
||||||
License: http://mibew.org/license.php
|
License: http://mibew.org/license.php
|
||||||
*/
|
*/
|
||||||
var FrameUtils={getDocument:function(a){return a.contentDocument?a.contentDocument:a.contentWindow?a.contentWindow.document:a.document?a.document:null},initFrame:function(a){var b=this.getDocument(a);b.open();b.write("<html><head>");b.write('<link rel="stylesheet" type="text/css" media="all" href="'+Chat.cssfile+'">');b.write("</head><body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400'>");b.write("<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message' id='content'></td></tr></table><a id='bottom' name='bottom'></a>");
|
var FrameUtils={getDocument:function(a){return a.contentDocument?a.contentDocument:a.contentWindow?a.contentWindow.document:a.document?a.document:null},initFrame:function(a){var b=this.getDocument(a);b.open();b.write("<html><head>");b.write('<link rel="stylesheet" type="text/css" media="all" href="'+Chat.cssfile+'">');b.write('</head><body bgcolor="#FFFFFF" text=#000000" link="#C28400" vlink="#C28400" alink="#C28400">');b.write('<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td valign="top" class="message" id="content"></td></tr></table><a id="bottom" name="bottom"></a>');
|
||||||
b.write("</body></html>");b.close();a.onload=function(){a.myHtml&&(FrameUtils.getDocument(a).getElementById("content").innerHTML+=a.myHtml,FrameUtils.scrollDown(a))}},insertIntoFrame:function(a,b){var c=this.getDocument(a).getElementById("content");null==c?(a.myHtml||(a.myHtml=""),a.myHtml+=b):c.innerHTML+=b},scrollDown:function(a){var b=this.getDocument(a).getElementById("bottom");if("opera"==myAgent)try{a.contentWindow.scrollTo(0,this.getDocument(a).getElementById("content").clientHeight)}catch(c){}b&&
|
b.write("</body></html>");b.close();a.onload=function(){a.myHtml&&(FrameUtils.getDocument(a).getElementById("content").innerHTML+=a.myHtml,FrameUtils.scrollDown(a))}},insertIntoFrame:function(a,b){var c=this.getDocument(a).getElementById("content");null==c?(a.myHtml||(a.myHtml=""),a.myHtml+=b):c.innerHTML+=b},scrollDown:function(a){var b=this.getDocument(a).getElementById("bottom");if("opera"==myAgent)try{a.contentWindow.scrollTo(0,this.getDocument(a).getElementById("content").clientHeight)}catch(c){}b&&
|
||||||
b.scrollIntoView(!1)}};Ajax.ChatThreadUpdater=Class.create();
|
b.scrollIntoView(!1)}};Ajax.ChatThreadUpdater=Class.create();
|
||||||
Class.inherit(Ajax.ChatThreadUpdater,Ajax.Base,{initialize:function(a){this.setOptions(a);this._options.onComplete=this.requestComplete.bind(this);this._options.onException=this.handleException.bind(this);this._options.onTimeout=this.handleTimeout.bind(this);this._options.timeout=5E3;this.updater={};this.frequency=this._options.frequency||2;this.lastupdate=0;this.focused=this.skipNextsound=this.cansend=!0;this.ownThread=null!=this._options.message;FrameUtils.initFrame(this._options.container);this._options.message&&
|
Class.inherit(Ajax.ChatThreadUpdater,Ajax.Base,{initialize:function(a){this.setOptions(a);this._options.onComplete=this.requestComplete.bind(this);this._options.onException=this.handleException.bind(this);this._options.onTimeout=this.handleTimeout.bind(this);this._options.timeout=5E3;this.updater={};this.frequency=this._options.frequency||2;this.lastupdate=0;this.focused=this.skipNextsound=this.cansend=!0;this.ownThread=null!=this._options.message;FrameUtils.initFrame(this._options.container);this._options.message&&
|
||||||
|
@ -24,8 +24,8 @@ var FrameUtils = {
|
|||||||
doc.open();
|
doc.open();
|
||||||
doc.write("<html><head>");
|
doc.write("<html><head>");
|
||||||
doc.write("<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\""+Chat.cssfile+"\">");
|
doc.write("<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\""+Chat.cssfile+"\">");
|
||||||
doc.write("</head><body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400'>");
|
doc.write("</head><body bgcolor=\"#FFFFFF\" text=#000000\" link=\"#C28400\" vlink=\"#C28400\" alink=\"#C28400\">");
|
||||||
doc.write("<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message' id='content'></td></tr></table><a id='bottom' name='bottom'></a>");
|
doc.write("<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" class=\"message\" id=\"content\"></td></tr></table><a id=\"bottom\" name=\"bottom\"></a>");
|
||||||
doc.write("</body></html>");
|
doc.write("</body></html>");
|
||||||
doc.close();
|
doc.close();
|
||||||
frm.onload = function() {
|
frm.onload = function() {
|
||||||
|
@ -95,8 +95,8 @@ function message_to_html($msg)
|
|||||||
$message = "<span>" . date("H:i:s", $msg['created']) . "</span> ";
|
$message = "<span>" . date("H:i:s", $msg['created']) . "</span> ";
|
||||||
$kind = $kind_to_string{$msg['ikind']};
|
$kind = $kind_to_string{$msg['ikind']};
|
||||||
if ($msg['tname'])
|
if ($msg['tname'])
|
||||||
$message .= "<span class='n$kind'>" . htmlspecialchars($msg['tname']) . "</span>: ";
|
$message .= "<span class=\"n$kind\">" . htmlspecialchars($msg['tname']) . "</span>: ";
|
||||||
$message .= "<span class='m$kind'>" . prepare_html_message($msg['tmessage']) . "</span><br/>";
|
$message .= "<span class=\"m$kind\">" . prepare_html_message($msg['tmessage']) . "</span><br/>";
|
||||||
return $message;
|
return $message;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,15 +186,15 @@ function print_thread_messages($thread, $token, $lastid, $isuser, $format, $agen
|
|||||||
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
|
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
|
||||||
"<title>chat</title>\n" .
|
"<title>chat</title>\n" .
|
||||||
"</head>\n" .
|
"</head>\n" .
|
||||||
"<body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400' onload=\"if( location.hash != '#aend' ){location.hash='#aend';}\">" .
|
"<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#C28400\" vlink=\"#C28400\" alink=\"#C28400\" onload=\"if( location.hash != '#aend' ){location.hash='#aend';}\">" .
|
||||||
"<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message'>");
|
"<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" class=\"message\">");
|
||||||
|
|
||||||
foreach ($output as $msg) {
|
foreach ($output as $msg) {
|
||||||
print $msg;
|
print $msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
print(
|
print(
|
||||||
"</td></tr></table><a name='aend'></a>" .
|
"</td></tr></table><a name=\"aend\"></a>" .
|
||||||
"</body></html>");
|
"</body></html>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -715,7 +715,7 @@ function print_csrf_token_input()
|
|||||||
{
|
{
|
||||||
setcsrftoken();
|
setcsrftoken();
|
||||||
|
|
||||||
echo "<input name='csrf_token' type='hidden' value='" . $_SESSION['csrf_token'] . "' />\n";
|
echo "<input name=\"csrf_token\" type=\"hidden\" value=\"" . $_SESSION['csrf_token'] . "\" />\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* print csrf token in url format */
|
/* print csrf token in url format */
|
||||||
|
@ -46,8 +46,8 @@ function demo_process_thread($act, $outformat, $lastid, $isuser, $canpost, $isty
|
|||||||
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
|
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n" .
|
||||||
"<title>chat</title>\n" .
|
"<title>chat</title>\n" .
|
||||||
"</head>\n" .
|
"</head>\n" .
|
||||||
"<body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400'>" .
|
"<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#C28400\" vlink=\"#C28400\" alink=\"#C28400\">" .
|
||||||
"<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message'>");
|
"<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" class=\"message\">");
|
||||||
|
|
||||||
}
|
}
|
||||||
if ($lastid == 1) {
|
if ($lastid == 1) {
|
||||||
@ -81,7 +81,7 @@ function demo_process_thread($act, $outformat, $lastid, $isuser, $canpost, $isty
|
|||||||
print("</thread>");
|
print("</thread>");
|
||||||
} else {
|
} else {
|
||||||
print(
|
print(
|
||||||
"</td></tr></table><a name='aend'></a>" .
|
"</td></tr></table><a name=\"aend\"></a>" .
|
||||||
"</body></html>");
|
"</body></html>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ function generate_pagination($pagination, $bottom = true)
|
|||||||
} else {
|
} else {
|
||||||
$result .= "<br/>";
|
$result .= "<br/>";
|
||||||
}
|
}
|
||||||
$result .= "<div class='pagination'>";
|
$result .= "<div class=\"pagination\">";
|
||||||
$curr_page = $pagination['page'];
|
$curr_page = $pagination['page'];
|
||||||
|
|
||||||
$minPage = max($curr_page - $links_on_page, 1);
|
$minPage = max($curr_page - $links_on_page, 1);
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=محادثة زائر
|
|||||||
clients.queue.prio=طابر أفضلية الزوار
|
clients.queue.prio=طابر أفضلية الزوار
|
||||||
clients.queue.wait=ينتظر مقدم اخدمة من بداية الوقت
|
clients.queue.wait=ينتظر مقدم اخدمة من بداية الوقت
|
||||||
clients.title=قائمة الزوار المنتظرين
|
clients.title=قائمة الزوار المنتظرين
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - حقل إلزامي
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - حقل إلزامي
|
||||||
company.title=Mibew Messenger مجموعة
|
company.title=Mibew Messenger مجموعة
|
||||||
confirm.take.head=تغيير مقدم الخدمة
|
confirm.take.head=تغيير مقدم الخدمة
|
||||||
confirm.take.message=الزائر <span style="color:blue;">{0}</span> يتحادث مع مقدم الخدمة<span style="color:green;">{1}</span>.<br/>هل ترغب في بدأ المحادثة مع الزائر؟
|
confirm.take.message=الزائر <span style="color:blue;">{0}</span> يتحادث مع مقدم الخدمة<span style="color:green;">{1}</span>.<br/>هل ترغب في بدأ المحادثة مع الزائر؟
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=
|
|||||||
clients.queue.prio=Ïðûÿðûòýòíàÿ ÷àðãà íàâåäâàëüí³êà¢
|
clients.queue.prio=Ïðûÿðûòýòíàÿ ÷àðãà íàâåäâàëüí³êà¢
|
||||||
clients.queue.wait=×àêàþöü àïåðàòàðà ¢ ïåðøû ðàç
|
clients.queue.wait=×àêàþöü àïåðàòàðà ¢ ïåðøû ðàç
|
||||||
clients.title=Ñï³ñ íàâåäâàëüí³êà¢, ÿê³ÿ ÷àêàþöü
|
clients.title=Ñï³ñ íàâåäâàëüí³êà¢, ÿê³ÿ ÷àêàþöü
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - ïàë³, àáàâÿçêîâûÿ äëÿ çàïà¢íåííÿ
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - ïàë³, àáàâÿçêîâûÿ äëÿ çàïà¢íåííÿ
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Çìÿí³öü àïåðàòàðà
|
confirm.take.head=Çìÿí³öü àïåðàòàðà
|
||||||
confirm.take.message=Ç íàâåäâàëüí³êàì <span style="color:blue;">{0}</span> óæî ãóòàðûöü <span style="color:green;">{1}</span>.<br/>Âû ¢ïý¢íåíû øòî æàäàåöå çìÿí³öü ÿãî?
|
confirm.take.message=Ç íàâåäâàëüí³êàì <span style="color:blue;">{0}</span> óæî ãóòàðûöü <span style="color:green;">{1}</span>.<br/>Âû ¢ïý¢íåíû øòî æàäàåöå çìÿí³öü ÿãî?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=
|
|||||||
clients.queue.prio=Ïðåâèëèãåðîâàíè î÷àêâàùè ïîñåòèòåëè
|
clients.queue.prio=Ïðåâèëèãåðîâàíè î÷àêâàùè ïîñåòèòåëè
|
||||||
clients.queue.wait=Î÷àêâàùè îïåðàòîð çà ïúðâè ïúò
|
clients.queue.wait=Î÷àêâàùè îïåðàòîð çà ïúðâè ïúò
|
||||||
clients.title=Ñïèñúê ñ î÷àêâàùè ïîñåòèòåëè
|
clients.title=Ñïèñúê ñ î÷àêâàùè ïîñåòèòåëè
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - çàäúëæèòåëíè ïîëåòà
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - çàäúëæèòåëíè ïîëåòà
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Ñìÿíà íà îïåðàòîð
|
confirm.take.head=Ñìÿíà íà îïåðàòîð
|
||||||
confirm.take.message=Ñ ïîñåòèòåëÿò <span style="color:blue;">{0}</span> âå÷å ãîâîðè <span style="color:green;">{1}</span>.<br/>Âèå ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî ñìåíèòå?
|
confirm.take.message=Ñ ïîñåòèòåëÿò <span style="color:blue;">{0}</span> âå÷å ãîâîðè <span style="color:green;">{1}</span>.<br/>Âèå ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî ñìåíèòå?
|
||||||
|
@ -95,7 +95,7 @@ clients.queue.chat=Visitant dialogant
|
|||||||
clients.queue.prio=Visitant amb prioritat per a atenció
|
clients.queue.prio=Visitant amb prioritat per a atenció
|
||||||
clients.queue.wait=Esperant operador per primera vegada
|
clients.queue.wait=Esperant operador per primera vegada
|
||||||
clients.title=Llista de visitants en espera
|
clients.title=Llista de visitants en espera
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - camps obligatoris
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - camps obligatoris
|
||||||
company.title=Mibew Messenger Comunitat
|
company.title=Mibew Messenger Comunitat
|
||||||
confirm.take.head=Canviar operador
|
confirm.take.head=Canviar operador
|
||||||
confirm.take.message=Visitant <span style="color:blue;">{0}</span> és actualment servit per <span style="color:green;">{1}</span>.<br/>Està vostè segur que vol iniciar conversa amb els visitants?
|
confirm.take.message=Visitant <span style="color:blue;">{0}</span> és actualment servit per <span style="color:green;">{1}</span>.<br/>Està vostè segur que vol iniciar conversa amb els visitants?
|
||||||
|
@ -70,7 +70,7 @@ chat.window.title.user=Mibew Messenger
|
|||||||
chat.window.toolbar.mail_history=Odeslat záznam chatu e-mailem
|
chat.window.toolbar.mail_history=Odeslat záznam chatu e-mailem
|
||||||
chat.window.toolbar.redirect_user=Přesměrovat návštěvníka na jiného operátora
|
chat.window.toolbar.redirect_user=Přesměrovat návštěvníka na jiného operátora
|
||||||
chat.window.toolbar.refresh=Aktualizovat
|
chat.window.toolbar.refresh=Aktualizovat
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - povinné položky
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - povinné položky
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Změna operátora
|
confirm.take.head=Změna operátora
|
||||||
confirm.take.message=Návštěvníkovi <span style="color:blue;">{0}</span> se již věnuje <span style="color:green;">{1}</span>.<br/> Jste si jisti, že chcete zahájit chat s návštěvníkem?
|
confirm.take.message=Návštěvníkovi <span style="color:blue;">{0}</span> se již věnuje <span style="color:green;">{1}</span>.<br/> Jste si jisti, že chcete zahájit chat s návštěvníkem?
|
||||||
|
@ -97,7 +97,7 @@ clients.no_clients=Der er ingen i kø
|
|||||||
clients.queue.prio=Prioritér kø
|
clients.queue.prio=Prioritér kø
|
||||||
clients.queue.wait=Venter på en supporter for første gang
|
clients.queue.wait=Venter på en supporter for første gang
|
||||||
clients.title=Liste over besøgende der venter
|
clients.title=Liste over besøgende der venter
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - påkrævede felter
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - påkrævede felter
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Vælg ny supporter
|
confirm.take.head=Vælg ny supporter
|
||||||
confirm.take.message=Besøgende <span style="color:blue;">{0}</span> bliver allerede hjulpet af <span style="color:green;">{1}</span>.<br/> Er du sikker på, at du vil igangsætte endnu en chat session?
|
confirm.take.message=Besøgende <span style="color:blue;">{0}</span> bliver allerede hjulpet af <span style="color:green;">{1}</span>.<br/> Er du sikker på, at du vil igangsætte endnu en chat session?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Επισκέπτες σε συνομιλίες
|
|||||||
clients.queue.prio=Επισκέπτες στην ουρά προτεραιότητας
|
clients.queue.prio=Επισκέπτες στην ουρά προτεραιότητας
|
||||||
clients.queue.wait=Αναμονή για το χειριστή για πρώτη φορά
|
clients.queue.wait=Αναμονή για το χειριστή για πρώτη φορά
|
||||||
clients.title=Κατάλογος των εν αναμονή επισκεπτών
|
clients.title=Κατάλογος των εν αναμονή επισκεπτών
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - υποχρεωτικά πεδία
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - υποχρεωτικά πεδία
|
||||||
company.title=Κοινότητα Συνομιλητή Mibew
|
company.title=Κοινότητα Συνομιλητή Mibew
|
||||||
confirm.take.head=Αλλαγή χειριστή
|
confirm.take.head=Αλλαγή χειριστή
|
||||||
confirm.take.message=Ο Επισκέπτης <span style="color:blue;">{0}</span> βοηθιέται ήδη από τον <span style="color:green;">{1}</span>.<br/> Είστε πραγματικά σίγουροι ότι θέλετε να αρχίσετε να μιλάτε με τον επισκέπτη?
|
confirm.take.message=Ο Επισκέπτης <span style="color:blue;">{0}</span> βοηθιέται ήδη από τον <span style="color:green;">{1}</span>.<br/> Είστε πραγματικά σίγουροι ότι θέλετε να αρχίσετε να μιλάτε με τον επισκέπτη?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Visitors in dialogs
|
|||||||
clients.queue.prio=Priority visitors' queue
|
clients.queue.prio=Priority visitors' queue
|
||||||
clients.queue.wait=Waiting an operator for the first time
|
clients.queue.wait=Waiting an operator for the first time
|
||||||
clients.title=List of visitors waiting
|
clients.title=List of visitors waiting
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - mandatory fields
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - mandatory fields
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Change operator
|
confirm.take.head=Change operator
|
||||||
confirm.take.message=Visitor <span style="color:blue;">{0}</span> is already being assisted by <span style="color:green;">{1}</span>.<br/> Are you really sure you want to start chatting the visitor?
|
confirm.take.message=Visitor <span style="color:blue;">{0}</span> is already being assisted by <span style="color:green;">{1}</span>.<br/> Are you really sure you want to start chatting the visitor?
|
||||||
|
@ -91,7 +91,7 @@ clients.queue.chat=אורחים בשיחות
|
|||||||
clients.queue.prio=רשימת אורחים מועדפים
|
clients.queue.prio=רשימת אורחים מועדפים
|
||||||
clients.queue.wait=ממתינים לראשונה לנציג
|
clients.queue.wait=ממתינים לראשונה לנציג
|
||||||
clients.title=רשימת אורחים ממתינים
|
clients.title=רשימת אורחים ממתינים
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - שדות חושה למילוי
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - שדות חושה למילוי
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=להחליף נציג
|
confirm.take.head=להחליף נציג
|
||||||
confirm.take.message=Visitor <span style="color:blue;">{0}</span> נמצא כבר בשיחה <span style="color:green;">{1}</span>.<br/> האם אתה בטוח שברצונך, להחליף את הנציג?
|
confirm.take.message=Visitor <span style="color:blue;">{0}</span> נמצא כבר בשיחה <span style="color:green;">{1}</span>.<br/> האם אתה בטוח שברצונך, להחליף את הנציג?
|
||||||
|
@ -91,7 +91,7 @@ clients.queue.chat=Posjetitelji u razgovorima
|
|||||||
clients.queue.prio=Prioritetni red čekanja posjetitelja
|
clients.queue.prio=Prioritetni red čekanja posjetitelja
|
||||||
clients.queue.wait=Čekanje na operatora po prvi put
|
clients.queue.wait=Čekanje na operatora po prvi put
|
||||||
clients.title=Lista posjetitelja koji čekaju
|
clients.title=Lista posjetitelja koji čekaju
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - obavezna polja
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - obavezna polja
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Promijeni operatora
|
confirm.take.head=Promijeni operatora
|
||||||
confirm.take.message=Posjetitelju <span style="color:blue;">{0}</span> već pomaže <span style="color:green;">{1}</span>.<br/> Jeste li sigurni da želite započeti razgovor sa posjetiteljem?
|
confirm.take.message=Posjetitelju <span style="color:blue;">{0}</span> već pomaže <span style="color:green;">{1}</span>.<br/> Jeste li sigurni da želite započeti razgovor sa posjetiteljem?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Ügyfelek beszélgetésben
|
|||||||
clients.queue.prio=Elsőbbségben lévő ügyfelek listája
|
clients.queue.prio=Elsőbbségben lévő ügyfelek listája
|
||||||
clients.queue.wait=Először várakoznak operátorra
|
clients.queue.wait=Először várakoznak operátorra
|
||||||
clients.title=Várakozó ügyfelek listája
|
clients.title=Várakozó ügyfelek listája
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - kötelező mező
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - kötelező mező
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Operátor váltása
|
confirm.take.head=Operátor váltása
|
||||||
confirm.take.message=Az ügyfélnek<span style="color:blue;">{0}</span>már segít <span style="color:green;">{1}</span>.<br/> Biztos vagy benne, hogy beszélni akarsz az ügyféllel?
|
confirm.take.message=Az ügyfélnek<span style="color:blue;">{0}</span>már segít <span style="color:green;">{1}</span>.<br/> Biztos vagy benne, hogy beszélni akarsz az ügyféllel?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Pengunjung dalam dialog
|
|||||||
clients.queue.prio=Prioritas antrian pengunjung
|
clients.queue.prio=Prioritas antrian pengunjung
|
||||||
clients.queue.wait=Menunggu operator untuk pertama kalinya
|
clients.queue.wait=Menunggu operator untuk pertama kalinya
|
||||||
clients.title=Daftar menunggu pengunjung
|
clients.title=Daftar menunggu pengunjung
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - wajib diisi
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - wajib diisi
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Ubah operator
|
confirm.take.head=Ubah operator
|
||||||
confirm.take.message=Pengunjung <span style="color:blue;">{0}</span> telah dibantu oleh <span style="color:green;">{1}</span>.<br/> Apakah Anda benar-benar yakin ingin memulai chatting pengunjung?
|
confirm.take.message=Pengunjung <span style="color:blue;">{0}</span> telah dibantu oleh <span style="color:green;">{1}</span>.<br/> Apakah Anda benar-benar yakin ingin memulai chatting pengunjung?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Visitatori in chat
|
|||||||
clients.queue.prio=Coda visitatori per priorità
|
clients.queue.prio=Coda visitatori per priorità
|
||||||
clients.queue.wait=In attesa di operatore per la prima volta
|
clients.queue.wait=In attesa di operatore per la prima volta
|
||||||
clients.title=Lista dei visitatori in attesa
|
clients.title=Lista dei visitatori in attesa
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - campi obbligatori
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - campi obbligatori
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Cambia operatore
|
confirm.take.head=Cambia operatore
|
||||||
confirm.take.message=Il visitatore <span style="color:blue;">{0}</span> è già assistito da <span style="color:green;">{1}</span>.<br/> Sei sicuro di voler iniziare una chat con lui/lei?
|
confirm.take.message=Il visitatore <span style="color:blue;">{0}</span> è già assistito da <span style="color:green;">{1}</span>.<br/> Sei sicuro di voler iniziare una chat con lui/lei?
|
||||||
|
@ -101,7 +101,7 @@ clients.queue.chat=სტუმრები დიალოგებში
|
|||||||
clients.queue.prio=პრიორიტეტული სტუმართა რიგი
|
clients.queue.prio=პრიორიტეტული სტუმართა რიგი
|
||||||
clients.queue.wait=ველოდები ოპერატორს პირველად
|
clients.queue.wait=ველოდები ოპერატორს პირველად
|
||||||
clients.title=მოლოდინში მყოფი სტუმრების სია
|
clients.title=მოლოდინში მყოფი სტუმრების სია
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> -სავალდებულო ველები
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> -სავალდებულო ველები
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=ოპერატორის შეცვლა
|
confirm.take.head=ოპერატორის შეცვლა
|
||||||
confirm.take.message=Visitor <span style="color:blue;">{0}</span> already assisted by <span style="color:green;">{1}</span>.<br/>დარწმუნებული ხართ რომ გსურთ სტუმართან დიალოგის დაწყება?
|
confirm.take.message=Visitor <span style="color:blue;">{0}</span> already assisted by <span style="color:green;">{1}</span>.<br/>დარწმუნებული ხართ რომ გსურთ სტუმართან დიალოგის დაწყება?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Bezoekers in gesprek
|
|||||||
clients.queue.prio=Voorrang wachtrij
|
clients.queue.prio=Voorrang wachtrij
|
||||||
clients.queue.wait=Voor het eerst wachtend op een medewerker
|
clients.queue.wait=Voor het eerst wachtend op een medewerker
|
||||||
clients.title=Lijst van wachtende bezoekers
|
clients.title=Lijst van wachtende bezoekers
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - verplichte velden
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - verplichte velden
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Wissel van medewerker
|
confirm.take.head=Wissel van medewerker
|
||||||
confirm.take.message=Bezoeker <span style="color:blue;">{0}</span> wordt al geholpen door <span style="color:green;">{1}</span>.<br/> Weet u zeker dat u met deze bezoeker wilt gaan chatten?
|
confirm.take.message=Bezoeker <span style="color:blue;">{0}</span> wordt al geholpen door <span style="color:green;">{1}</span>.<br/> Weet u zeker dat u met deze bezoeker wilt gaan chatten?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Użytkownicy w trakcie rozmowy
|
|||||||
clients.queue.prio=Kolejka oczekujących użytkowników
|
clients.queue.prio=Kolejka oczekujących użytkowników
|
||||||
clients.queue.wait=Osoby oczekujące po raz pierwszy na rozmowę
|
clients.queue.wait=Osoby oczekujące po raz pierwszy na rozmowę
|
||||||
clients.title=Lista oczekujących użytkowników
|
clients.title=Lista oczekujących użytkowników
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - pola wymagane
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - pola wymagane
|
||||||
company.title=Społecznośc Mibew Komunikatora
|
company.title=Społecznośc Mibew Komunikatora
|
||||||
confirm.take.head=Zmień Operatora
|
confirm.take.head=Zmień Operatora
|
||||||
confirm.take.message=Użytkownik <span style="color:blue;">{0}</span> jest już obsługiwany przez <span style="color:green;">{1}</span>.<br/> Na pewno chcesz rozpocząć rozmowę z tym użytkownikiem?
|
confirm.take.message=Użytkownik <span style="color:blue;">{0}</span> jest już obsługiwany przez <span style="color:green;">{1}</span>.<br/> Na pewno chcesz rozpocząć rozmowę z tym użytkownikiem?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Visitantes no chat
|
|||||||
clients.queue.prio=Fila de prioridade para visitantes
|
clients.queue.prio=Fila de prioridade para visitantes
|
||||||
clients.queue.wait=Esperando um operador
|
clients.queue.wait=Esperando um operador
|
||||||
clients.title=Lista de visitantes em espera
|
clients.title=Lista de visitantes em espera
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - Campos obrigatórios
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - Campos obrigatórios
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Mudar o operador
|
confirm.take.head=Mudar o operador
|
||||||
confirm.take.message=O visitante <span style="color:blue;">{0}</span> já está sendo atendido <span style="color:green;">{1}</span>.<br/> Você tem certeza que quer entrar no chat?
|
confirm.take.message=O visitante <span style="color:blue;">{0}</span> já está sendo atendido <span style="color:green;">{1}</span>.<br/> Você tem certeza que quer entrar no chat?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Visitantes em chat
|
|||||||
clients.queue.prio=Fila de prioridade de visitantes
|
clients.queue.prio=Fila de prioridade de visitantes
|
||||||
clients.queue.wait=Aguarde por um operador
|
clients.queue.wait=Aguarde por um operador
|
||||||
clients.title=Lista de visitantes em espera
|
clients.title=Lista de visitantes em espera
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - campos obrigatórios
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - campos obrigatórios
|
||||||
company.title=Comunidade Mibew Messenger
|
company.title=Comunidade Mibew Messenger
|
||||||
confirm.take.head=Mudar de operador
|
confirm.take.head=Mudar de operador
|
||||||
confirm.take.message=O visitante <span style="color:blue;">{0}</span> já está atendido <span style="color:green;">{1}</span>.<br/> Tem certeza que quer entrar no chat?
|
confirm.take.message=O visitante <span style="color:blue;">{0}</span> já está atendido <span style="color:green;">{1}</span>.<br/> Tem certeza que quer entrar no chat?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Vizitatori in convorbire
|
|||||||
clients.queue.prio=Rindul vizitatoriloe de prioritate
|
clients.queue.prio=Rindul vizitatoriloe de prioritate
|
||||||
clients.queue.wait=Asteptam operatorul pentru prima data
|
clients.queue.wait=Asteptam operatorul pentru prima data
|
||||||
clients.title=Lista vizitatorilor in asteptare
|
clients.title=Lista vizitatorilor in asteptare
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - domenii obligatorii
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - domenii obligatorii
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Schimbati operatorul
|
confirm.take.head=Schimbati operatorul
|
||||||
confirm.take.message=Vizitatorul <span style="color:blue;">{0}</span> deja este asistat de <span style="color:green;">{1}</span>.<br/>. Sunteti sigur ca vreti sa incepeti chat cu vizitatorul?
|
confirm.take.message=Vizitatorul <span style="color:blue;">{0}</span> deja este asistat de <span style="color:green;">{1}</span>.<br/>. Sunteti sigur ca vreti sa incepeti chat cu vizitatorul?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=
|
|||||||
clients.queue.prio=Ïðèîðèòåòíàÿ î÷åðåäü ïîñåòèòåëåé
|
clients.queue.prio=Ïðèîðèòåòíàÿ î÷åðåäü ïîñåòèòåëåé
|
||||||
clients.queue.wait=Îæèäàþùèå îïåðàòîðà â ïåðâûé ðàç
|
clients.queue.wait=Îæèäàþùèå îïåðàòîðà â ïåðâûé ðàç
|
||||||
clients.title=Ñïèñîê îæèäàþùèõ ïîñåòèòåëåé
|
clients.title=Ñïèñîê îæèäàþùèõ ïîñåòèòåëåé
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - ïîëÿ, îáÿçàòåëüíûå äëÿ çàïîëíåíèÿ
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - ïîëÿ, îáÿçàòåëüíûå äëÿ çàïîëíåíèÿ
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Ñìåíèòü îïåðàòîðà
|
confirm.take.head=Ñìåíèòü îïåðàòîðà
|
||||||
confirm.take.message=Ñ ïîñåòèòåëåì <span style="color:blue;">{0}</span> óæå îáùàåòñÿ <span style="color:green;">{1}</span>.<br/>Âû óâåðåíû ÷òî õîòèòå ñìåíèòü åãî?
|
confirm.take.message=Ñ ïîñåòèòåëåì <span style="color:blue;">{0}</span> óæå îáùàåòñÿ <span style="color:green;">{1}</span>.<br/>Âû óâåðåíû ÷òî õîòèòå ñìåíèòü åãî?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Visitante dialogando
|
|||||||
clients.queue.prio=Visitante con prioridad para atención
|
clients.queue.prio=Visitante con prioridad para atención
|
||||||
clients.queue.wait=Esperando a operador por primera vez
|
clients.queue.wait=Esperando a operador por primera vez
|
||||||
clients.title=Lista de visitantes en espera
|
clients.title=Lista de visitantes en espera
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - campos obligatorios
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - campos obligatorios
|
||||||
company.title=Comunidad Mibew Messenger
|
company.title=Comunidad Mibew Messenger
|
||||||
confirm.take.head=Cambiar operador
|
confirm.take.head=Cambiar operador
|
||||||
confirm.take.message=Visitante <span style="color:blue;">{0}</span> es actualmente servido por<span style="color:green;">{1}</span>.<br/> Esta usted seguro que quiere iniciar conversación con los visitantes?
|
confirm.take.message=Visitante <span style="color:blue;">{0}</span> es actualmente servido por<span style="color:green;">{1}</span>.<br/> Esta usted seguro que quiere iniciar conversación con los visitantes?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Besökare som pratar med operatör
|
|||||||
clients.queue.prio=Besökarkö
|
clients.queue.prio=Besökarkö
|
||||||
clients.queue.wait=Väntar på operatör för första gången
|
clients.queue.wait=Väntar på operatör för första gången
|
||||||
clients.title=Lista över väntande besökare
|
clients.title=Lista över väntande besökare
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - Obligatoriska fält
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - Obligatoriska fält
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Byt operatör
|
confirm.take.head=Byt operatör
|
||||||
confirm.take.message=Besökare <span style="color:blue;">{0}</span> får redan hjälp av <span style="color:green;">{1}</span>.<br/> Är du säker på att du vill börja chatta med besökaren?
|
confirm.take.message=Besökare <span style="color:blue;">{0}</span> får redan hjälp av <span style="color:green;">{1}</span>.<br/> Är du säker på att du vill börja chatta med besökaren?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=ผู้เยี่ยมชมในการสนทน
|
|||||||
clients.queue.prio=ลำดับคิวของผู้เยี่ยมชมท่านต่างๆ
|
clients.queue.prio=ลำดับคิวของผู้เยี่ยมชมท่านต่างๆ
|
||||||
clients.queue.wait=กำลังรอโอเปอร์เรเตอร์เพื่อเริ่มการใช้งาน
|
clients.queue.wait=กำลังรอโอเปอร์เรเตอร์เพื่อเริ่มการใช้งาน
|
||||||
clients.title=รายชื่อผู้เยี่ยมชมที่กำลังรอ
|
clients.title=รายชื่อผู้เยี่ยมชมที่กำลังรอ
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - กรุณาระบุ
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - กรุณาระบุ
|
||||||
company.title=ชุมชนของMibew Messenger
|
company.title=ชุมชนของMibew Messenger
|
||||||
confirm.take.head=เปลี่ยนโอเปอร์เรเตอร์
|
confirm.take.head=เปลี่ยนโอเปอร์เรเตอร์
|
||||||
confirm.take.message=ผู้เยี่ยมชม <span style="color:blue;">{0}</span> ได้รับการช่วยเหลือจาก <span style="color:green;">{1}</span>.<br/> คุณต้องการที่จะเริ่มต้นการสนทนากับผู้เยี่ยมชมรายนี้หรือไม่?
|
confirm.take.message=ผู้เยี่ยมชม <span style="color:blue;">{0}</span> ได้รับการช่วยเหลือจาก <span style="color:green;">{1}</span>.<br/> คุณต้องการที่จะเริ่มต้นการสนทนากับผู้เยี่ยมชมรายนี้หรือไม่?
|
||||||
|
@ -99,7 +99,7 @@ clients.queue.chat=Görüşmedeki ziyaretçiler
|
|||||||
clients.queue.prio=Öncelikli ziyaretçiler sırası
|
clients.queue.prio=Öncelikli ziyaretçiler sırası
|
||||||
clients.queue.wait=Operatör için ilk defa bekliyor
|
clients.queue.wait=Operatör için ilk defa bekliyor
|
||||||
clients.title=Bekleyen ziyaretçiler listesi
|
clients.title=Bekleyen ziyaretçiler listesi
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - zorunlu sahalar
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - zorunlu sahalar
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Operatör değiştir
|
confirm.take.head=Operatör değiştir
|
||||||
confirm.take.message=Ziyaretçi <span style="color:blue;">{0}</span> zaten <span style="color:green;">{1}</span> ile görüşüyor.<br/> Bu ziyaretçi ile görüşme yapmak istediğinize emin misiniz?
|
confirm.take.message=Ziyaretçi <span style="color:blue;">{0}</span> zaten <span style="color:green;">{1}</span> ile görüşüyor.<br/> Bu ziyaretçi ile görüşme yapmak istediğinize emin misiniz?
|
||||||
|
@ -91,7 +91,7 @@ clients.queue.chat=³
|
|||||||
clients.queue.prio=Ïð³îðèòåòíà ÷åðãà â³äâ³äóâà÷³â
|
clients.queue.prio=Ïð³îðèòåòíà ÷åðãà â³äâ³äóâà÷³â
|
||||||
clients.queue.wait=³äâ³äóâà÷³, ùî î÷³êóþòü â³äïîâ³äü óïåðøå
|
clients.queue.wait=³äâ³äóâà÷³, ùî î÷³êóþòü â³äïîâ³äü óïåðøå
|
||||||
clients.title=Ñïèñîê â³äâ³äóâà÷³â, ùî î÷³êóþòü â³äïîâ³ä³
|
clients.title=Ñïèñîê â³äâ³äóâà÷³â, ùî î÷³êóþòü â³äïîâ³ä³
|
||||||
common.asterisk_explanation=<b><span style='font-size:8.0pt;color:red'>*</span></b> - ïîëÿ, îáîâ'ÿçêîâ³ äëÿ çàïîâíåííÿ
|
common.asterisk_explanation=<b><span style="font-size:8.0pt;color:red">*</span></b> - ïîëÿ, îáîâ'ÿçêîâ³ äëÿ çàïîâíåííÿ
|
||||||
company.title=Mibew Messenger Community
|
company.title=Mibew Messenger Community
|
||||||
confirm.take.head=Çì³íèòè îïåðàòîðà
|
confirm.take.head=Çì³íèòè îïåðàòîðà
|
||||||
confirm.take.message=Ç â³äâ³äóâà÷åì <span style="color:blue;">{0}</span> âæå ñï³ëêóºòñüÿ <span style="color:green;">{1}</span>.<br/>Âè âïåâíåí³, ùî õî÷åòå çàì³íèòè éîãî?
|
confirm.take.message=Ç â³äâ³äóâà÷åì <span style="color:blue;">{0}</span> âæå ñï³ëêóºòñüÿ <span style="color:green;">{1}</span>.<br/>Âè âïåâíåí³, ùî õî÷åòå çàì³íèòè éîãî?
|
||||||
|
@ -137,16 +137,16 @@ ${if:user}
|
|||||||
<div id="changename1" style="display:${page:displ1};">
|
<div id="changename1" style="display:${page:displ1};">
|
||||||
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
||||||
<td class="text" nowrap>${msg:chat.client.name}</td>
|
<td class="text" nowrap>${msg:chat.client.name}</td>
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="username"></td>
|
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="username"></td>
|
||||||
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage iexec" src="${webimroot}/images/free.gif" border="0" alt=">>" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage iexec" src="${webimroot}/images/free.gif" border="0" alt=">>" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
<div id="changename2" style="display:${page:displ2};">
|
<div id="changename2" style="display:${page:displ2};">
|
||||||
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
||||||
<td class="text" nowrap><a id="unamelink" href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}">${page:ct.user.name}</a></td>
|
<td class="text" nowrap><a id="unamelink" href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}">${page:ct.user.name}</a></td>
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage ichangeuser" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage ichangeuser" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
@ -158,7 +158,7 @@ ${if:user}
|
|||||||
${endif:canChangeName}
|
${endif:canChangeName}
|
||||||
${endif:user}
|
${endif:user}
|
||||||
${if:agent}
|
${if:agent}
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}">
|
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}">
|
||||||
<img class="tplimage iclose" src="${webimroot}/images/free.gif" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
<img class="tplimage iclose" src="${webimroot}/images/free.gif" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
||||||
${endif:agent}
|
${endif:agent}
|
||||||
@ -185,7 +185,7 @@ ${if:sslLink}
|
|||||||
<td><a href="${page:sslLink}&style=${styleid}" title="SSL" >
|
<td><a href="${page:sslLink}&style=${styleid}" title="SSL" >
|
||||||
<img class="tplimage issl" src="${webimroot}/images/free.gif" border="0" alt="SSL "/></a></td>
|
<img class="tplimage issl" src="${webimroot}/images/free.gif" border="0" alt="SSL "/></a></td>
|
||||||
${endif:sslLink}
|
${endif:sslLink}
|
||||||
<td width="20" valign="top"><img src='${webimroot}/images/free.gif' width="20" height="1" border="0" alt="" /></td>
|
<td width="20" valign="top"><img src="${webimroot}/images/free.gif" width="20" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -223,19 +223,19 @@ ${endif:sslLink}
|
|||||||
<td colspan="2" width="100%" height="100%" valign="top" id="chatwndtd">
|
<td colspan="2" width="100%" height="100%" valign="top" id="chatwndtd">
|
||||||
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%" height="100%" bgcolor="#FFFFFF" valign="top">
|
<td width="100%" height="100%" bgcolor="#FFFFFF" valign="top">
|
||||||
<iframe id="chatwnd" width="100%" height="100%" src="${if:neediframesrc}${webimroot}/images/blank.html${endif:neediframesrc}" frameborder="0" style="overflow:auto;">
|
<iframe id="chatwnd" width="100%" height="100%" src="${if:neediframesrc}${webimroot}/images/blank.html${endif:neediframesrc}" frameborder="0" style="overflow:auto;">
|
||||||
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
||||||
</iframe>
|
</iframe>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -304,9 +304,9 @@ ${endif:canpost}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
|
||||||
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src='${tplroot}/images/buttons/closewin.gif' width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -67,17 +67,17 @@
|
|||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
<td class="text" nowrap>${msg:chat.client.name}</td>
|
<td class="text" nowrap>${msg:chat.client.name}</td>
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="username"></td>
|
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="username"></td>
|
||||||
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src='${tplroot}/images/buttons/exec.gif' width="25" height="25" border="0" alt=">>" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src="${tplroot}/images/buttons/exec.gif" width="25" height="25" border="0" alt=">>" /></a></td>
|
||||||
|
|
||||||
<td><img src='${tplroot}/images/buttondiv.gif' width="35" height="45" border="0" alt="" /></td>
|
<td><img src="${tplroot}/images/buttondiv.gif" width="35" height="45" border="0" alt="" /></td>
|
||||||
|
|
||||||
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0'); if (this.newWindow != null) {this.newWindow.focus();this.newWindow.opener=window;}return false;"><img src='${tplroot}/images/buttons/email.gif' width="25" height="25" border="0" alt="Mail" /></a></td>
|
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0'); if (this.newWindow != null) {this.newWindow.focus();this.newWindow.opener=window;}return false;"><img src="${tplroot}/images/buttons/email.gif" width="25" height="25" border="0" alt="Mail" /></a></td>
|
||||||
|
|
||||||
<td><a id="refresh" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.toolbar.refresh}">
|
<td><a id="refresh" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.toolbar.refresh}">
|
||||||
<img src='${tplroot}/images/buttons/refresh.gif' width="25" height="25" border="0" alt="Refresh" /></a></td>
|
<img src="${tplroot}/images/buttons/refresh.gif" width="25" height="25" border="0" alt="Refresh" /></a></td>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -100,23 +100,23 @@
|
|||||||
|
|
||||||
<table width="585" cellspacing="0" cellpadding="0" border="0">
|
<table width="585" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.history}' width="20" height="80" border="0" alt="History" /></td>
|
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.history}" width="20" height="80" border="0" alt="History" /></td>
|
||||||
<td width="565" valign="top" id="chatwndtd">
|
<td width="565" valign="top" id="chatwndtd">
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%" bgcolor="#FFFFFF" valign="top">
|
<td width="100%" bgcolor="#FFFFFF" valign="top">
|
||||||
<iframe name="chatwndiframe" width="100%" height="175" src="${webimroot}/thread.php?act=refresh&thread=${page:ct.chatThreadId}&token=${page:ct.token}&html=on&user=true" frameborder="0" style="overflow:auto;">
|
<iframe name="chatwndiframe" width="100%" height="175" src="${webimroot}/thread.php?act=refresh&thread=${page:ct.chatThreadId}&token=${page:ct.token}&html=on&user=true" frameborder="0" style="overflow:auto;">
|
||||||
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
||||||
</iframe>
|
</iframe>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -127,14 +127,14 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.message}' width="20" height="85" border="0" alt="Message" /></td>
|
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.message}" width="20" height="85" border="0" alt="Message" /></td>
|
||||||
<td width="565" valign="top">
|
<td width="565" valign="top">
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="565" height="85" bgcolor="#FFFFFF" valign="top">
|
<td width="565" height="85" bgcolor="#FFFFFF" valign="top">
|
||||||
<form id="messageform" method="post" action="${webimroot}/thread.php" target="chatwndiframe">
|
<form id="messageform" method="post" action="${webimroot}/thread.php" target="chatwndiframe">
|
||||||
<input type="hidden" name="act" value="post"/><input type="hidden" name="html" value="on"/><input type="hidden" name="thread" value="${page:ct.chatThreadId}"/><input type="hidden" name="token" value="${page:ct.token}"/><input type="hidden" name="user" value="true"/>
|
<input type="hidden" name="act" value="post"/><input type="hidden" name="html" value="on"/><input type="hidden" name="thread" value="${page:ct.chatThreadId}"/><input type="hidden" name="token" value="${page:ct.token}"/><input type="hidden" name="user" value="true"/>
|
||||||
@ -142,10 +142,10 @@
|
|||||||
<textarea id="messagetext" cols="50" rows="4" class="message" style="width:550px;" tabindex="0"></textarea>
|
<textarea id="messagetext" cols="50" rows="4" class="message" style="width:550px;" tabindex="0"></textarea>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -174,12 +174,12 @@
|
|||||||
<table cellspacing="0" cellpadding="0" border="0" id="postmessage">
|
<table cellspacing="0" cellpadding="0" border="0" id="postmessage">
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submit.gif' width="40" height="35" border="0" alt=""/></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submit.gif" width="40" height="35" border="0" alt=""/></a></td>
|
||||||
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
|
||||||
<a id="msgsend1" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
|
<a id="msgsend1" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
|
||||||
</td>
|
</td>
|
||||||
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submitrest.gif' width="10" height="35" border="0" alt=""/></a></td>
|
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submitrest.gif" width="10" height="35" border="0" alt=""/></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -190,9 +190,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td width="585"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
|
<td width="585"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
|
||||||
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<td align="right" style="padding-right:17px;padding-left:17px;">
|
<td align="right" style="padding-right:17px;padding-left:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:chat.error_page.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:chat.error_page.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:chat.error_page.close}">${msg:chat.error_page.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:chat.error_page.close}">${msg:chat.error_page.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -81,7 +81,7 @@ ${if:formgroupid}<input type="hidden" name="group" value="${form:groupid}"/>${en
|
|||||||
<td align="right" style="padding-right:17px;">
|
<td align="right" style="padding-right:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:leavemessage.close}">${msg:leavemessage.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:leavemessage.close}">${msg:leavemessage.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -96,7 +96,7 @@ ${if:formgroupid}<input type="hidden" name="group" value="${form:groupid}"/>${en
|
|||||||
${if:errors}
|
${if:errors}
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"><img src='${webimroot}/images/icon_err.gif' width="40" height="40" border="0" alt="" /></td>
|
<td valign="top"><img src="${webimroot}/images/icon_err.gif" width="40" height="40" border="0" alt="" /></td>
|
||||||
<td width="10"></td>
|
<td width="10"></td>
|
||||||
<td class="text">
|
<td class="text">
|
||||||
${errors}
|
${errors}
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<td align="right" style="padding-right:17px;">
|
<td align="right" style="padding-right:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}">${msg:chat.mailthread.sent.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}">${msg:chat.mailthread.sent.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
${if:errors}
|
${if:errors}
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"><img src='${webimroot}/images/icon_err.gif' width="40" height="40" border="0" alt="" /></td>
|
<td valign="top"><img src="${webimroot}/images/icon_err.gif" width="40" height="40" border="0" alt="" /></td>
|
||||||
<td width="10"></td>
|
<td width="10"></td>
|
||||||
<td class="text">
|
<td class="text">
|
||||||
${errors}
|
${errors}
|
||||||
@ -93,7 +93,7 @@ ${endif:errors}
|
|||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:mailthread.close}"><img
|
<td><a href="javascript:window.close();" title="${msg:mailthread.close}"><img
|
||||||
src='${tplroot}/images/buttons/back.gif' width="25" height="25"
|
src="${tplroot}/images/buttons/back.gif" width="25" height="25"
|
||||||
border="0" alt="" /></a></td>
|
border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();"
|
<td class="button"><a href="javascript:window.close();"
|
||||||
@ -129,9 +129,9 @@ ${endif:errors}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<td align="right" style="padding-right:17px;">
|
<td align="right" style="padding-right:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}">${msg:chat.mailthread.sent.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:chat.mailthread.sent.close}">${msg:chat.mailthread.sent.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<td align="right" style="padding-right:17px;padding-left:17px;">
|
<td align="right" style="padding-right:17px;padding-left:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}">${msg:page.chat.old_browser.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:page.chat.old_browser.close}">${msg:page.chat.old_browser.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
<td align="right" style="padding-right:17px;">
|
<td align="right" style="padding-right:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:chat.redirect.back}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:chat.redirect.back}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.back();" title="${msg:chat.redirect.back}">${msg:chat.redirect.back}</a></td>
|
<td class="button"><a href="javascript:window.back();" title="${msg:chat.redirect.back}">${msg:chat.redirect.back}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<td align="right" style="padding-right:17px;">
|
<td align="right" style="padding-right:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:chat.redirected.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:chat.redirected.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:chat.redirected.close}">${msg:chat.redirected.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:chat.redirected.close}">${msg:chat.redirected.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -85,7 +85,7 @@ ${ifnot:showmessage}<input type="hidden" name="message" value="${form:message}"/
|
|||||||
<td align="right" style="padding-right:17px;">
|
<td align="right" style="padding-right:17px;">
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src='${tplroot}/images/buttons/back.gif' width="25" height="25" border="0" alt="" /></a></td>
|
<td><a href="javascript:window.close();" title="${msg:leavemessage.close}"><img src="${tplroot}/images/buttons/back.gif" width="25" height="25" border="0" alt="" /></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td class="button"><a href="javascript:window.close();" title="${msg:leavemessage.close}">${msg:leavemessage.close}</a></td>
|
<td class="button"><a href="javascript:window.close();" title="${msg:leavemessage.close}">${msg:leavemessage.close}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -100,7 +100,7 @@ ${ifnot:showmessage}<input type="hidden" name="message" value="${form:message}"/
|
|||||||
${if:errors}
|
${if:errors}
|
||||||
<table cellspacing="0" cellpadding="0" border="0">
|
<table cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"><img src='${webimroot}/images/icon_err.gif' width="40" height="40" border="0" alt="" /></td>
|
<td valign="top"><img src="${webimroot}/images/icon_err.gif" width="40" height="40" border="0" alt="" /></td>
|
||||||
<td width="10"></td>
|
<td width="10"></td>
|
||||||
<td class="text">
|
<td class="text">
|
||||||
${errors}
|
${errors}
|
||||||
|
@ -134,16 +134,16 @@ ${if:user}
|
|||||||
<div id="changename1" style="display:${page:displ1};">
|
<div id="changename1" style="display:${page:displ1};">
|
||||||
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
||||||
<td class="text" nowrap>${msg:chat.client.name}</td>
|
<td class="text" nowrap>${msg:chat.client.name}</td>
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
|
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
|
||||||
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage iexec" src="${webimroot}/images/free.gif" border="0" alt=">>" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage iexec" src="${webimroot}/images/free.gif" border="0" alt=">>" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
<div id="changename2" style="display:${page:displ2};">
|
<div id="changename2" style="display:${page:displ2};">
|
||||||
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
<table cellspacing="0" cellpadding="0" border="0"><tr>
|
||||||
<td class="text" nowrap><a id="unamelink" href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}">${page:ct.user.name}</a></td>
|
<td class="text" nowrap><a id="unamelink" href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}">${page:ct.user.name}</a></td>
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage ichangeuser" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img class="tplimage ichangeuser" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
@ -155,7 +155,7 @@ ${if:user}
|
|||||||
${endif:canChangeName}
|
${endif:canChangeName}
|
||||||
${endif:user}
|
${endif:user}
|
||||||
${if:agent}
|
${if:agent}
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}">
|
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}">
|
||||||
<img class="tplimage iclose" src="${webimroot}/images/free.gif" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
<img class="tplimage iclose" src="${webimroot}/images/free.gif" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
||||||
${endif:agent}
|
${endif:agent}
|
||||||
@ -182,7 +182,7 @@ ${if:sslLink}
|
|||||||
<td><a href="${page:sslLink}&style=${styleid}" title="SSL" >
|
<td><a href="${page:sslLink}&style=${styleid}" title="SSL" >
|
||||||
<img class="tplimage issl" src="${webimroot}/images/free.gif" border="0" alt="SSL "/></a></td>
|
<img class="tplimage issl" src="${webimroot}/images/free.gif" border="0" alt="SSL "/></a></td>
|
||||||
${endif:sslLink}
|
${endif:sslLink}
|
||||||
<td width="20" valign="top"><img src='${webimroot}/images/free.gif' width="20" height="1" border="0" alt="" /></td>
|
<td width="20" valign="top"><img src="${webimroot}/images/free.gif" width="20" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@ -216,19 +216,19 @@ ${endif:sslLink}
|
|||||||
<td colspan="2" width="100%" height="100%" valign="top" id="chatwndtd">
|
<td colspan="2" width="100%" height="100%" valign="top" id="chatwndtd">
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0" style="height:100%;">
|
<table width="100%" cellspacing="0" cellpadding="0" border="0" style="height:100%;">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%" height="100%" bgcolor="#FFFFFF" valign="top">
|
<td width="100%" height="100%" bgcolor="#FFFFFF" valign="top">
|
||||||
<iframe id="chatwnd" width="100%" height="100%" src="${if:neediframesrc}${webimroot}/images/blank.html${endif:neediframesrc}" frameborder="0" style="overflow:auto;">
|
<iframe id="chatwnd" width="100%" height="100%" src="${if:neediframesrc}${webimroot}/images/blank.html${endif:neediframesrc}" frameborder="0" style="overflow:auto;">
|
||||||
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
||||||
</iframe>
|
</iframe>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -289,7 +289,7 @@ ${if:canpost}
|
|||||||
|
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
||||||
<td style="background-image: url(${webimroot}/images/submitbg.gif);" valign="top" class="submit">
|
<td style="background-image: url(${webimroot}/images/submitbg.gif);" valign="top" class="submit">
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
|
||||||
<a id="sndmessagelnk" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
|
<a id="sndmessagelnk" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
|
||||||
</td>
|
</td>
|
||||||
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt="" /></a></td>
|
||||||
@ -304,9 +304,9 @@ ${endif:canpost}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
|
||||||
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src='${tplroot}/images/buttons/closewin.gif' width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
<td><a class="closethread" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" width="15" height="15" border="0" alt="${msg:chat.window.close_title}"/></a></td>
|
||||||
<td width="5"></td>
|
<td width="5"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -67,17 +67,17 @@
|
|||||||
<tr>
|
<tr>
|
||||||
|
|
||||||
<td class="text" nowrap>${msg:chat.client.name}</td>
|
<td class="text" nowrap>${msg:chat.client.name}</td>
|
||||||
<td width="10" valign="top"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10" valign="top"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
|
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
|
||||||
<td width="5" valign="top"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5" valign="top"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src='${tplroot}/images/buttons/exec.gif' width="25" height="25" border="0" alt=">>" /></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.client.changename}"><img src="${tplroot}/images/buttons/exec.gif" width="25" height="25" border="0" alt=">>" /></a></td>
|
||||||
|
|
||||||
<td><img src='${tplroot}/images/buttondiv.gif' width="35" height="45" border="0" alt="" /></td>
|
<td><img src="${tplroot}/images/buttondiv.gif" width="35" height="45" border="0" alt="" /></td>
|
||||||
|
|
||||||
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src='${tplroot}/images/buttons/email.gif' width="25" height="25" border="0" alt="Mail" /></a></td>
|
<td><a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onclick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src="${tplroot}/images/buttons/email.gif" width="25" height="25" border="0" alt="Mail" /></a></td>
|
||||||
|
|
||||||
<td><a id="refresh" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.toolbar.refresh}">
|
<td><a id="refresh" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.toolbar.refresh}">
|
||||||
<img src='${tplroot}/images/buttons/refresh.gif' width="25" height="25" border="0" alt="Refresh" /></a></td>
|
<img src="${tplroot}/images/buttons/refresh.gif" width="25" height="25" border="0" alt="Refresh" /></a></td>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -100,23 +100,23 @@
|
|||||||
|
|
||||||
<table width="585" cellspacing="0" cellpadding="0" border="0">
|
<table width="585" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.history}' width="20" height="80" border="0" alt="History" /></td>
|
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.history}" width="20" height="80" border="0" alt="History" /></td>
|
||||||
<td width="565" valign="top" id="chatwndtd">
|
<td width="565" valign="top" id="chatwndtd">
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%" bgcolor="#FFFFFF" valign="top">
|
<td width="100%" bgcolor="#FFFFFF" valign="top">
|
||||||
<iframe name="chatwndiframe" width="100%" height="175" src="${webimroot}/thread.php?act=refresh&thread=${page:ct.chatThreadId}&token=${page:ct.token}&html=on&user=true" frameborder="0" style="overflow:auto;">
|
<iframe name="chatwndiframe" width="100%" height="175" src="${webimroot}/thread.php?act=refresh&thread=${page:ct.chatThreadId}&token=${page:ct.token}&html=on&user=true" frameborder="0" style="overflow:auto;">
|
||||||
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
Sorry, your browser does not support iframes; try a browser that supports W3 standards.
|
||||||
</iframe>
|
</iframe>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -127,14 +127,14 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20" valign="top"><img src='${webimroot}${url:image.chat.message}' width="20" height="85" border="0" alt="Message" /></td>
|
<td width="20" valign="top"><img src="${webimroot}${url:image.chat.message}" width="20" height="85" border="0" alt="Message" /></td>
|
||||||
<td width="565" valign="top">
|
<td width="565" valign="top">
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="565" height="85" bgcolor="#FFFFFF" valign="top">
|
<td width="565" height="85" bgcolor="#FFFFFF" valign="top">
|
||||||
<form id="messageform" method="post" action="${webimroot}/thread.php" target="chatwndiframe">
|
<form id="messageform" method="post" action="${webimroot}/thread.php" target="chatwndiframe">
|
||||||
<input type="hidden" name="act" value="post"/><input type="hidden" name="html" value="on"/><input type="hidden" name="thread" value="${page:ct.chatThreadId}"/><input type="hidden" name="token" value="${page:ct.token}"/><input type="hidden" name="user" value="true"/>
|
<input type="hidden" name="act" value="post"/><input type="hidden" name="html" value="on"/><input type="hidden" name="thread" value="${page:ct.chatThreadId}"/><input type="hidden" name="token" value="${page:ct.token}"/><input type="hidden" name="user" value="true"/>
|
||||||
@ -142,10 +142,10 @@
|
|||||||
<textarea id="messagetext" cols="50" rows="4" class="message" style="width:550px;" tabindex="0"></textarea>
|
<textarea id="messagetext" cols="50" rows="4" class="message" style="width:550px;" tabindex="0"></textarea>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" bgcolor="#A1A1A1"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td colspan="3" bgcolor="#A1A1A1"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -174,12 +174,12 @@
|
|||||||
<table cellspacing="0" cellpadding="0" border="0" id="postmessage">
|
<table cellspacing="0" cellpadding="0" border="0" id="postmessage">
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submit.gif' width="40" height="35" border="0" alt=""/></a></td>
|
<td><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submit.gif" width="40" height="35" border="0" alt=""/></a></td>
|
||||||
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
|
||||||
<a id="msgsend1" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
|
<a id="msgsend1" href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}">${msg:chat.window.send_message_short,send_shortcut}</a><br/>
|
||||||
</td>
|
</td>
|
||||||
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src='${webimroot}/images/submitrest.gif' width="10" height="35" border="0" alt=""/></a></td>
|
<td width="10"><a href="javascript:void(0)" onclick="return false;" title="${msg:chat.window.send_message}"><img src="${webimroot}/images/submitrest.gif" width="10" height="35" border="0" alt=""/></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
@ -190,9 +190,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="10"><img src='${webimroot}/images/free.gif' width="10" height="1" border="0" alt="" /></td>
|
<td width="10"><img src="${webimroot}/images/free.gif" width="10" height="1" border="0" alt="" /></td>
|
||||||
<td width="585"><img src='${webimroot}/images/free.gif' width="585" height="1" border="0" alt="" /></td>
|
<td width="585"><img src="${webimroot}/images/free.gif" width="585" height="1" border="0" alt="" /></td>
|
||||||
<td width="5"><img src='${webimroot}/images/free.gif' width="5" height="1" border="0" alt="" /></td>
|
<td width="5"><img src="${webimroot}/images/free.gif" width="5" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -38,17 +38,17 @@
|
|||||||
|
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr>
|
<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr>
|
||||||
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr><tr><td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
</tr><tr><td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
||||||
|
|
||||||
${harderrors}
|
${harderrors}
|
||||||
|
|
||||||
|
|
||||||
</td><td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
</td><td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr><tr><td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
</tr><tr><td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -80,9 +80,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ ${endif:showcaptcha}
|
|||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
<td><a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
||||||
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
|
||||||
<a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}">${msg:leavemessage.perform}</a><br/>
|
<a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}">${msg:leavemessage.perform}</a><br/>
|
||||||
</td>
|
</td>
|
||||||
<td width="10"><a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
<td width="10"><a href="javascript:document.leaveMessageForm.submit();" title="${msg:leavemessage.perform}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
||||||
@ -136,9 +136,9 @@ ${endif:showcaptcha}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -39,22 +39,22 @@
|
|||||||
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
||||||
|
|
||||||
${msg:leavemessage.sent.message}<br/>
|
${msg:leavemessage.sent.message}<br/>
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -86,9 +86,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ ${endif:errors}
|
|||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
<td><a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
||||||
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
|
||||||
<a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}">${msg:mailthread.perform}</a><br/>
|
<a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}">${msg:mailthread.perform}</a><br/>
|
||||||
</td>
|
</td>
|
||||||
<td width="10"><a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
<td width="10"><a href="javascript:document.mailThreadForm.submit();" title="${msg:mailthread.perform}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
||||||
@ -104,9 +104,9 @@ ${endif:errors}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -39,24 +39,24 @@
|
|||||||
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
||||||
|
|
||||||
${msg:chat.mailthread.sent.content,email}<br/>
|
${msg:chat.mailthread.sent.content,email}<br/>
|
||||||
<a href="javascript:window.close();">${msg:chat.mailthread.sent.closewindow}</a>
|
<a href="javascript:window.close();">${msg:chat.mailthread.sent.closewindow}</a>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -88,9 +88,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -37,17 +37,17 @@
|
|||||||
|
|
||||||
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0"><tr>
|
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0"><tr>
|
||||||
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr><tr><td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
</tr><tr><td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
||||||
|
|
||||||
${msg:page.chat.old_browser.problem}
|
${msg:page.chat.old_browser.problem}
|
||||||
${msg:page.chat.old_browser.list}
|
${msg:page.chat.old_browser.list}
|
||||||
|
|
||||||
</td><td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
</td><td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr><tr><td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
</tr><tr><td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -79,9 +79,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
<td width="50%" height="90" class="window"><h1>${msg:chat.redirect.title}</h1></td>
|
<td width="50%" height="90" class="window"><h1>${msg:chat.redirect.title}</h1></td>
|
||||||
<td width="50%" align="right" valign="bottom" class="window">
|
<td width="50%" align="right" valign="bottom" class="window">
|
||||||
<h2>${msg:chat.redirect.choose}</h2>
|
<h2>${msg:chat.redirect.choose}</h2>
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="5" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="5" border="0" alt="" /><br/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -48,12 +48,12 @@
|
|||||||
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
||||||
|
|
||||||
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" style="height:100%;" cellspacing="0" cellpadding="0" border="0">
|
||||||
@ -85,12 +85,12 @@ ${endif:redirectToGroup}
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -125,9 +125,9 @@ ${endif:redirectToGroup}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -39,24 +39,24 @@
|
|||||||
<table width="100%" style="height:100%" cellspacing="0" cellpadding="0" border="0">
|
<table width="100%" style="height:100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnlt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td width="100%" style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td width="15"><img class="tplimage icrnrt" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td height="100%" bgcolor="#FED840"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td height="100%" bgcolor="#FED840"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy">
|
||||||
|
|
||||||
${page:message}<br/>
|
${page:message}<br/>
|
||||||
<a href="javascript:window.close();">${msg:chat.redirected.closewindow}</a>
|
<a href="javascript:window.close();">${msg:chat.redirected.closewindow}</a>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="#E8A400"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td bgcolor="#E8A400"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnlb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src='${webimroot}/images/free.gif' width="1" height="1" border="0" alt="" /></td>
|
<td style="background-image: url(${tplroot}/images/winbg.gif)" class="bgcy"><img src="${webimroot}/images/free.gif" width="1" height="1" border="0" alt="" /></td>
|
||||||
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
<td><img class="tplimage icrnrb" src="${webimroot}/images/free.gif" border="0" alt=""/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -88,9 +88,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -134,7 +134,7 @@ ${endif:showcaptcha}
|
|||||||
<tr>
|
<tr>
|
||||||
<td><a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
<td><a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}"><img class="tplimage isubmit" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
||||||
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
<td style="background-image: url(${webimroot}/images/submitbg.gif)" valign="top" class="submit">
|
||||||
<img src='${webimroot}/images/free.gif' width="1" height="10" border="0" alt="" /><br/>
|
<img src="${webimroot}/images/free.gif" width="1" height="10" border="0" alt="" /><br/>
|
||||||
<a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}">${msg:presurvey.submit}</a><br/>
|
<a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}">${msg:presurvey.submit}</a><br/>
|
||||||
</td>
|
</td>
|
||||||
<td width="10"><a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
<td width="10"><a href="javascript:document.surveyForm.submit();" title="${msg:presurvey.submit}"><img class="tplimage isubmitrest" src="${webimroot}/images/free.gif" border="0" alt=""/></a></td>
|
||||||
@ -161,9 +161,9 @@ ${endif:showcaptcha}
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
<td width="100%"><img src='${webimroot}/images/free.gif' width="540" height="1" border="0" alt="" /></td>
|
<td width="100%"><img src="${webimroot}/images/free.gif" width="540" height="1" border="0" alt="" /></td>
|
||||||
<td width="30"><img src='${webimroot}/images/free.gif' width="30" height="1" border="0" alt="" /></td>
|
<td width="30"><img src="${webimroot}/images/free.gif" width="30" height="1" border="0" alt="" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<table cellpadding="0" cellspacing="5" border="0"><tr>
|
<table cellpadding="0" cellspacing="5" border="0"><tr>
|
||||||
<td class="text" nowrap>${msg:chat.client.name}</td>
|
<td class="text" nowrap>${msg:chat.client.name}</td>
|
||||||
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
|
<td><input id="uname" type="text" size="12" value="${page:ct.user.name}" class="field"></td>
|
||||||
<td><a href="javascript:void(0)" onClick="return false;" title="${msg:chat.client.changename}"><img src='${tplroot}/images/buttons/exec.gif' border="0" alt="${msg:chat.client.changename}" /></a></td>
|
<td><a href="javascript:void(0)" onClick="return false;" title="${msg:chat.client.changename}"><img src="${tplroot}/images/buttons/exec.gif" border="0" alt="${msg:chat.client.changename}" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
${else:canChangeName}
|
${else:canChangeName}
|
||||||
<table cellpadding="0" cellspacing="5" border="0"><tr><td>
|
<table cellpadding="0" cellspacing="5" border="0"><tr><td>
|
||||||
@ -28,10 +28,10 @@
|
|||||||
<td align="right">
|
<td align="right">
|
||||||
<table cellpadding="0" cellspacing="5" border="0"><tr>
|
<table cellpadding="0" cellspacing="5" border="0"><tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onClick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src='${tplroot}/images/buttons/email.gif' border="0" alt="${msg:chat.window.toolbar.mail_history}" /></a>
|
<a href="${page:mailLink}" target="_blank" title="${msg:chat.window.toolbar.mail_history}" onClick="this.newWindow = window.open('${page:mailLink}', 'ForwardMail', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,width=603,height=254,resizable=0');this.newWindow.focus();this.newWindow.opener=window;return false;"><img src="${tplroot}/images/buttons/email.gif" border="0" alt="${msg:chat.window.toolbar.mail_history}" /></a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a id="refresh" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.toolbar.refresh}"><img src='${tplroot}/images/buttons/refresh.gif' border="0" alt="${msg:chat.window.toolbar.refresh}" /></a>
|
<a id="refresh" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.toolbar.refresh}"><img src="${tplroot}/images/buttons/refresh.gif" border="0" alt="${msg:chat.window.toolbar.refresh}" /></a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a class="closethread" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" border="0" alt="${msg:chat.window.close_title}"/></a>
|
<a class="closethread" href="javascript:void(0)" onClick="return false;" title="${msg:chat.window.close_title}"><img src="${tplroot}/images/buttons/closewin.gif" border="0" alt="${msg:chat.window.close_title}"/></a>
|
||||||
|
@ -37,8 +37,8 @@ require_once('inc_errors.php');
|
|||||||
|
|
||||||
<?php if($page['canmodify']) { ?>
|
<?php if($page['canmodify']) { ?>
|
||||||
<div class="tabletool">
|
<div class="tabletool">
|
||||||
<img src='<?php echo $webimroot ?>/images/buttons/createagent.gif' border="0" alt="" />
|
<img src="<?php echo $webimroot ?>/images/buttons/createagent.gif" border="0" alt="" />
|
||||||
<a href='<?php echo $webimroot ?>/operator/operator.php' title="<?php echo htmlspecialchars(getlocal("page_agents.new_agent")) ?>">
|
<a href="<?php echo $webimroot ?>/operator/operator.php" title="<?php echo htmlspecialchars(getlocal("page_agents.new_agent")) ?>">
|
||||||
<?php echo getlocal("page_agents.new_agent") ?>
|
<?php echo getlocal("page_agents.new_agent") ?>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -29,20 +29,20 @@ function tpl_content() { global $page, $webimroot;
|
|||||||
<div>
|
<div>
|
||||||
<table class="nicebutton"><tr>
|
<table class="nicebutton"><tr>
|
||||||
<td><a href="<?php echo htmlspecialchars($page['link']) ?>">
|
<td><a href="<?php echo htmlspecialchars($page['link']) ?>">
|
||||||
<img src='<?php echo $webimroot ?>/images/submit.gif' width="40" height="35" border="0" alt="" /></a></td>
|
<img src="<?php echo $webimroot ?>/images/submit.gif" width="40" height="35" border="0" alt="" /></a></td>
|
||||||
<td class="submit"><a href="<?php echo htmlspecialchars($page['link']) ?>">
|
<td class="submit"><a href="<?php echo htmlspecialchars($page['link']) ?>">
|
||||||
<?php echo getlocal("confirm.take.yes") ?></a></td>
|
<?php echo getlocal("confirm.take.yes") ?></a></td>
|
||||||
<td><a href="<?php echo htmlspecialchars($page['link']) ?>">
|
<td><a href="<?php echo htmlspecialchars($page['link']) ?>">
|
||||||
<img src='<?php echo $webimroot ?>/images/submitrest.gif' width="10" height="35" border="0" alt="" /></a></td>
|
<img src="<?php echo $webimroot ?>/images/submitrest.gif" width="10" height="35" border="0" alt="" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
|
|
||||||
<table class="nicebutton"><tr>
|
<table class="nicebutton"><tr>
|
||||||
<td><a href="javascript:window.close();">
|
<td><a href="javascript:window.close();">
|
||||||
<img src='<?php echo $webimroot ?>/images/submit.gif' width="40" height="35" border="0" alt="" /></a></td>
|
<img src="<?php echo $webimroot ?>/images/submit.gif" width="40" height="35" border="0" alt="" /></a></td>
|
||||||
<td class="submit"><a href="javascript:window.close();">
|
<td class="submit"><a href="javascript:window.close();">
|
||||||
<?php echo getlocal("confirm.take.no") ?></a></td>
|
<?php echo getlocal("confirm.take.no") ?></a></td>
|
||||||
<td><a href="javascript:window.close();">
|
<td><a href="javascript:window.close();">
|
||||||
<img src='<?php echo $webimroot ?>/images/submitrest.gif' width="10" height="35" border="0" alt="" /></a></td>
|
<img src="<?php echo $webimroot ?>/images/submitrest.gif" width="10" height="35" border="0" alt="" /></a></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
|
|
||||||
<br clear="all"/>
|
<br clear="all"/>
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
if( isset($errors) && count($errors) > 0 ) { ?>
|
if( isset($errors) && count($errors) > 0 ) { ?>
|
||||||
<div class="errinfo">
|
<div class="errinfo">
|
||||||
<img src='<?php echo $webimroot ?>/images/icon_err.gif' width="40" height="40" border="0" alt="" class="left"/>
|
<img src="<?php echo $webimroot ?>/images/icon_err.gif" width="40" height="40" border="0" alt="" class="left"/>
|
||||||
<?php
|
<?php
|
||||||
print getlocal("errors.header");
|
print getlocal("errors.header");
|
||||||
foreach( $errors as $e ) {
|
foreach( $errors as $e ) {
|
||||||
|
@ -34,41 +34,41 @@ function tpl_menu() { global $page, $webimroot, $errors;
|
|||||||
<li>
|
<li>
|
||||||
<h2><?php echo getlocal('right.main') ?></h2>
|
<h2><?php echo getlocal('right.main') ?></h2>
|
||||||
<ul class="submenu">
|
<ul class="submenu">
|
||||||
<li<?php menuli("main")?>><a href='<?php echo $webimroot ?>/operator/index.php'><?php echo getlocal('topMenu.main') ?></a></li>
|
<li<?php menuli("main")?>><a href="<?php echo $webimroot ?>/operator/index.php"><?php echo getlocal('topMenu.main') ?></a></li>
|
||||||
<li<?php menuli("users")?>><a href='<?php echo $webimroot ?>/operator/users.php'><?php echo getlocal('topMenu.users') ?></a> <span class="small">(<a class="inner" href='<?php echo $webimroot ?>/operator/users.php?nomenu'><?php echo getlocal('topMenu.users.nomenu') ?></a>)</span></li>
|
<li<?php menuli("users")?>><a href="<?php echo $webimroot ?>/operator/users.php"><?php echo getlocal('topMenu.users') ?></a> <span class="small">(<a class="inner" href="<?php echo $webimroot ?>/operator/users.php?nomenu"><?php echo getlocal('topMenu.users.nomenu') ?></a>)</span></li>
|
||||||
<li<?php menuli("history")?>><a href='<?php echo $webimroot ?>/operator/history.php'><?php echo getlocal('page_analysis.search.title') ?></a></li>
|
<li<?php menuli("history")?>><a href="<?php echo $webimroot ?>/operator/history.php"><?php echo getlocal('page_analysis.search.title') ?></a></li>
|
||||||
<?php if(isset($page['showstat']) && $page['showstat']) { ?>
|
<?php if(isset($page['showstat']) && $page['showstat']) { ?>
|
||||||
<li<?php menuli("statistics")?>><a href='<?php echo $webimroot ?>/operator/statistics.php'><?php echo getlocal('statistics.title') ?></a></li>
|
<li<?php menuli("statistics")?>><a href="<?php echo $webimroot ?>/operator/statistics.php"><?php echo getlocal('statistics.title') ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if(isset($page['showban']) && $page['showban']) { ?>
|
<?php if(isset($page['showban']) && $page['showban']) { ?>
|
||||||
<li<?php menuli("blocked")?>><a href='<?php echo $webimroot ?>/operator/blocked.php'><?php echo getlocal('menu.blocked') ?></a></li>
|
<li<?php menuli("blocked")?>><a href="<?php echo $webimroot ?>/operator/blocked.php"><?php echo getlocal('menu.blocked') ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h2><?php echo getlocal('right.administration') ?></h2>
|
<h2><?php echo getlocal('right.administration') ?></h2>
|
||||||
<ul class="submenu">
|
<ul class="submenu">
|
||||||
<li<?php menuli("canned")?>><a href='<?php echo $webimroot ?>/operator/canned.php'><?php echo getlocal('menu.canned') ?></a></li>
|
<li<?php menuli("canned")?>><a href="<?php echo $webimroot ?>/operator/canned.php"><?php echo getlocal('menu.canned') ?></a></li>
|
||||||
<?php if(isset($page['showadmin']) && $page['showadmin']) { ?>
|
<?php if(isset($page['showadmin']) && $page['showadmin']) { ?>
|
||||||
<li<?php menuli("getcode")?>><a href='<?php echo $webimroot ?>/operator/getcode.php'><?php echo getlocal('leftMenu.client_gen_button') ?></a></li>
|
<li<?php menuli("getcode")?>><a href="<?php echo $webimroot ?>/operator/getcode.php"><?php echo getlocal('leftMenu.client_gen_button') ?></a></li>
|
||||||
<li<?php menuli("operators")?>><a href='<?php echo $webimroot ?>/operator/operators.php'><?php echo getlocal('leftMenu.client_agents') ?></a></li>
|
<li<?php menuli("operators")?>><a href="<?php echo $webimroot ?>/operator/operators.php"><?php echo getlocal('leftMenu.client_agents') ?></a></li>
|
||||||
<?php if(isset($page['showgroups']) && $page['showgroups']) { ?>
|
<?php if(isset($page['showgroups']) && $page['showgroups']) { ?>
|
||||||
<li<?php menuli("groups")?>><a href='<?php echo $webimroot ?>/operator/groups.php'><?php echo getlocal('menu.groups') ?></a></li>
|
<li<?php menuli("groups")?>><a href="<?php echo $webimroot ?>/operator/groups.php"><?php echo getlocal('menu.groups') ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<li<?php menuli("settings")?>><a href='<?php echo $webimroot ?>/operator/settings.php'><?php echo getlocal('leftMenu.client_settings') ?></a></li>
|
<li<?php menuli("settings")?>><a href="<?php echo $webimroot ?>/operator/settings.php"><?php echo getlocal('leftMenu.client_settings') ?></a></li>
|
||||||
<li<?php menuli("translate")?>><a href='<?php echo $webimroot ?>/operator/translate.php'><?php echo getlocal('menu.translate') ?></a></li>
|
<li<?php menuli("translate")?>><a href="<?php echo $webimroot ?>/operator/translate.php"><?php echo getlocal('menu.translate') ?></a></li>
|
||||||
<li<?php menuli("updates")?>><a href='<?php echo $webimroot ?>/operator/updates.php'><?php echo getlocal('menu.updates') ?></a></li>
|
<li<?php menuli("updates")?>><a href="<?php echo $webimroot ?>/operator/updates.php"><?php echo getlocal('menu.updates') ?></a></li>
|
||||||
<li<?php menuli("notifications")?>><a href='<?php echo $webimroot ?>/operator/notifications.php'><?php echo getlocal('menu.notifications') ?></a></li>
|
<li<?php menuli("notifications")?>><a href="<?php echo $webimroot ?>/operator/notifications.php"><?php echo getlocal('menu.notifications') ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if(isset($page['currentopid']) && $page['currentopid']) {?>
|
<?php if(isset($page['currentopid']) && $page['currentopid']) {?>
|
||||||
<li<?php menuli("profile")?>><a href='<?php echo $webimroot ?>/operator/operator.php?op=<?php echo $page['currentopid'] ?>'><?php echo getlocal('menu.profile') ?></a></li>
|
<li<?php menuli("profile")?>><a href="<?php echo $webimroot ?>/operator/operator.php?op=<?php echo urlencode($page['currentopid']) ?>"><?php echo getlocal('menu.profile') ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h2><?php echo getlocal('right.other') ?></h2>
|
<h2><?php echo getlocal('right.other') ?></h2>
|
||||||
<ul class="submenu">
|
<ul class="submenu">
|
||||||
<li><a href='<?php echo $webimroot ?>/operator/logout.php'><?php echo getlocal('topMenu.logoff') ?></a></li>
|
<li><a href="<?php echo $webimroot ?>/operator/logout.php"><?php echo getlocal('topMenu.logoff') ?></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<?php
|
<?php
|
||||||
|
Loading…
Reference in New Issue
Block a user