Updates and cleanup
This commit is contained in:
parent
99a9ed919e
commit
e4dc428379
11 changed files with 340 additions and 395 deletions
|
@ -15,7 +15,9 @@ RewriteRule error/(.*)\.html$ index.php?task=error&sub=$1
|
||||||
|
|
||||||
RewriteRule ^register/(.*)? register.php?regstring=$1
|
RewriteRule ^register/(.*)? register.php?regstring=$1
|
||||||
RewriteRule ^avatar/(.*)? index.php?task=rp&sum=avatar&id=$1
|
RewriteRule ^avatar/(.*)? index.php?task=rp&sum=avatar&id=$1
|
||||||
RewriteRule ^reports/(.*)? index.php?task=chat&sub=report&uid=$1
|
RewriteRule ^chat/reports/(.*)? index.php?task=chat&sub=report&uid=$1
|
||||||
|
RewriteRule ^chat/in? index.php?task=chat&sub=in
|
||||||
|
RewriteRule ^chat? index.php?task=chat
|
||||||
RewriteRule create_char.html index.php?task=rp&sub=create
|
RewriteRule create_char.html index.php?task=rp&sub=create
|
||||||
RewriteRule chat.html index.php?task=chat
|
RewriteRule chat.html index.php?task=chat
|
||||||
RewriteRule my_chars.html index.php?task=rp&sub=chars [QSA,L]
|
RewriteRule my_chars.html index.php?task=rp&sub=chars [QSA,L]
|
||||||
|
|
Binary file not shown.
|
@ -108,7 +108,7 @@ class chat extends ajax_module{
|
||||||
}else{
|
}else{
|
||||||
$notice='notice_on.png';
|
$notice='notice_on.png';
|
||||||
}
|
}
|
||||||
$result = $db->query("SELECT * FROM `aa_v_nickpage` WHERE `username`='".$nick."'");
|
$result = $db->query("SELECT * FROM `aa_v_nickpage` WHERE `username`='".$user->nick."'");
|
||||||
$gender = $db->fetch_array($result);
|
$gender = $db->fetch_array($result);
|
||||||
if($gender['fid3']=='m'){
|
if($gender['fid3']=='m'){
|
||||||
$gen='male';
|
$gen='male';
|
||||||
|
|
|
@ -438,13 +438,13 @@ class chat extends module{
|
||||||
$core->message('Sorry', "Can't touch this.");
|
$core->message('Sorry', "Can't touch this.");
|
||||||
}else{
|
}else{
|
||||||
if($_GET['uid']==''){
|
if($_GET['uid']==''){
|
||||||
$nreport=$db->query("SELECT r.*,u.username,u.fuid,c.name, s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='0' ORDER BY `time` DESC");
|
$nreport=$db->query("SELECT r.*,u.username,u.fuid,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` WHERE `seen`='0' ORDER BY `time` DESC");
|
||||||
//echo "SELECT r.*,u.username,u.fuid,c.name,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='0' ORDER BY `time` DESC";
|
//echo "SELECT r.*,u.username,u.fuid,c.name,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='0' ORDER BY `time` DESC";
|
||||||
while($rown=$db->fetch_array($nreport)){
|
while($rown=$db->fetch_array($nreport)){
|
||||||
$rown['date']=date('d.m.Y H:i:s',$rown['time']);
|
$rown['date']=date('d.m.Y H:i:s',$rown['time']);
|
||||||
$nrep[]=$rown;
|
$nrep[]=$rown;
|
||||||
}
|
}
|
||||||
$report=$db->query("SELECT r.*,u.username,u.fuid,c.name,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='1' ORDER BY `time` DESC");
|
$report=$db->query("SELECT r.*,u.username,u.fuid,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` WHERE `seen`='1' ORDER BY `time` DESC");
|
||||||
while($rowp=$db->fetch_array($report)){
|
while($rowp=$db->fetch_array($report)){
|
||||||
$rowp['date']=date('d.m.Y H:i:s',$rowp['time']);
|
$rowp['date']=date('d.m.Y H:i:s',$rowp['time']);
|
||||||
$rep[]=$rowp;
|
$rep[]=$rowp;
|
||||||
|
@ -455,12 +455,12 @@ class chat extends module{
|
||||||
$core->make_page($content,TRUE,$config['fullpath'].'/modules/chat/templates/default/reports.tpl',$config['fullpath'].'/modules/chat/templates/default/chat_header.tpl',$config['fullpath'].'/modules/chat/templates/default/chat_footer.tpl');
|
$core->make_page($content,TRUE,$config['fullpath'].'/modules/chat/templates/default/reports.tpl',$config['fullpath'].'/modules/chat/templates/default/chat_header.tpl',$config['fullpath'].'/modules/chat/templates/default/chat_footer.tpl');
|
||||||
}else{
|
}else{
|
||||||
//echo "SELECT r.*,u.username,u.fuid,c.name,r.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='0' AND r.`uid`='". intval($_GET['uid']) ."' ORDER BY `time` DESC";
|
//echo "SELECT r.*,u.username,u.fuid,c.name,r.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='0' AND r.`uid`='". intval($_GET['uid']) ."' ORDER BY `time` DESC";
|
||||||
$nreport=$db->query("SELECT r.*,u.username,u.fuid,c.name,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='0' AND r.`uid`='". intval($_GET['uid']) ."' ORDER BY `time` DESC");
|
$nreport=$db->query("SELECT r.*,u.username,u.fuid,s.fuid as `cpid`,s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` WHERE `seen`='0' AND r.`uid`='". intval($_GET['uid']) ."' ORDER BY `time` DESC");
|
||||||
while($rown=$db->fetch_array($nreport)){
|
while($rown=$db->fetch_array($nreport)){
|
||||||
$rown['date']=date('d.m.Y H:i:s',$rown['time']);
|
$rown['date']=date('d.m.Y H:i:s',$rown['time']);
|
||||||
$nrep[]=$rown;
|
$nrep[]=$rown;
|
||||||
}
|
}
|
||||||
$report=$db->query("SELECT r.*,u.username,u.fuid,c.name,s.fuid as `cpid`, s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` LEFT JOIN `" . $config["prefix"] . "rp_chars` c ON c.`id`=r.`chid` WHERE `seen`='1' AND r.`uid`='". intval($_GET['uid']) ."' ORDER BY `time` DESC");
|
$report=$db->query("SELECT r.*,u.username,u.fuid,s.fuid as `cpid`, s.username as `cname` FROM `ptc_reports` r LEFT JOIN `" . $config["prefix"] . "users` u ON u.`uid`=r.`rpid` LEFT JOIN `" . $config["prefix"] . "users` s ON s.`uid`=r.`uid` WHERE `seen`='1' AND r.`uid`='". intval($_GET['uid']) ."' ORDER BY `time` DESC");
|
||||||
while($rowp=$db->fetch_array($report)){
|
while($rowp=$db->fetch_array($report)){
|
||||||
$rowp['date']=date('d.m.Y H:i:s',$rowp['time']);
|
$rowp['date']=date('d.m.Y H:i:s',$rowp['time']);
|
||||||
$rep[]=$rowp;
|
$rep[]=$rowp;
|
||||||
|
@ -524,7 +524,7 @@ function repmeta(){
|
||||||
var head = parent.prev(\'h3\');
|
var head = parent.prev(\'h3\');
|
||||||
head.css( "background", "#80CB80" );
|
head.css( "background", "#80CB80" );
|
||||||
$(this).removeClass(\'seen\').addClass(\'unseen\');
|
$(this).removeClass(\'seen\').addClass(\'unseen\');
|
||||||
$(this).html(\'<img style="border:none;" src="/themes/coppertopia/images/icons/tick.png">\');
|
$(this).html(\'<img style="border:none;" src="/themes/austria/images/icons/tick.png">\');
|
||||||
});
|
});
|
||||||
$(\'body\').on(\'click\',\'a.unseen\', function() {
|
$(\'body\').on(\'click\',\'a.unseen\', function() {
|
||||||
jQuery.ajax({
|
jQuery.ajax({
|
||||||
|
@ -535,7 +535,7 @@ function repmeta(){
|
||||||
var head = parent.prev(\'h3\');
|
var head = parent.prev(\'h3\');
|
||||||
head.css( "background", "#810000" );
|
head.css( "background", "#810000" );
|
||||||
$(this).removeClass(\'unseen\').addClass(\'seen\');
|
$(this).removeClass(\'unseen\').addClass(\'seen\');
|
||||||
$(this).html(\'<img style="border:none;" src="/themes/coppertopia/images/icons/eye.png">\');
|
$(this).html(\'<img style="border:none;" src="/themes/austria/images/icons/eye.png">\');
|
||||||
});
|
});
|
||||||
$(\'body\').on(\'click\',\'a.user\', function() {
|
$(\'body\').on(\'click\',\'a.user\', function() {
|
||||||
window.open($(this).attr(\'href\'),\'_blank\');
|
window.open($(this).attr(\'href\'),\'_blank\');
|
||||||
|
|
|
@ -23,14 +23,14 @@ class plugins_chat{
|
||||||
$cont=str_replace('[users]',$data['usercount'],$cont);
|
$cont=str_replace('[users]',$data['usercount'],$cont);
|
||||||
}
|
}
|
||||||
|
|
||||||
function cusers_head($tpl){
|
function cusers_head(& $tpl){
|
||||||
global $db, $config, $session, $log;
|
global $db, $config, $session, $log;
|
||||||
$data=chat_online();
|
$data=chat_online();
|
||||||
if ($data["chat_offline"]===true){
|
if ($data["chat_offline"]===true){
|
||||||
$tpl->assign('users',"offline");
|
$tpl->assign('cusers',"offline");
|
||||||
return;
|
return;
|
||||||
}else{
|
}else{
|
||||||
$tpl->assign('users',$data['usercount']);
|
//$tpl->assign('cusers',$data['usercount']);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
{$header}
|
|
||||||
<aside id="library" style="display:none;">
|
|
||||||
<img src="http://www.ponytopia.net/images/nightsky.png" id="nightsky" />
|
|
||||||
<img src="http://www.ponytopia.net/images/big-glow.png" id="big-glow" />
|
|
||||||
<img src="http://www.ponytopia.net/images/small-glow.png" id="small-glow" />
|
|
||||||
</aside>
|
|
||||||
<div id="chat-content-wrap">
|
|
||||||
<div id="chat-content">
|
|
||||||
<div id="chat" style="height:100%;">
|
|
||||||
<h2 class='roomname' style="color:#{$col};">{$username}</h2>
|
|
||||||
|
|
||||||
<div class="topbar"><a id="notchan">Yay!</a> | <a href="http://forum.ponytopia.net/help-8.html" target="_blank" onclick="return popup('http://forum.ponytopia.net/help-8.html','width=800, height=800, resizeable,scrollbars=yes');">Help</a> | <a href="http://forum.ponytopia.net/misc.php?action=smilies&popup=true" target="_blank" onclick="return popup('http://forum.ponytopia.net/misc.php?action=smilies&popup=true','width=600, height=600, resizeable,scrollbars=yes');">Smilies</a> | <a href="http://chat.ponytopia.net/logs.html" target="_blank">Logs</a> | <a id="notsw">Notice: On</a> | <a id="scrolling">Scrolling: On</a> | <a id="whwindow">{$whtext}</a> | <a id="ooc">{$ooctext}</a> | <a id="bgmusic">{$bgmusic}</a> | <a id="submit">{$submit}</a> | <a id="logout">Logout</a></div>
|
|
||||||
|
|
||||||
<div id="chatlog" style="z-index:1; height:600px; position:relative;"></div>
|
|
||||||
|
|
||||||
<span style="padding-top:3px; padding-bottom:3px;">
|
|
||||||
|
|
||||||
{$simg} <textarea id="text" autocomplete="off" spellcheck="true" style="z-index:2; float: right; position: relative; background: none repeat scroll 0 0 #12120F; border: 1px solid #FFFFFF; width: 92%; height:20px; color: #{$col};" ></textarea>
|
|
||||||
</div>
|
|
||||||
<div id="rightbar">
|
|
||||||
|
|
||||||
<div class="userlist">
|
|
||||||
</div>
|
|
||||||
<div class="functions">
|
|
||||||
</div>
|
|
||||||
{$rightnav}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(function(){
|
|
||||||
$('#chatlog').slimScroll({
|
|
||||||
color: '#00f',
|
|
||||||
size: '10px',
|
|
||||||
width: '95%',
|
|
||||||
wheelStep: 10,
|
|
||||||
height: '580px',
|
|
||||||
start: 'bottom'
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<div id="whispers" style="display:none;">
|
|
||||||
</div>
|
|
||||||
<div id="repwindow" style="display:none;">
|
|
||||||
</div>
|
|
|
@ -12,7 +12,7 @@ No users.
|
||||||
<strong><a>{$key}</a></strong> <img src="/themes/austria/images/locked.png" style="border:none;" /><br />
|
<strong><a>{$key}</a></strong> <img src="/themes/austria/images/locked.png" style="border:none;" /><br />
|
||||||
{/if}
|
{/if}
|
||||||
{foreach from=$user.u item=i}
|
{foreach from=$user.u item=i}
|
||||||
<a id="{$i.n}" class="notice"><img src="/themes/austria/images/{$i.i}" style="border:none;" /></a>{$i.l}<a href="/np/{$i.n}" target="_blank" style="color:#{$i.c}; margin-left: 8px;">{$i.n}</a></span> <img src="/themes/archer/images/{$i.g}.png" style="border:none;" /><br />
|
<a id="{$i.n}" class="notice"><img src="/themes/austria/images/{$i.i}" style="border:none;" /></a>{$i.l}<a href="/np/{$i.n}" target="_blank" style="color:#{$i.c}; margin-left: 8px;">{$i.n}</a></span> <img src="/themes/austria/images/{$i.g}.png" style="border:none;" /><br />
|
||||||
{/foreach}
|
{/foreach}
|
||||||
{/foreach}
|
{/foreach}
|
||||||
{/if}
|
{/if}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
<div id="main" class="nine columns">
|
<div id="main" class="nine columns">
|
||||||
<div id="chat" style="height:100%;">
|
<div id="chat" style="height:100%;">
|
||||||
<div class="topbar"><a id="notchan">Ding</a> | <a href="//austriachat.net/forum/help-8.html" target="_blank" onclick="return popup('//austriachat.net/forum/help-8.html','width=800, height=800, resizeable,scrollbars=yes');">Hilfe</a> | <a href="//austriachat.net/forum/misc.php?action=smilies&popup=true" target="_blank" onclick="return popup('//austriachat.net/forum/misc.php?action=smilies&popup=true','width=600, height=600, resizeable,scrollbars=yes');">Smilies</a> | <a id="notsw">Benachrichtigung: An</a> | <a id="scrolling">Scrolling: An</a> | <a id="whwindow">{$whtext}</a> | <a id="submit">{$submit}</a> | <a id="logout">Logout</a></div>
|
<div class="topbar"><a id="notchan">Ding</a> | <a href="//funch.at/forum/help-8.html" target="_blank" onclick="return popup('//funch.at/forum/help-8.html','width=800, height=800, resizeable,scrollbars=yes');">Hilfe</a> | <a href="//funch.at/forum/misc.php?action=smilies&popup=true" target="_blank" onclick="return popup('//funch.at/forum/misc.php?action=smilies&popup=true','width=600, height=600, resizeable,scrollbars=yes');">Smilies</a> | <a id="notsw">Benachrichtigung: An</a> | <a id="scrolling">Scrolling: An</a> | <a id="whwindow">{$whtext}</a> | <a id="submit">{$submit}</a> | <a id="logout">Logout</a></div>
|
||||||
|
|
||||||
<div id="chatlog" style="z-index:1; height:600px; position:relative;"></div>
|
<div id="chatlog" style="z-index:1; height:600px; position:relative;"></div>
|
||||||
<textarea id="text" autocomplete="off" spellcheck="true" style="z-index:2; float: right; position: relative; background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #000000; width: 92%; height:20px; color: #{$col};" ></textarea>
|
<textarea id="text" autocomplete="off" spellcheck="true" style="z-index:2; float: right; position: relative; background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #000000; width: 92%; height:20px; color: #{$col};" ></textarea>
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
<!--- Basic Page Needs
|
<!--- Basic Page Needs
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>AustriaChat.net - Die Österreichische Chatcommunity</title>
|
<title>Funch.at - Die Österreichische Chatcommunity</title>
|
||||||
<meta content="AustriaChat.net - Die Österreichische Chatcommunity" property="og:title" />
|
<meta content="Funch.at - Die Österreichische Chatcommunity" property="og:title" />
|
||||||
<meta name="keywords" content="oe3 Ö3 chat sms.at uboot.com chatcommunity webchat austria oesterreich forum" />
|
<meta name="keywords" content="oe3 Ö3 chat sms.at uboot.com chatcommunity webchat austria oesterreich forum" />
|
||||||
<meta name="author" content="AustriaChat.net" />
|
<meta name="author" content="Funch.at" />
|
||||||
<meta name="description" content="Die kostenlose und werbefreie Österreichische Chatcommunity. Endlich wieder Chatten wie im Uboot, sms.at, Orf Chat, usw. Wir sehen uns!" />
|
<meta name="description" content="Die kostenlose und werbefreie Österreichische Chatcommunity. Endlich wieder Chatten wie im Uboot, sms.at, Orf Chat, usw. Wir sehen uns!" />
|
||||||
<link href="https://austriachat.net/chat" rel="Chat"/>
|
<link href="https://funch.at/chat" rel="Chat"/>
|
||||||
<link href="https://austriachat.net/forum" rel="Forum"/>
|
<link href="https://funch.at/forum" rel="Forum"/>
|
||||||
{$meta}
|
{$meta}
|
||||||
<!-- mobile specific metas
|
<!-- mobile specific metas
|
||||||
================================================== -->
|
================================================== -->
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
# Welcome message
|
# Welcome message
|
||||||
txtWelcome|SourceUser = <link rel="stylesheet" href="//austriachat.net/style.css?id=278389" type="text/css" media="screen" /></head><body><span id="copyrightline"><%APP_NAME%> <%APP_VERSION%> © 2013-2017 by <a href="//austriachat.net" target="_blank" style="color: #516176;">Genuineparts</a></a></span><br/><br/><audio id="notice"><source id="oggnotice" src="//austriachat.net/modules/chat/sound/dangerzone_notice.ogg?id=21131223132" type="audio/ogg" ><source id="mp3notice" src="//austriachat/modules/chat/sound/dangerzone_notice.mp3?id=21131223132" type="audio/mpeg"></audio><audio id="audioPlayer"><source id="oggSource" type="audio/ogg" ><source id="mp3Source" type="audio/mpeg"></audio><script type="text/javascript">set_notice();</script>
|
txtWelcome|SourceUser = <link rel="stylesheet" href="//funch.at/style.css?id=278389" type="text/css" media="screen" /></head><body><span id="copyrightline"><%APP_NAME%> <%APP_VERSION%> © 2013-2025 by <a href="//funch.at" target="_blank" style="color: #516176;">GenuineParts</a></a></span><br/><br/><audio id="notice"><source id="oggnotice" src="//funch.at/modules/chat/sound/dangerzone_notice.ogg?id=21131223132" type="audio/ogg" ><source id="mp3notice" src="//funch.at/modules/chat/sound/dangerzone_notice.mp3?id=21131223132" type="audio/mpeg"></audio><audio id="audioPlayer"><source id="oggSource" type="audio/ogg" ><source id="mp3Source" type="audio/mpeg"></audio><script type="text/javascript">set_notice();</script>
|
||||||
|
|
||||||
# Simple messages
|
# Simple messages
|
||||||
txtMessage|SourceRoom = <span class="time">(<%Time%>) </span><span style="color: #<%SourceColor%>;"><span class="user_whisper" title="<%friendlysender%>">%(<%id%>)%<%SourceNick%></span>: <%Message%></span><br/>
|
txtMessage|SourceRoom = <span class="time">(<%Time%>) </span><span style="color: #<%SourceColor%>;"><span class="user_whisper" title="<%friendlysender%>">%(<%id%>)%<%SourceNick%></span>: <%Message%></span><br/>
|
||||||
txtMe|SourceRoom = <span class="time">(<%Time%>) </span><span class="me" style="color: #<%SourceColor%>;"><span class="user_whisper" title="<%friendlysender%>">%(<%id%>)% » <%SourceNick%></span> <%Message%></span><br/>
|
txtMe|SourceRoom = <span class="time">(<%Time%>) </span><span class="me" style="color: #<%SourceColor%>;"><span class="user_whisper" title="<%friendlysender%>">%(<%id%>)% » <%SourceNick%></span> <%Message%></span><br/>
|
||||||
txtMes|SourceRoom = <span class="time">(<%Time%>) </span><span class="me" style="color: #<%SourceColor%>;"><span class="user_whisper" title="<%friendlysender%>">%(<%id%>)% » <%SourceNick%>'s</span> <%Message%></span><br/>
|
txtMes|SourceRoom = <span class="time">(<%Time%>) </span><span class="me" style="color: #<%SourceColor%>;"><span class="user_whisper" title="<%friendlysender%>">%(<%id%>)% » <%SourceNick%>'s</span> <%Message%></span><br/>
|
||||||
txtNarr|SourceRoom = <span class="time">(<%Time%>) </span><span class="info">Narrator: <%Message%></span><br/>
|
txtNarr|SourceRoom = <span class="time">(<%Time%>) </span><span class="info">Narrator: <%Message%></span><br/>
|
||||||
txtHelp|SourceUser = <span class="info">Die Hilfe sollte sich in einem neuen Fenster geöffnet haben, wenn nicht, bitte <a href="//austriachat.net/forum/help-8.html" target="_blank">hier klicken</a>.</span><br/><script type="text/javascript">window.open('//austriachat.net/forum/help-8.html',' ','width=600, height=400, resizeable,scrollbars=yes')</script>
|
txtHelp|SourceUser = <span class="info">Die Hilfe sollte sich in einem neuen Fenster geöffnet haben, wenn nicht, bitte <a href="//funch.at/forum/help-8.html" target="_blank">hier klicken</a>.</span><br/><script type="text/javascript">window.open('//funch.at/forum/help-8.html',' ','width=600, height=400, resizeable,scrollbars=yes')</script>
|
||||||
txtMaybeOOC|SourceUser = <span class="info">Hm, thats a lot of OOC, maybe you should join the 'Chitchat' room? Simply enter /j chitchat</span><br/>
|
txtMaybeOOC|SourceUser = <span class="info">Hm, thats a lot of OOC, maybe you should join the 'Chitchat' room? Simply enter /j chitchat</span><br/>
|
||||||
txtOldversion|SourceUser = <span class="info">Achtung! Dein Browser ist veraltet und versteht womoglich nicht die aktuellen Websocket Protokolle, dies könnte zu zahlreichen Problemen führen. Bitte upgrade oder wechsle deinen Browser.</span><br/>
|
txtOldversion|SourceUser = <span class="info">Achtung! Dein Browser ist veraltet und versteht womoglich nicht die aktuellen Websocket Protokolle, dies könnte zu zahlreichen Problemen führen. Bitte upgrade oder wechsle deinen Browser.</span><br/>
|
||||||
|
|
||||||
|
@ -25,13 +25,13 @@ txtNotFriend|SourceUser = <span class="info"><span style="color: #<%DestColor%>;
|
||||||
txtInvalidRoomname|SourceUser = <span class="info">Der Raumname darf keine /, ; oder | enthalten.</span><br/>
|
txtInvalidRoomname|SourceUser = <span class="info">Der Raumname darf keine /, ; oder | enthalten.</span><br/>
|
||||||
|
|
||||||
# Enter and leave message
|
# Enter and leave message
|
||||||
txtEnterChatUser|SourceUser = <span style="font-style: italic;"><span class="info">Hallo <span style="color: #<%SourceColor%>;"><%SourceNick%></span>, willkommen im Chat.</span><br/><span class="info">Du kannst mit /? die Hilfe aufrufen.<br/>Ein kleines Handbuch zum Chat findest du <a href="//austriachat.net/text/chatinfo.html" target="_blank">hier</a>.</span><br/>%(<span class="info">Thema: '<%SourceRoomTopic%>'</span><br/>)%
|
txtEnterChatUser|SourceUser = <span style="font-style: italic;"><span class="info">Hallo <span style="color: #<%SourceColor%>;"><%SourceNick%></span>, willkommen im Chat.</span><br/><span class="info">Du kannst mit /? die Hilfe aufrufen.<br/>Ein kleines Handbuch zum Chat findest du <a href="//funch.at/text/chatinfo.html" target="_blank">hier</a>.</span><br/>%(<span class="info">Thema: '<%SourceRoomTopic%>'</span><br/>)%
|
||||||
txtEnterChat|SourceRoom = <span style="font-style: italic;"><span class="user_whisper" title="<%friendlysender%>" style="color: #<%SourceColor%>;"><%SourceNick%></span> betritt den Chat.</span><br/>
|
txtEnterChat|SourceRoom = <span style="font-style: italic;"><span class="user_whisper" title="<%friendlysender%>" style="color: #<%SourceColor%>;"><%SourceNick%></span> betritt den Chat.</span><br/>
|
||||||
txtEnterChatAdmin|SourceUser = <span class="info">Achtung, du bist als Admin eingeloggt!</span><br/>
|
txtEnterChatAdmin|SourceUser = <span class="info">Achtung, du bist als Admin eingeloggt!</span><br/>
|
||||||
txtLeaveChat|SourceUser = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat.</span><br/><script language="JavaScript">window.parent.doit=false; window.parent.location="//austriachat.net/";</script><br/>
|
txtLeaveChat|SourceUser = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat.</span><br/><script language="JavaScript">window.parent.doit=false; window.parent.location="//funch.at/";</script><br/>
|
||||||
txtLeaveChat|SourceRoom = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat.</span><br/>
|
txtLeaveChat|SourceRoom = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat.</span><br/>
|
||||||
txtLeaveChatWords|SourceRoom = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat mit den Worten: '<%Message%>'.</span><br/>
|
txtLeaveChatWords|SourceRoom = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat mit den Worten: '<%Message%>'.</span><br/>
|
||||||
txtLeaveChatWords|SourceUser = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat mit den Worten: '<%Message%>'.</span><br/><script language="JavaScript">window.parent.doit=false; window.parent.location="//austriachat.net/";</script><br/>
|
txtLeaveChatWords|SourceUser = <span style="font-style: italic;"><span style="color: #<%SourceColor%>;"><%SourceNick%></span> verlässt den Chat mit den Worten: '<%Message%>'.</span><br/><script language="JavaScript">window.parent.doit=false; window.parent.location="//funch.at/";</script><br/>
|
||||||
|
|
||||||
# Server engine message
|
# Server engine message
|
||||||
txtServerStop|AllUsers = <br/><span class="info" style="color: #ff0000;">System: Der Chatserver wird heruntergefahren!</span><script type="text/javascript">notice();</script><br/><br/>
|
txtServerStop|AllUsers = <br/><span class="info" style="color: #ff0000;">System: Der Chatserver wird heruntergefahren!</span><script type="text/javascript">notice();</script><br/><br/>
|
||||||
|
@ -87,7 +87,7 @@ txtWhoInRoomFooter|SourceUser = <span class="info">There are <%UserCount%> Users
|
||||||
# Who user
|
# Who user
|
||||||
txtWhoUserOnline|SourceUser = ~ <span style="color:#<%DestColor%>; font-weight:bold;"><%DestNick%></span> - Online seit: <%DestLoginTime%><br/>- schläft seit <%DestIdle%> Sekunden<br/>- befindet sich im Raum '<span style="font-weight:bold;"><%DestRoom%></span>' <br/>%(- abgemeldet (<%DestAway%>)<br/>)%%(- <%DestRight%><br/>)%- verbrachte bereits <%DestChatSeconds%> im Chat <br/>
|
txtWhoUserOnline|SourceUser = ~ <span style="color:#<%DestColor%>; font-weight:bold;"><%DestNick%></span> - Online seit: <%DestLoginTime%><br/>- schläft seit <%DestIdle%> Sekunden<br/>- befindet sich im Raum '<span style="font-weight:bold;"><%DestRoom%></span>' <br/>%(- abgemeldet (<%DestAway%>)<br/>)%%(- <%DestRight%><br/>)%- verbrachte bereits <%DestChatSeconds%> im Chat <br/>
|
||||||
txtWhoUserOnline|DestUser = <!-- <%SourceNick%> watched you! -->
|
txtWhoUserOnline|DestUser = <!-- <%SourceNick%> watched you! -->
|
||||||
txtWhoUserOnlineVIP|SourceUser = ~ <span style="color:#<%DestColor%>; font-weight:bold;"><%DestNick%></span> - Online seit: <%DestLoginTime%><br/>- schläft seit <%DestIdle%> Sekunden<br/>- befindet sich im Raum '<span style="font-weight:bold;"><%DestRoom%></span>' <br/>%(- abgemeldet (<%DestAway%>)<br/>)%%(- <%DestRight%><br/>)%- verbrachte bereits <%DestChatSeconds%> im Chat <br/>- IP: <%DestIP%> (<%DestHost%>)<br/>- Farbe: <span style="color:#<%DestColor%>; font-weight:bold;"><%DestColor%></span><br/>- Gemeldet: <a href="//austriachat.net/chat/reports/<%DestID%>" target="_blank"><%DestReports%></a><br/>- Browser: <%DestBrowser%><br/>- Draft: <%DestDraft%><br/>
|
txtWhoUserOnlineVIP|SourceUser = ~ <span style="color:#<%DestColor%>; font-weight:bold;"><%DestNick%></span> - Online seit: <%DestLoginTime%><br/>- schläft seit <%DestIdle%> Sekunden<br/>- befindet sich im Raum '<span style="font-weight:bold;"><%DestRoom%></span>' <br/>%(- abgemeldet (<%DestAway%>)<br/>)%%(- <%DestRight%><br/>)%- verbrachte bereits <%DestChatSeconds%> im Chat <br/>- IP: <%DestIP%> (<%DestHost%>)<br/>- Farbe: <span style="color:#<%DestColor%>; font-weight:bold;"><%DestColor%></span><br/>- Gemeldet: <a href="//funch.at/reports/<%DestID%>" target="_blank"><%DestReports%></a><br/>- Browser: <%DestBrowser%><br/>- Draft: <%DestDraft%><br/>
|
||||||
txtWhoUserOffline|SourceUser = ~ <span style="color:#<%DestColor%>; font-weight:bold;"><%DestNick%></span> - Offline<br/>%(- <%DestRight%><br/>)%- verbrachte bereits <%DestChatSeconds%> im Chat<br/>- zuletzt online am <%DestLastOnline%><br/>
|
txtWhoUserOffline|SourceUser = ~ <span style="color:#<%DestColor%>; font-weight:bold;"><%DestNick%></span> - Offline<br/>%(- <%DestRight%><br/>)%- verbrachte bereits <%DestChatSeconds%> im Chat<br/>- zuletzt online am <%DestLastOnline%><br/>
|
||||||
|
|
||||||
# Who in chat
|
# Who in chat
|
||||||
|
@ -264,9 +264,9 @@ txtUserReported|SourceUser = <span class="info">You have reported <span style="c
|
||||||
txtParasErrorNoReason|SourceUser = <span class="info">Sorry, you have to give a reason for the report.</span><br/>
|
txtParasErrorNoReason|SourceUser = <span class="info">Sorry, you have to give a reason for the report.</span><br/>
|
||||||
txtReportNoreports|SourceUser = <span class="info">There are no reports against this user.</span><br/>
|
txtReportNoreports|SourceUser = <span class="info">There are no reports against this user.</span><br/>
|
||||||
txtUserReportedVIP|DestUser = <span class="info"><span style="color:#<%SourceColor%>;"><%SourceNick%></span> has reported <span style="color:#<%DestColor%>;"><%DestNick%></span> (<%reason%>).</span><br/>
|
txtUserReportedVIP|DestUser = <span class="info"><span style="color:#<%SourceColor%>;"><%SourceNick%></span> has reported <span style="color:#<%DestColor%>;"><%DestNick%></span> (<%reason%>).</span><br/>
|
||||||
txtReportListuser|SourceUser = <span class="info">The Report list for the user <span style="color:#<%DestColor%>;"><%DestNick%></span> should have opened in a new window, if not, just click <a href="//chat.archer.agency/reports/<%DestID%>" target="_blank">here</a>.</span><br/><script type="text/javascript">window.open('//chat.archer.agency/reports/<%DestID%>',' ','width=600, height=400, resizeable,scrollbars=yes')</script>
|
txtReportListuser|SourceUser = <span class="info">The Report list for the user <span style="color:#<%DestColor%>;"><%DestNick%></span> should have opened in a new window, if not, just click <a href="//funch.at/reports/<%DestID%>" target="_blank">here</a>.</span><br/><script type="text/javascript">window.open('//funch.at/reports/<%DestID%>',' ','width=600, height=400, resizeable,scrollbars=yes')</script>
|
||||||
txtReportList|SourceUser = <span class="info">The Report list should have opened in a new window, if not, just click <a href="//chat.archer.agency/reports/" target="_blank">here</a>.</span><br/><script type="text/javascript">window.open('//chat.archer.agency/reports/',' ','width=600, height=400, resizeable,scrollbars=yes')</script>
|
txtReportList|SourceUser = <span class="info">The Report list should have opened in a new window, if not, just click <a href="//funch.at/reports/" target="_blank">here</a>.</span><br/><script type="text/javascript">window.open('//funch.at/reports/',' ','width=600, height=400, resizeable,scrollbars=yes')</script>
|
||||||
txtNewReports|SourceUser = <span class="info">There are unread Reports! Click <a href="//chat.archer.agency/reports/" target="_blank">here</a> to see them.</span>
|
txtNewReports|SourceUser = <span class="info">There are unread Reports! Click <a href="//funch.at/reports/" target="_blank">here</a> to see them.</span>
|
||||||
|
|
||||||
#Picture
|
#Picture
|
||||||
txtPictureEmpty|SourceUser = <span class="info">Du musst ein Bild angeben.</span><br/>
|
txtPictureEmpty|SourceUser = <span class="info">Du musst ein Bild angeben.</span><br/>
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="twelve columns">
|
<div class="twelve columns">
|
||||||
<ul class="social-links">
|
<!--<ul class="social-links">
|
||||||
<li><a href="https://twitter.com/austriachatnet"><i class="fa fa-twitter"></i></a></li>
|
<li><a href="https://twitter.com/austriachatnet"><i class="fa fa-twitter"></i></a></li>
|
||||||
</ul>
|
</ul>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="six columns info">
|
<div class="six columns info">
|
||||||
|
@ -23,25 +23,13 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="copyright">© Copyright 2017 AustriaChat.net. Design by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a>.</p>
|
<p class="copyright">© Copyright 2025 FunCh.at. Design by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a>.</p>
|
||||||
|
|
||||||
</div> <!-- End row -->
|
</div> <!-- End row -->
|
||||||
|
|
||||||
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-chevron-up"></i></a></div>
|
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-chevron-up"></i></a></div>
|
||||||
|
|
||||||
</footer> <!-- End Footer-->
|
</footer> <!-- End Footer-->
|
||||||
{literal}
|
|
||||||
<script>
|
|
||||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
||||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
||||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
||||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
||||||
|
|
||||||
ga('create', 'UA-96528626-1', 'auto');
|
|
||||||
ga('send', 'pageview');
|
|
||||||
|
|
||||||
</script>
|
|
||||||
{/literal}
|
|
||||||
<!-- Java Script
|
<!-- Java Script
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||||
|
@ -50,5 +38,6 @@
|
||||||
<script src="js/main.js"></script>
|
<script src="js/main.js"></script>
|
||||||
<script src="/js/odo/odometer.min.js"></script>
|
<script src="/js/odo/odometer.min.js"></script>
|
||||||
{$footer}
|
{$footer}
|
||||||
|
-->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Add table
Add a link
Reference in a new issue