mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 15:36:18 +00:00
WIP preserve local changes before duckie merge
This commit is contained in:
@@ -0,0 +1,437 @@
|
||||
<!doctype html>
|
||||
<html lang="it">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Nitro Current Messenger Mockup</title>
|
||||
<style>
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #27313a;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.nitro-card-shell {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
border: 2px solid #000;
|
||||
border-radius: 10px;
|
||||
background: #f2f2eb;
|
||||
box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
|
||||
}
|
||||
|
||||
.nitro-card-header-shell {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 31px;
|
||||
max-height: 31px;
|
||||
border: 2px solid #3c88a6;
|
||||
border-bottom-color: #000;
|
||||
border-radius: 8px 8px 0 0;
|
||||
background: #30728c;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.nitro-card-title {
|
||||
margin: 0 auto;
|
||||
color: #fff;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.nitro-card-close-button {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
min-width: 20px;
|
||||
border: 2px solid #000;
|
||||
border-radius: 4px;
|
||||
background: #bf2c2c;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nitro-card-close-button::before,
|
||||
.nitro-card-close-button::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 10px;
|
||||
height: 2px;
|
||||
border-radius: 2px;
|
||||
background: #fff;
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
.nitro-card-close-button::before {
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
}
|
||||
|
||||
.nitro-card-close-button::after {
|
||||
transform: translate(-50%, -50%) rotate(-45deg);
|
||||
}
|
||||
|
||||
.nitro-card-content-shell {
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.nitro-friends-messenger {
|
||||
width: 800px;
|
||||
height: 720px;
|
||||
}
|
||||
|
||||
.messenger-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 4fr 8fr;
|
||||
gap: 8px;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.messenger-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.messenger-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.layout-grid-item {
|
||||
position: relative;
|
||||
min-height: 50px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #7f8b94;
|
||||
border-radius: 4px;
|
||||
background: #d9e4ea;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.layout-grid-item.active {
|
||||
background: #f7fbff;
|
||||
box-shadow: inset 0 0 0 2px #4d9fc7;
|
||||
}
|
||||
|
||||
.layout-item-count {
|
||||
position: absolute;
|
||||
right: 4px;
|
||||
top: 4px;
|
||||
min-width: 18px;
|
||||
padding: 1px 4px;
|
||||
border-radius: 9px;
|
||||
background: #f2d64b;
|
||||
color: #000;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.friend-row {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
gap: 4px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.avatar-head {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 80px;
|
||||
flex-shrink: 0;
|
||||
align-self: flex-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.avatar-head img {
|
||||
position: absolute;
|
||||
left: -16px;
|
||||
top: -13px;
|
||||
width: 64px;
|
||||
height: auto;
|
||||
image-rendering: auto;
|
||||
}
|
||||
|
||||
.friend-name {
|
||||
align-self: center;
|
||||
min-width: 0;
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.active-thread-title {
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.actions-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.actions-left {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 28px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #1e7295;
|
||||
border-radius: 4px;
|
||||
background: #1e7295;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
box-shadow: inset 0 2px rgba(255,255,255,.15), inset 0 -2px rgba(0,0,0,.10), 0 1px rgba(0,0,0,.10);
|
||||
}
|
||||
|
||||
.button.danger {
|
||||
border-color: #a81a12;
|
||||
background: #a81a12;
|
||||
}
|
||||
|
||||
.button.success {
|
||||
border-color: #00800b;
|
||||
background: #00800b;
|
||||
}
|
||||
|
||||
.mini-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 3px;
|
||||
background: rgba(255,255,255,.25);
|
||||
}
|
||||
|
||||
.chat-messages {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
background: #cfd7dd;
|
||||
}
|
||||
|
||||
.thread-group {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.thread-group.own {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.message-avatar {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.message-avatar img {
|
||||
position: absolute;
|
||||
left: -19px;
|
||||
top: -22px;
|
||||
width: 72px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.message-bubble {
|
||||
position: relative;
|
||||
max-width: 420px;
|
||||
margin-bottom: 8px;
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
background: #dfdfdf;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.message-bubble.left::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: -8px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-right: 8px solid #dfdfdf;
|
||||
border-top: 8px solid transparent;
|
||||
border-bottom: 8px solid transparent;
|
||||
}
|
||||
|
||||
.message-bubble.right::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: -8px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 8px solid #dfdfdf;
|
||||
border-top: 8px solid transparent;
|
||||
border-bottom: 8px solid transparent;
|
||||
}
|
||||
|
||||
.message-header {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.message-time {
|
||||
color: #6b7280;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.message-line {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.input-row {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.input-row input {
|
||||
flex: 1;
|
||||
min-height: 28px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #9aa6ad;
|
||||
border-radius: 4px;
|
||||
outline: none;
|
||||
font-size: 13px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="nitro-card-shell nitro-friends-messenger">
|
||||
<div class="nitro-card-header-shell">
|
||||
<span class="nitro-card-title">Le tue chat aperte (2)</span>
|
||||
<div class="nitro-card-close-button"></div>
|
||||
</div>
|
||||
|
||||
<div class="nitro-card-content-shell">
|
||||
<div class="messenger-grid">
|
||||
<div class="messenger-column">
|
||||
<div class="section-title">Messenger</div>
|
||||
<div class="messenger-list">
|
||||
<div class="layout-grid-item active">
|
||||
<div class="layout-item-count">1</div>
|
||||
<div class="friend-row">
|
||||
<div class="avatar-head">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&headonly=1&size=l">
|
||||
</div>
|
||||
<div class="friend-name">Jarchy</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layout-grid-item">
|
||||
<div class="friend-row">
|
||||
<div class="avatar-head">
|
||||
<img alt=",Homy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=2&head_direction=2&headonly=1&size=l">
|
||||
</div>
|
||||
<div class="friend-name">,Homy</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="messenger-column">
|
||||
<div class="active-thread-title">Tu + Jarchy</div>
|
||||
|
||||
<div class="actions-row">
|
||||
<div class="actions-left">
|
||||
<button class="button"><span class="mini-icon"></span></button>
|
||||
<button class="button"><span class="mini-icon"></span></button>
|
||||
<button class="button danger">Denuncia</button>
|
||||
</div>
|
||||
<button class="button">×</button>
|
||||
</div>
|
||||
|
||||
<div class="chat-messages">
|
||||
<div class="thread-group">
|
||||
<div class="message-avatar">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div>
|
||||
<div class="message-bubble left">
|
||||
<div class="message-header">Jarchy</div>
|
||||
<div class="message-line">dddove sei?</div>
|
||||
</div>
|
||||
<div class="message-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="thread-group own">
|
||||
<div>
|
||||
<div class="message-bubble right">
|
||||
<div class="message-header">Tu</div>
|
||||
<div class="message-line">su</div>
|
||||
<div class="message-line">slogga</div>
|
||||
<div class="message-line">vieni li</div>
|
||||
</div>
|
||||
<div class="message-time">6 ore fa</div>
|
||||
</div>
|
||||
<div class="message-avatar own">
|
||||
<img alt="Tu" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=4&head_direction=4&size=l">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="thread-group">
|
||||
<div class="message-avatar">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div>
|
||||
<div class="message-bubble left">
|
||||
<div class="message-header">Jarchy</div>
|
||||
<div class="message-line">arrivo</div>
|
||||
</div>
|
||||
<div class="message-time">6 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input-row">
|
||||
<input value="" placeholder="Fai clic qui per scrivere a Jarchy">
|
||||
<button class="button success">Parla</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
|
||||
<style>
|
||||
*{box-sizing:border-box;margin:0;padding:0;}
|
||||
.root{display:flex;justify-content:center;padding:1.5rem 0;font-family:Arial,Helvetica,sans-serif;}
|
||||
.card{width:332px;height:445px;display:flex;flex-direction:column;border:2px solid #000;border-radius:10px;overflow:hidden;background:#f2f2eb;box-shadow:0 6px 20px rgba(0,0,0,.25);}
|
||||
.hdr{display:flex;align-items:center;justify-content:space-between;padding:0 8px;min-height:30px;background:#30728c;border-bottom:1px solid #000;flex-shrink:0;}
|
||||
.hdr-title{color:#fff;font-size:13px;}
|
||||
.hdr-min{width:18px;height:18px;border:2px solid #000;border-radius:3px;background:#bbb;cursor:pointer;display:flex;align-items:center;justify-content:center;}
|
||||
.hdr-min::after{content:"";width:8px;height:2px;background:#555;display:block;}
|
||||
.avatar-bar{display:flex;gap:4px;padding:6px 8px;border-bottom:1px solid #000;background:#d9e4ea;flex-shrink:0;overflow-x:auto;}
|
||||
.av-item{width:36px;height:36px;border:2px solid #7f8b94;border-radius:4px;background:#c0cdd5;overflow:hidden;position:relative;cursor:pointer;flex-shrink:0;}
|
||||
.av-item.active{border-color:#1e7295;box-shadow:0 0 0 1px #1e7295;}
|
||||
.av-item img{position:absolute;left:50%;top:50%;transform:translate(-50%,-62%) scale(0.65);width:64px;}
|
||||
.av-badge{position:absolute;top:-3px;right:-3px;min-width:12px;height:12px;border-radius:6px;background:#f2d64b;border:1px solid #000;font-size:8px;font-weight:700;color:#000;display:flex;align-items:center;justify-content:center;padding:0 2px;}
|
||||
.thread-hdr{display:flex;align-items:center;justify-content:space-between;padding:4px 8px;border-bottom:1px solid #000;flex-shrink:0;background:#e8eef2;}
|
||||
.thread-name{font-size:12px;font-weight:700;color:#000;}
|
||||
.acts{display:flex;gap:4px;align-items:center;}
|
||||
.btn{display:inline-flex;align-items:center;justify-content:center;height:22px;padding:0 7px;border:1px solid #1e7295;border-radius:3px;background:#1e7295;color:#fff;font-size:11px;cursor:pointer;}
|
||||
.btn.danger{border-color:#a81a12;background:#a81a12;}
|
||||
.btn.close-btn{border-color:#888;background:#ccc;color:#000;font-size:13px;padding:0 5px;}
|
||||
.btn.icon-btn{width:22px;padding:0;}
|
||||
.icon-sq{width:10px;height:10px;background:rgba(255,255,255,.35);border-radius:1px;display:block;}
|
||||
.messages{flex:1;min-height:0;overflow-y:auto;padding:8px;background:#cfd7dd;display:flex;flex-direction:column;gap:8px;}
|
||||
.msg-row{display:flex;gap:6px;align-items:flex-start;}
|
||||
.msg-row.own{flex-direction:row-reverse;}
|
||||
.msg-av{width:40px;height:52px;flex-shrink:0;position:relative;overflow:hidden;}
|
||||
.msg-av img{position:absolute;left:50%;top:0;transform:translateX(-50%);width:64px;}
|
||||
.msg-body{display:flex;flex-direction:column;gap:2px;max-width:200px;}
|
||||
.bubble{background:#dfdfdf;border:1px solid #bbb;border-radius:3px;padding:4px 7px;font-size:12px;line-height:1.4;color:#000;position:relative;}
|
||||
.bubble.left::before{content:"";position:absolute;top:10px;left:-7px;border:6px solid transparent;border-right-color:#bbb;}
|
||||
.bubble.left::after{content:"";position:absolute;top:10px;left:-5px;border:5px solid transparent;border-right-color:#dfdfdf;}
|
||||
.bubble.right::before{content:"";position:absolute;top:10px;right:-7px;border:6px solid transparent;border-left-color:#bbb;}
|
||||
.bubble.right::after{content:"";position:absolute;top:10px;right:-5px;border:5px solid transparent;border-left-color:#dfdfdf;}
|
||||
.msg-time{font-size:10px;color:#666;}
|
||||
.msg-row.own .msg-time{text-align:right;}
|
||||
.input-row{display:flex;gap:5px;padding:6px 8px;border-top:1px solid #000;background:#e8eef2;flex-shrink:0;align-items:center;}
|
||||
.input-row input{flex:1;height:26px;border:1px solid #9aa6ad;border-radius:3px;padding:0 7px;font-size:12px;background:#fff;outline:none;}
|
||||
.btn.send{border-color:#00800b;background:#00800b;}
|
||||
</style>
|
||||
<div class="root">
|
||||
<div class="card">
|
||||
<div class="hdr">
|
||||
<span class="hdr-title">Le tue chat aperte (7)</span>
|
||||
<div class="hdr-min"></div>
|
||||
</div>
|
||||
|
||||
<div class="avatar-bar">
|
||||
<div class="av-item active" style="position:relative;">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l">
|
||||
<span class="av-badge">1</span>
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt=",Homy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u3" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-1.ch-215-62.lg-280-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u4" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-3096-1370.ch-3030-110.lg-3023-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u5" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-3.ch-210-66.lg-270-82&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u6" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-185-10.ch-220-1338.lg-275-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u7" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-2.ch-230-62.lg-285-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="thread-hdr">
|
||||
<span class="thread-name">Tu + Jarchy</span>
|
||||
<div class="acts">
|
||||
<button class="btn icon-btn"><span class="icon-sq"></span></button>
|
||||
<button class="btn icon-btn"><span class="icon-sq"></span></button>
|
||||
<button class="btn danger">Denuncia</button>
|
||||
<button class="btn close-btn">×</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="messages">
|
||||
<div class="msg-row">
|
||||
<div class="msg-av"><img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l"></div>
|
||||
<div class="msg-body">
|
||||
<div style="font-size:11px;font-weight:700;color:#000;">Jarchy:</div>
|
||||
<div class="bubble left">dddove sei?</div>
|
||||
<div class="msg-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="msg-row own">
|
||||
<div class="msg-av"><img alt="Tu" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=4&head_direction=4&size=l"></div>
|
||||
<div class="msg-body">
|
||||
<div style="font-size:11px;font-weight:700;color:#000;text-align:right;">,Homy:</div>
|
||||
<div class="bubble right">su<br>slogga<br>vieni li</div>
|
||||
<div class="msg-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="msg-row">
|
||||
<div class="msg-av"><img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l"></div>
|
||||
<div class="msg-body">
|
||||
<div style="font-size:11px;font-weight:700;color:#000;">Jarchy:</div>
|
||||
<div class="bubble left">arrivo</div>
|
||||
<div class="msg-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input-row">
|
||||
<input placeholder="Fai clic qui per scrivere a Jarchy" type="text">
|
||||
<button class="btn send">Parla</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -10,13 +10,15 @@
|
||||
"${gamedata.url}/ExternalTexts.json",
|
||||
"${gamedata.url}/UITexts.json"
|
||||
],
|
||||
"external.texts.translation.url": "${gamedata.url}/text_translate/ExternalTexts_%locale%.json?t=%timestamp%",
|
||||
"external.samples.url": "${hof.furni.url}/mp3/sound_machine_sample_%sample%.mp3",
|
||||
"furnidata.url": "${gamedata.url}/FurnitureData.json?v=2",
|
||||
"productdata.url": "${gamedata.url}/ProductData.json?v=2",
|
||||
"avatar.actions.url": "${gamedata.url}/HabboAvatarActions.json?v=2",
|
||||
"avatar.figuredata.url": "${gamedata.url}/FigureData.json?v=2",
|
||||
"avatar.figuremap.url": "${gamedata.url}/FigureMap.json?v=2",
|
||||
"avatar.effectmap.url": "${gamedata.url}/EffectMap.json?v=2",
|
||||
"furnidata.url": "${gamedata.url}/FurnitureData.json?t=%timestamp%",
|
||||
"furnidata.translation.url": "${gamedata.url}/furniture_translate/FurnitureData_%locale%.json?t=%timestamp%",
|
||||
"productdata.url": "${gamedata.url}/ProductData.json?t=%timestamp%",
|
||||
"avatar.actions.url": "${gamedata.url}/HabboAvatarActions.json?t=%timestamp%",
|
||||
"avatar.figuredata.url": "${gamedata.url}/FigureData.json?t=%timestamp%",
|
||||
"avatar.figuremap.url": "${gamedata.url}/FigureMap.json?t=%timestamp%",
|
||||
"avatar.effectmap.url": "${gamedata.url}/EffectMap.json?t=%timestamp%",
|
||||
"avatar.asset.url": "${asset.url}/figure/%libname%.nitro",
|
||||
"avatar.asset.effect.url": "${asset.url}/effect/%libname%.nitro",
|
||||
"furni.asset.url": "${asset.url}/furniture/%libname%.nitro",
|
||||
@@ -584,4 +586,4 @@
|
||||
"${images.url}/clear_icon.png",
|
||||
"${images.url}/big_arrow.png"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
Place localized external text files here, for example:
|
||||
|
||||
- `ExternalTexts_br.json`
|
||||
- `ExternalTexts_com.json`
|
||||
- `ExternalTexts_de.json`
|
||||
- `ExternalTexts_es.json`
|
||||
- `ExternalTexts_fi.json`
|
||||
- `ExternalTexts_fr.json`
|
||||
- `ExternalTexts_it.json`
|
||||
- `ExternalTexts_nl.json`
|
||||
- `ExternalTexts_tr.json`
|
||||
|
||||
The client loads them from `/text_translate/` when selected in the Google Translate panel.
|
||||
Reference in New Issue
Block a user