Apertura del repositorio

This commit is contained in:
2025-05-24 18:09:39 -03:00
parent 76e6359dad
commit d883ddd0d0
35253 changed files with 2891973 additions and 2 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<labels>
<label
name="en"
value="System default" />
<label
name="az"
value="Sistem standartı" />
<label
name="it"
value="Default di sistema" />
<label
name="ja"
value="システムデフォルト" />
<label
name="pl"
value="Domyślny" />
<label
name="pt"
value="Padrão" />
<label
name="ru"
value="Язык системы" />
<label
name="tr"
value="Sistem varsayılanı" />
<label
name="zh"
value="系統預設" />
<label
name="da"
value="System standard" />
<label
name="de"
value="Systemvorgabe" />
<label
name="es"
value="Predeterminado del sistema" />
<label
name="fr"
value="Choix par défaut" />
</labels>
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

@@ -0,0 +1,22 @@
<html>
<head>
<style>
body {
background-color:#000;
background-image: linear-gradient(white 2px, transparent 2px),
linear-gradient(90deg, white 2px, transparent 2px),
linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;
}
</style>
</head>
<body>
<script>
function start() {
}
document.addEventListener('DOMContentLoaded', start);
</script>
</body>
</html>
@@ -0,0 +1,150 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background: #333;
padding: 0;
margin: 0;
overflow: hidden;
}
#error_message {
z-index: 2;
background-color: #aa3333;
overflow: hidden;
display: none;
pointer-events:none;
font-family: monospace;
font-size: 3em;
color: white;
border-radius: 1em;
padding: 1em;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)
}
#quality_window {
user-select: none;
z-index: 100;
position: absolute;
left: 8px;
top: 8px;
width: auto;
border-radius: 16px;
height: auto;
font-size: 1.5em;
text-align: center;
font-family: monospace;
background-color: rgba(200,200,200,0.35);
color: #000;
padding-left: 16px;
padding-right: 16px;
padding-top: 8px;
padding-bottom: 8px;
}
</style>
</head>
<body>
<script src="js/three.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/jpeg_encoder_basic.js" type="text/javascript"></script>
<script src="js/CubemapToEquirectangular.js"></script>
<script>
var controls, camera, scene, renderer, equiManaged;
function init(eqr_width, eqr_height, img_path, camera_fov, initial_heading, overlay_label) {
camera = new THREE.PerspectiveCamera(camera_fov, window.innerWidth / window.innerHeight, 0.1, 100);
camera.position.x = 0.01;
scene = new THREE.Scene();
renderer = new THREE.WebGLRenderer();
renderer.autoClear = false;
renderer.setPixelRatio(window.devicePixelRatio);
renderer.setSize(window.innerWidth, window.innerHeight);
var cubemap_img_js_url = img_path + '/cubemap_img.js';
var cubemap_image_js = document.createElement('script');
cubemap_image_js.setAttribute('type', 'text/javascript');
cubemap_image_js.setAttribute('src', cubemap_img_js_url);
document.getElementsByTagName('head')[0].appendChild(cubemap_image_js);
cubemap_image_js.onload = function () {
document.getElementById("error_message").style.display = 'none'
scene.background = new THREE.CubeTextureLoader().load(cubemap_img_js);
equiManaged = new CubemapToEquirectangular(renderer, true, eqr_width, eqr_height);
};
cubemap_image_js.onerror = function () {
document.getElementById("error_message").style.display = 'inline-block'
};
document.body.appendChild(renderer.domElement);
window.addEventListener('resize', onWindowResize, false);
controls = new THREE.OrbitControls(camera, renderer.domElement);
controls.autoRotate = true;
controls.autoRotateSpeed = 0.2;
controls.enableZoom = false;
controls.enablePan = false;
controls.enableDamping = true;
controls.dampingFactor = 0.15;
controls.rotateSpeed = -0.5;
// initial direction the camera faces
// We cannot edit camera rotation directly as the OrbitControls will
// immediately reset it so we need some math to tell the controls
// there to look at initially. Note there is also an offset of π/2 since
// the Viewer and three.js have slightly different coordinate systems
var spherical_target = new THREE.Spherical(1, Math.PI / 2, initial_heading + Math.PI / 2)
var target = new THREE.Vector3().setFromSpherical(spherical_target)
camera.position.set(target.x, target.y, target.z);
controls.update();
controls.saveState();
// update the text that gets passed in from the C++ app for
// the translucent overlay label that tells us what we are seeing
document.getElementById('quality_window').innerHTML = overlay_label;
animate();
}
window.addEventListener(
'mousedown',
function (event) {
controls.autoRotate = false;
},
false
);
window.addEventListener(
'dblclick',
function (event) {
controls.autoRotate = true;
},
false
);
function saveAsEqrImage(filename, xmp_details) {
equiManaged.update(camera, scene, filename, xmp_details);
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
}
function animate() {
requestAnimationFrame(animate);
controls.update();
renderer.render(scene, camera);
}
</script>
<div id="error_message">UNABLE TO LOAD EQR IMAGE</div>
<div id="quality_window">Preview Quality</div>
</body>
</html>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Indlæser...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Verbindung nicht möglich</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body> <div id="infobox"> <img src="../../unabletoconnect.png"><br/>
<p> Second Life kann keine Verbindung mit dem Anmeldeserver herstellen.
</p>
<p> Überprüfen Sie Ihre Internetverbindung. Falls Ihr Computer oder Netzwerk durch eine Firewall oder einen Proxy geschützt ist, so müssen Sie dafür sorgen, dass Second Life auf das Internet zugreifen darf.
</p> <div id="submitbtn">
<input class="input_over" type="submit" value="Erneut versuchen" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> </div> </div>
</div>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Wird geladen...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Offline Help</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
</head>
<body>
<div id="infobox">
<p>
Second Life Offline Help.
</p>
<p>
You are not online and are configured not to fetch help remotely. This is all the help that is available
until more stuff is done. Yeah.
</p>
</div>
</div>
</body>
@@ -0,0 +1,32 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Unable to Connect</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
</head>
<body>
<div id="infobox">
<img src="../../unabletoconnect.png"><br/>
<p>
Second Life can't establish a connection to the login server.
</p>
<p>
Please check your internet connection. If your computer or network is protected by a firewall or proxy, make sure that Second Life is permitted to access the network.
</p>
<div id="submitbtn">
<input class="input_over" type="submit" value="Try Again" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" />
</div>
</div>
</div>
</body>
@@ -0,0 +1,9 @@
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;loading...
</td>
</tr>
</table>
</body>
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>No se puede establecer una conexión</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body> <div id="infobox"> <img src="../../unabletoconnect.png"><br/>
<p> Second Life no puede establecer una conexión con el servidor de inicio de sesión.
</p>
<p> Compruebe la conexión a Internet. Si su computadora o red están protegidas con un firewall o proxy, asegúrese de permitirle el acceso a Second Life a la red.
</p> <div id="submitbtn">
<input class="input_over" type="submit" value="Volver a intentarlo" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> </div> </div>
</div>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Cargando...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Connexion impossible</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body> <div id="infobox"> <img src="../../unabletoconnect.png"><br/>
<p> Second Life ne peut pas établir de connexion avec le serveur.
</p>
<p> Vérifiez votre connexion Internet. Si votre ordinateur ou votre réseau est protégé par un.pare-feu ou un proxy, assurez-vous que Second Life a l'autorisation d'accéder au réseau.
</p> <div id="submitbtn">
<input class="input_over" type="submit" value="Essayer à nouveau" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> </div> </div>
</div>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Chargement...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Betöltés folyamatban...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Attendi...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="ja" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta encoding="utf-8" />
<title>オフラインヘルプ</title>
<style>
body {
background-color: #000000;
font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic',
sans-serif;
font-size: 62.5%;
color: #e9f1f8;
width: 100%;
padding: 0px;
margin: 0px;
}
#infobox {
position: absolute;
top: 40%;
left: 50%;
z-index: 1;
padding: 0;
width: 592px;
margin-left: -296px;
margin-top: -150px;
text-align: center;
font-size: 1.2em;
color: #ccc;
}
</style>
</head>
<body>
<div id="infobox">
<p>Second Lifeオフラインヘルプ</p>
<p>
オンラインではなく、リモートでヘルプを取得しないように構成されています。
<br />
これは、さらに作業が完了するまで利用できるすべてのヘルプです。うん。
</p>
</div>
</body>
</html>
@@ -0,0 +1,99 @@
<!DOCTYPE html>
<html lang="ja" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta encoding="utf-8" />
<title>接続できません</title>
<style>
body {
background-color: #000000;
font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic',
sans-serif;
font-size: 62.5%;
color: #e9f1f8;
width: 100%;
padding: 0px;
margin: 0px;
}
a {
color: #93a9d5;
}
a:active {
color: #50607c;
text-decoration: underline;
}
a:hover {
color: #ff7900;
text-decoration: underline;
}
#infobox {
position: absolute;
top: 40%;
left: 50%;
z-index: 1;
padding: 0;
width: 592px;
margin-left: -296px;
margin-top: -150px;
text-align: center;
font-size: 1.2em;
color: #ccc;
}
#infobox #submitbtn {
padding: 15px 3px 5px 15px;
height: 28px;
width: 127px;
margin-left: 244px;
}
#infobox #submitbtn input {
text-transform: capitalize;
color: #fff;
font-size: 1em;
height: 28px;
width: 127px;
border: none;
font-weight: normal;
background: url(../../btn_purplepill_bg.png) bottom left no-repeat;
vertical-align: text-bottom;
}
#infobox #submitbtn input:hover.input_over,
#login_box #submitbtn input:hover.input_off {
color: #fff;
border: none;
background: url(../../btn_purplepill_bg.png) bottom right no-repeat;
}
#infobox #submitbtn input:active.input_over {
color: #fff;
border: none;
background: url(../../btn_purplepill_bg.png) top left no-repeat;
}
#infobox #submitbtn input.pressed {
color: #888;
border: none;
background: url(../../btn_purplepill_bg.png) top right no-repeat;
}
</style>
</head>
<body>
<div id="infobox">
<img src="../../unabletoconnect.png" alt="unabletoconnect" />
<br />
<p>Second Lifeによるログインサーバーへの接続が確立できません。</p>
<p>
インターネット接続を確認してください。
お使いのコンピュータやネットワークがファイヤウォールまたはプロキシにより保護されている場合は、
Second
Lifeによるネットワークへのアクセスが許可されていることを確認してください。
</p>
<div id="submitbtn">
<input
class="input_over"
type="submit"
value="もう一度試す"
onclick="document.location='secondlife:\/\/\/app/login_refresh'; this.className='pressed';"
onmouseover="this.className='input_over';"
onmouseout="this.className='input_off';"
/>
</div>
</div>
</body>
</html>
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="ja" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>読み込んでいます…</title>
<style>
body {
background-color: #000000;
font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic',
sans-serif;
font-size: 62.5%;
color: #e9f1f8;
text-align: center;
}
</style>
</head>
<body>
<img src="../../en-us/loading/sl_logo_rotate_black.gif" alt="loading" />
<br />
<p>&nbsp;&nbsp;&nbsp;読み込んでいます…</p>
</body>
</html>
@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>연결할 수 없습니다.</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body> <div id="infobox"> <img src="../../unabletoconnect.png"><br/>
<p> Second Life에서 로그인 서버에 대한 보안 연결을 설정할 수 없습니다.
</p>
<p> 인터넷 연결을 확인하십시오. 사용 중인 컴퓨터 또는 네트워크가 방화벽이나 프록시에 의해 보호된 경우 Second Life가 네트워크에 액세스할 수 있도록 허가되었는지 확인하십시오.
</p> <div id="submitbtn">
<input class="input_over" type="submit" value="다시 시도" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> </div> </div>
</div>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Laden...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Ładowanie...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Não é Possível Conectar</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body> <div id="infobox"> <img src="../../unabletoconnect.png"><br/>
<p> O Second Life não consegue estabelecer uma conexão com o servidor de login.
</p>
<p> Verifique a sua conexão com a Internet. Se o seu computador ou sua rede estiverem protegidos por um firewall ou um proxy, verifique se o Second Life tem permissão de acesso na rede.
</p> <div id="submitbtn">
<input class="input_over" type="submit" value="Tentar Novamente" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> </div> </div>
</div>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Carregando...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Загрузка...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Yükleniyor...
</td>
</tr>
</table>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;Завантаж...
</td>
</tr>
</table>
</body>
Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无法连接</title>
<style>
body {background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;width:100%;padding:0px;margin:0px;}
a {color:#93a9d5;}
a:active {color:#50607C;text-decoration:underline;}
a:hover {color:#ff7900;text-decoration:underline;}
#infobox{position:absolute;top:40%;left:50%;z-index:1;padding:0;width:592px;margin-left:-296px;margin-top:-150px;text-align:center;font-size:1.2em; color:#ccc;}
#infobox #submitbtn {padding:15px 3px 5px 15px;height:28px;width:127px;margin-left:244px;}
#infobox #submitbtn input {text-transform:capitalize;color:#fff;font-size:1.0em;height:28px;width:127px;border:none;font-weight:normal;background:url(../../btn_purplepill_bg.png) bottom left no-repeat;vertical-align:text-bottom;font-weight:bold;}
#infobox #submitbtn input:hover.input_over, #login_box #submitbtn input:hover.input_off {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) bottom right no-repeat;}
#infobox #submitbtn input:active.input_over {color:#fff;border:none;background:url(../../btn_purplepill_bg.png) top left no-repeat;}
#infobox #submitbtn input.pressed {color:#888;border:none;background:url(../../btn_purplepill_bg.png) top right no-repeat;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body> <div id="infobox"> <img src="../../unabletoconnect.png"><br/>
<p> Second Life无法与登录服务器连接。
</p>
<p> 请检查您的因特网连接 如果您的计算机或网络由防火墙或代理器保护,请确认Second Life能在该网络里访问因特网。
</p> <div id="submitbtn">
<input class="input_over" type="submit" value="请再试一次" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> </div> </div>
</div>
</body>
@@ -0,0 +1,10 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body style="background-color:#000000;font-family:verdana,helvetica,sans-serif;font-size:62.5%;color:#e9f1f8;">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle" style="font-size:0.8em;">
<img src="../../en-us/loading/sl_logo_rotate_black.gif" align="absmiddle"><br/>&nbsp;&nbsp;&nbsp;请等待...
</td>
</tr>
</table>
</body>
+15
View File
@@ -0,0 +1,15 @@
<llsd>
<map>
<key>FSLegacyEdgeSnap</key>
<map>
<key>Comment</key>
<string>Use old method for adjusting edge snap regions.</string>
<key>Persist</key>
<integer>1</integer>
<key>Type</key>
<string>Boolean</string>
<key>Value</key>
<integer>0</integer>
</map>
</map>
</llsd>
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 371 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 914 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 981 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 959 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 945 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 547 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 547 B

Some files were not shown because too many files have changed in this diff Show More