Merge bento-box
commit
fee815a45d
|
|
@ -3329,14 +3329,6 @@
|
|||
<key>arguments</key>
|
||||
<array>
|
||||
<string>..\indra</string>
|
||||
<string>&&</string>
|
||||
<string>..\indra\tools\vstool\VSTool.exe</string>
|
||||
<string>--solution</string>
|
||||
<string>SecondLife.sln</string>
|
||||
<string>--config</string>
|
||||
<string>RelWithDebInfo</string>
|
||||
<string>--startup</string>
|
||||
<string>secondlife-bin</string>
|
||||
</array>
|
||||
<key>options</key>
|
||||
<array>
|
||||
|
|
@ -3372,20 +3364,11 @@
|
|||
<key>arguments</key>
|
||||
<array>
|
||||
<string>..\indra</string>
|
||||
<string>&&</string>
|
||||
<string>..\indra\tools\vstool\VSTool.exe</string>
|
||||
<string>--solution</string>
|
||||
<string>SecondLife.sln</string>
|
||||
<string>--config</string>
|
||||
<string>RelWithDebInfo</string>
|
||||
<string>--startup</string>
|
||||
<string>secondlife-bin</string>
|
||||
</array>
|
||||
<key>options</key>
|
||||
<array>
|
||||
<string>-G</string>
|
||||
<string>"Visual Studio 12"</string>
|
||||
<string>-DUNATTENDED:BOOL=ON</string>
|
||||
<string>-DINSTALL_PROPRIETARY=FALSE</string>
|
||||
<string>-DUSE_KDU=FALSE</string>
|
||||
</array>
|
||||
|
|
@ -3414,14 +3397,6 @@
|
|||
<key>arguments</key>
|
||||
<array>
|
||||
<string>..\indra</string>
|
||||
<string>&&</string>
|
||||
<string>..\indra\tools\vstool\VSTool.exe</string>
|
||||
<string>--solution</string>
|
||||
<string>SecondLife.sln</string>
|
||||
<string>--config</string>
|
||||
<string>Release</string>
|
||||
<string>--startup</string>
|
||||
<string>secondlife-bin</string>
|
||||
</array>
|
||||
<key>options</key>
|
||||
<array>
|
||||
|
|
@ -3453,20 +3428,11 @@
|
|||
<key>arguments</key>
|
||||
<array>
|
||||
<string>..\indra</string>
|
||||
<string>&&</string>
|
||||
<string>..\indra\tools\vstool\VSTool.exe</string>
|
||||
<string>--solution</string>
|
||||
<string>SecondLife.sln</string>
|
||||
<string>--config</string>
|
||||
<string>Release</string>
|
||||
<string>--startup</string>
|
||||
<string>secondlife-bin</string>
|
||||
</array>
|
||||
<key>options</key>
|
||||
<array>
|
||||
<string>-G</string>
|
||||
<string>"Visual Studio 12"</string>
|
||||
<string>-DUNATTENDED:BOOL=ON</string>
|
||||
<string>-DINSTALL_PROPRIETARY=FALSE</string>
|
||||
<string>-DUSE_KDU=FALSE</string>
|
||||
</array>
|
||||
|
|
|
|||
1
build.sh
1
build.sh
|
|
@ -97,6 +97,7 @@ pre_build()
|
|||
|
||||
"$autobuild" configure --quiet -c $variant -- \
|
||||
-DPACKAGE:BOOL=ON \
|
||||
-DUNATTENDED:BOOL=ON \
|
||||
-DRELEASE_CRASH_REPORTING:BOOL=ON \
|
||||
-DVIEWER_CHANNEL:STRING="\"$viewer_channel\"" \
|
||||
-DGRID:STRING="\"$viewer_grid\"" \
|
||||
|
|
|
|||
|
|
@ -684,18 +684,16 @@ BOOL LLAvatarAppearance::allocateCharacterJoints( S32 num )
|
|||
BOOL LLAvatarAppearance::buildSkeleton(const LLAvatarSkeletonInfo *info)
|
||||
{
|
||||
LL_DEBUGS("BVH") << "numBones " << info->mNumBones << " numCollisionVolumes " << info->mNumCollisionVolumes << LL_ENDL;
|
||||
//-------------------------------------------------------------------------
|
||||
mNextJointNum = 0;
|
||||
|
||||
// allocate joints
|
||||
//-------------------------------------------------------------------------
|
||||
if (!allocateCharacterJoints(info->mNumBones))
|
||||
{
|
||||
LL_ERRS() << "Can't allocate " << info->mNumBones << " joints" << LL_ENDL;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// allocate volumes
|
||||
//-------------------------------------------------------------------------
|
||||
if (info->mNumCollisionVolumes)
|
||||
{
|
||||
if (!allocateCollisionVolumes(info->mNumCollisionVolumes))
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ public:
|
|||
res.add(z);
|
||||
}
|
||||
|
||||
inline void affineTransform(const LLVector4a& v, LLVector4a& res)
|
||||
inline void affineTransformSSE(const LLVector4a& v, LLVector4a& res)
|
||||
{
|
||||
LLVector4a x,y,z;
|
||||
|
||||
|
|
@ -137,6 +137,20 @@ public:
|
|||
z.add(mMatrix[3]);
|
||||
res.setAdd(x,z);
|
||||
}
|
||||
|
||||
inline void affineTransformNonSSE(const LLVector4a& v, LLVector4a& res)
|
||||
{
|
||||
F32 x = v[0] * mMatrix[0][0] + v[1] * mMatrix[1][0] + v[2] * mMatrix[2][0] + mMatrix[3][0];
|
||||
F32 y = v[0] * mMatrix[0][1] + v[1] * mMatrix[1][1] + v[2] * mMatrix[2][1] + mMatrix[3][1];
|
||||
F32 z = v[0] * mMatrix[0][2] + v[1] * mMatrix[1][2] + v[2] * mMatrix[2][2] + mMatrix[3][2];
|
||||
F32 w = 1.0f;
|
||||
res.set(x,y,z,w);
|
||||
}
|
||||
|
||||
inline void affineTransform(const LLVector4a& v, LLVector4a& res)
|
||||
{
|
||||
affineTransformSSE(v,res);
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -180,6 +180,23 @@ void LLModelLoader::run()
|
|||
doOnIdleOneTime(boost::bind(&LLModelLoader::loadModelCallback,this));
|
||||
}
|
||||
|
||||
// static
|
||||
bool LLModelLoader::getSLMFilename(const std::string& model_filename, std::string& slm_filename)
|
||||
{
|
||||
slm_filename = model_filename;
|
||||
|
||||
std::string::size_type i = model_filename.rfind(".");
|
||||
if (i != std::string::npos)
|
||||
{
|
||||
slm_filename.replace(i, model_filename.size()-1, ".slm");
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool LLModelLoader::doLoadModel()
|
||||
{
|
||||
//first, look for a .slm file of the same name that was modified later
|
||||
|
|
@ -187,20 +204,17 @@ bool LLModelLoader::doLoadModel()
|
|||
|
||||
if (mTrySLM)
|
||||
{
|
||||
std::string filename = mFilename;
|
||||
|
||||
std::string::size_type i = filename.rfind(".");
|
||||
if (i != std::string::npos)
|
||||
{
|
||||
filename.replace(i, filename.size()-1, ".slm");
|
||||
std::string slm_filename;
|
||||
if (getSLMFilename(mFilename, slm_filename))
|
||||
{
|
||||
llstat slm_status;
|
||||
if (LLFile::stat(filename, &slm_status) == 0)
|
||||
if (LLFile::stat(slm_filename, &slm_status) == 0)
|
||||
{ //slm file exists
|
||||
llstat dae_status;
|
||||
if (LLFile::stat(mFilename, &dae_status) != 0 ||
|
||||
dae_status.st_mtime < slm_status.st_mtime)
|
||||
{
|
||||
if (loadFromSLM(filename))
|
||||
if (loadFromSLM(slm_filename))
|
||||
{ //slm successfully loaded, if this fails, fall through and
|
||||
//try loading from dae
|
||||
|
||||
|
|
|
|||
|
|
@ -137,7 +137,9 @@ public:
|
|||
virtual void setNoOptimize() { mNoOptimize = true; }
|
||||
|
||||
virtual void run();
|
||||
|
||||
|
||||
static bool getSLMFilename(const std::string& model_filename, std::string& slm_filename);
|
||||
|
||||
// Will try SLM or derived class OpenFile as appropriate
|
||||
//
|
||||
virtual bool doLoadModel();
|
||||
|
|
|
|||
|
|
@ -1771,6 +1771,7 @@ void LLDrawPoolAvatar::updateRiggedFaceVertexBuffer(
|
|||
LLSkinningUtil::getPerVertexSkinMatrix(weight[j].getF32ptr(), mat, false, final_mat, max_joints);
|
||||
|
||||
LLVector4a& v = vol_face.mPositions[j];
|
||||
|
||||
LLVector4a t;
|
||||
LLVector4a dst;
|
||||
bind_shape_matrix.affineTransform(v, t);
|
||||
|
|
|
|||
|
|
@ -589,6 +589,7 @@ void LLFace::renderSelected(LLViewerTexture *imagep, const LLColor4& color)
|
|||
LLRiggedVolume* rigged = volume->getRiggedVolume();
|
||||
if (rigged)
|
||||
{
|
||||
// BENTO - called when selecting a face during edit of a mesh object
|
||||
LLGLEnable offset(GL_POLYGON_OFFSET_FILL);
|
||||
glPolygonOffset(-1.f, -1.f);
|
||||
gGL.multMatrix((F32*) volume->getRelativeXform().mMatrix);
|
||||
|
|
|
|||
|
|
@ -1725,22 +1725,17 @@ void LLModelPreview::saveUploadData(bool save_skinweights, bool save_joint_posit
|
|||
if (!mLODFile[LLModel::LOD_HIGH].empty())
|
||||
{
|
||||
std::string filename = mLODFile[LLModel::LOD_HIGH];
|
||||
|
||||
std::string::size_type i = filename.rfind(".");
|
||||
if (i != std::string::npos)
|
||||
{
|
||||
filename.replace(i, filename.size()-1, ".slm");
|
||||
saveUploadData(filename, save_skinweights, save_joint_positions);
|
||||
std::string slm_filename;
|
||||
|
||||
if (LLModelLoader::getSLMFilename(filename, slm_filename))
|
||||
{
|
||||
saveUploadData(slm_filename, save_skinweights, save_joint_positions);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void LLModelPreview::saveUploadData(const std::string& filename, bool save_skinweights, bool save_joint_positions)
|
||||
{
|
||||
if (!gSavedSettings.getBOOL("MeshImportUseSLM"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
std::set<LLPointer<LLModel> > meshes;
|
||||
std::map<LLModel*, std::string> mesh_binary;
|
||||
|
|
@ -1887,6 +1882,12 @@ void LLModelPreview::loadModel(std::string filename, S32 lod, bool force_disable
|
|||
}
|
||||
else
|
||||
{
|
||||
// For MAINT-6647, we have set force_disable_slm to true,
|
||||
// which means this code path will never be taken. Trying to
|
||||
// re-use SLM files has never worked properly; in particular,
|
||||
// it tends to force the UI into strange checkbox options
|
||||
// which cannot be altered.
|
||||
|
||||
//only try to load from slm if viewer is configured to do so and this is the
|
||||
//initial model load (not an LoD or physics shape)
|
||||
mModelLoader->mTrySLM = gSavedSettings.getBOOL("MeshImportUseSLM") && mUploadData.empty();
|
||||
|
|
@ -4344,7 +4345,11 @@ void LLFloaterModelPreview::onUpload(void* user_data)
|
|||
bool upload_skinweights = mp->childGetValue("upload_skin").asBoolean();
|
||||
bool upload_joint_positions = mp->childGetValue("upload_joints").asBoolean();
|
||||
|
||||
mp->mModelPreview->saveUploadData(upload_skinweights, upload_joint_positions);
|
||||
|
||||
if (gSavedSettings.getBOOL("MeshImportUseSLM"))
|
||||
{
|
||||
mp->mModelPreview->saveUploadData(upload_skinweights, upload_joint_positions);
|
||||
}
|
||||
|
||||
gMeshRepo.uploadModel(mp->mModelPreview->mUploadData, mp->mModelPreview->mPreviewScale,
|
||||
mp->childGetValue("upload_textures").asBoolean(), upload_skinweights, upload_joint_positions, mp->mUploadModelUrl,
|
||||
|
|
|
|||
|
|
@ -1516,12 +1516,15 @@ void LLVOAvatar::renderBones()
|
|||
avatar_joint_list_t::iterator iter = mSkeleton.begin();
|
||||
avatar_joint_list_t::iterator end = mSkeleton.end();
|
||||
|
||||
static LLVector3 BASE_COLOR_OCCLUDED(1.0f, 0.0f, 0.0f);
|
||||
static LLVector3 BASE_COLOR_VISIBLE(0.5f, 0.5f, 0.5f);
|
||||
static LLVector3 EXTENDED_COLOR_OCCLUDED(0.0f, 1.0f, 0.0f);
|
||||
static LLVector3 EXTENDED_COLOR_VISIBLE(0.5f, 0.5f, 0.5f);
|
||||
// For bones with position overrides defined
|
||||
static LLVector3 OVERRIDE_COLOR_OCCLUDED(1.0f, 0.0f, 0.0f);
|
||||
static LLVector3 OVERRIDE_COLOR_VISIBLE(0.5f, 0.5f, 0.5f);
|
||||
// For bones which are rigged to by at least one attachment
|
||||
static LLVector3 RIGGED_COLOR_OCCLUDED(0.0f, 1.0f, 1.0f);
|
||||
static LLVector3 RIGGED_COLOR_VISIBLE(0.5f, 0.5f, 0.5f);
|
||||
// For bones not otherwise colored
|
||||
static LLVector3 OTHER_COLOR_OCCLUDED(0.0f, 1.0f, 0.0f);
|
||||
static LLVector3 OTHER_COLOR_VISIBLE(0.5f, 0.5f, 0.5f);
|
||||
|
||||
static F32 SPHERE_SCALEF = 0.001f;
|
||||
|
||||
|
|
@ -1534,25 +1537,27 @@ void LLVOAvatar::renderBones()
|
|||
}
|
||||
|
||||
jointp->updateWorldMatrix();
|
||||
LLJoint::SupportCategory sc = jointp->getSupport();
|
||||
|
||||
LLVector3 occ_color, visible_color;
|
||||
|
||||
if (jointIsRiggedTo(jointp->getName()))
|
||||
LLVector3 pos;
|
||||
LLUUID mesh_id;
|
||||
if (jointp->hasAttachmentPosOverride(pos,mesh_id))
|
||||
{
|
||||
occ_color = RIGGED_COLOR_OCCLUDED;
|
||||
visible_color = RIGGED_COLOR_VISIBLE;
|
||||
occ_color = OVERRIDE_COLOR_OCCLUDED;
|
||||
visible_color = OVERRIDE_COLOR_VISIBLE;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sc == LLJoint::SUPPORT_BASE)
|
||||
if (jointIsRiggedTo(jointp->getName()))
|
||||
{
|
||||
occ_color = BASE_COLOR_OCCLUDED;
|
||||
visible_color = BASE_COLOR_VISIBLE;
|
||||
occ_color = RIGGED_COLOR_OCCLUDED;
|
||||
visible_color = RIGGED_COLOR_VISIBLE;
|
||||
}
|
||||
else
|
||||
{
|
||||
occ_color = EXTENDED_COLOR_OCCLUDED;
|
||||
visible_color = EXTENDED_COLOR_VISIBLE;
|
||||
occ_color = OTHER_COLOR_OCCLUDED;
|
||||
visible_color = OTHER_COLOR_VISIBLE;
|
||||
}
|
||||
}
|
||||
LLVector3 begin_pos(0,0,0);
|
||||
|
|
@ -4153,7 +4158,8 @@ BOOL LLVOAvatar::updateCharacter(LLAgent &agent)
|
|||
// that affect the body size calculation, computed body size
|
||||
// can get stale much more easily. Simplest fix is to update
|
||||
// it frequently.
|
||||
computeBodySize();
|
||||
// SL-427: this appears to be too frequent, moving to only do on animation state change.
|
||||
// computeBodySize();
|
||||
|
||||
// correct for the fact that the pelvis is not necessarily the center
|
||||
// of the agent's physical representation
|
||||
|
|
@ -5682,6 +5688,12 @@ void LLVOAvatar::processAnimationStateChanges()
|
|||
//-----------------------------------------------------------------------------
|
||||
BOOL LLVOAvatar::processSingleAnimationStateChange( const LLUUID& anim_id, BOOL start )
|
||||
{
|
||||
// SL-402, SL-427 - we need to update body size often enough to
|
||||
// keep appearances in sync, but not so often that animations
|
||||
// cause constant jiggling of the body or camera. Possible
|
||||
// compromise is to do it on animation changes:
|
||||
computeBodySize();
|
||||
|
||||
BOOL result = FALSE;
|
||||
|
||||
if ( start ) // start animation
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
Avatar
|
||||
</text>
|
||||
<slider label="Maximale Komplexität:" name="IndirectMaxComplexity" tool_tip="Bestimmt, an welchem Punkt ein visuell komplexer Avatar als „Gummibärchen“ dargestellt wird"/>
|
||||
<slider label="Maximale Komplexität:" name="IndirectMaxComplexity" tool_tip="Bestimmt, an welchem Punkt ein visuell komplexer Avatar als JellyDoll dargestellt wird"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<menu_item_call label="IM" name="Send IM..."/>
|
||||
<menu_item_call label="Anrufen" name="Call"/>
|
||||
<menu_item_call label="In Gruppe einladen" name="Invite..."/>
|
||||
<menu_item_call label="Skelett zurücksetzen" name="Reset Skeleton"/>
|
||||
<context_menu label="Belästigung" name="Annoyance">
|
||||
<menu_item_call label="Ignorieren" name="Avatar Mute"/>
|
||||
<menu_item_call label="Freischalten" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<menu_item_call label="Mein Outfit bearbeiten" name="Edit Outfit"/>
|
||||
<menu_item_call label="Meine Form bearbeiten" name="Edit My Shape"/>
|
||||
<menu_item_call label="Schwebehöhe" name="Hover Height"/>
|
||||
<menu_item_call label="Skelett zurücksetzen" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Meine Freunde" name="Friends..."/>
|
||||
<menu_item_call label="Meine Gruppen" name="Groups..."/>
|
||||
<menu_item_call label="Mein Profil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<menu_item_call label="IM" name="Send IM..."/>
|
||||
<menu_item_call label="Anrufen" name="Call"/>
|
||||
<menu_item_call label="In Gruppe einladen" name="Invite..."/>
|
||||
<menu_item_call label="Skelett zurücksetzen" name="Reset Skeleton"/>
|
||||
<context_menu label="Belästigung" name="Remove">
|
||||
<menu_item_call label="Ignorieren" name="Avatar Mute"/>
|
||||
<menu_item_call label="Freischalten" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="Mein Outfit bearbeiten" name="Edit Outfit"/>
|
||||
<menu_item_call label="Meine Form bearbeiten" name="Edit My Shape"/>
|
||||
<menu_item_call label="Schwebehöhe" name="Hover Height"/>
|
||||
<menu_item_call label="Skelett zurücksetzen" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Meine Freunde" name="Friends..."/>
|
||||
<menu_item_call label="Meine Gruppen" name="Groups..."/>
|
||||
<menu_item_call label="Mein Profil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -494,7 +494,7 @@ Der Outfit-Ordner enthält keine Kleidung, Körperteile oder Anhänge.
|
|||
Sie können das Objekt nicht anziehen, weil es noch nicht geladen wurde. Warten Sie kurz und versuchen Sie es dann noch einmal.
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Sie müssen Ihr Passwort eingeben, um sich anmelden zu können.
|
||||
Bitte geben Sie zur Anmeldung Ihr Kennwort ein.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Sie haben ein Feld leer gelassen.
|
||||
|
|
@ -572,7 +572,7 @@ Hinweis: Der Cache wird dabei gelöscht/geleert.
|
|||
Die Port-Einstellungen werden nach einem Neustart von [APP_NAME] wirksam.
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
Diese Änderung der Einstellungen wird nach einem Neustart von [APP_NAME] wirksam.
|
||||
Die Einstellung tritt nach Neustart von [APP_NAME] in Kraft.
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
Das neue Oberflächendesign wird nach einem Neustart von [APP_NAME] angezeigt.
|
||||
|
|
@ -1406,12 +1406,12 @@ Sie können [APP_NAME] normal verwenden. Andere Benutzer können Sie korrekt dar
|
|||
</form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
Ihre [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 Avatar-Komplexität] ist [AGENT_COMPLEXITY].
|
||||
Ihre [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 Avatarkomplexität] ist [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="Warnen, falls meine Avatar-Komplexität für andere zu hoch sein könnte" name="notifyignore"/>
|
||||
<usetemplate ignoretext="Warnen, falls Avatarkomplexität zu hoch ist" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
Ihre [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 Avatar-Komplexität] ist [AGENT_COMPLEXITY].
|
||||
Ihre [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 Avatarkomplexität] ist [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
Installation von [APP_NAME] vollständig abgeschlossen.
|
||||
|
|
@ -1532,8 +1532,8 @@ Ersetzen Sie die Textur [TEXTURE_NUM] mit einer Bilddatei von maximal 1024x1024
|
|||
<usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Sie sind dabei, Werte für den tiefsten Punkt des Geländes zu verwenden, die größer sind als die Werte für den höchsten Punkt. Möchten Sie fortfahren?
|
||||
<usetemplate name="yesnocancelbuttons" yestext="OK" notext="Abbrechen" canceltext="Nicht mehr fragen"/>
|
||||
Sie sind dabei, für Höhenbereiche untere Werte anzugeben, die größer sind als die oberen Werte. Fortfahren?
|
||||
<usetemplate canceltext="Nicht mehr fragen" name="yesnocancelbuttons" notext="Abbrechen" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
Es sind maximal [MAX_AGENTS] zulässige Einwohner erlaubt.
|
||||
|
|
@ -1774,14 +1774,6 @@ Diese Gruppe verlassen?
|
|||
Sie können die Gruppe nicht verlassen, da Sie der letzte Besitzer der Gruppe sind. Weisen Sie die Besitzerrolle zuerst einem anderen Mitglied zu.
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
Verlassen der Gruppe nicht möglich: [reason]
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
Sie haben die Gruppe „[group_name]“ verlassen.
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
Möchten Sie WIRKLICH alle Benutzer aus dem Grid werfen?
|
||||
<usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Alle Benutzer hinauswerfen"/>
|
||||
|
|
@ -2528,8 +2520,8 @@ Möchten Sie den Nicht-stören-Modus deaktivieren, bevor Sie diese Transaktion a
|
|||
<usetemplate ignoretext="Bestätigen, bevor der Ordner Papierkorb im Inventar geleert wird" name="okcancelignore" notext="Abbrechen" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
Ihr Papierkorb läuft über. Dies kann zu Problemen beim Login führen.
|
||||
<usetemplate name="okcancelbuttons" notext="Ich leere den Papierkorb später" yestext="Papierkorb jetzt leeren"/>
|
||||
Ihr Papierkorb läuft über. Dies kann zu Anmeldeproblemen führen.
|
||||
<usetemplate name="okcancelbuttons" notext="Papierkorb später leeren" yestext="Papierkorb jetzt leeren"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
Sind Sie sicher, dass Sie Ihren Reise-, Internet- und Suchverlauf löschen möchten?
|
||||
|
|
@ -3485,10 +3477,10 @@ Diese werden für ein paar Sekunden sicherheitshalber gesperrt.
|
|||
Fehler beim Löschen der Voreinstellung [NAME].
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
Aussehen erfolgreich als XML nach [PATH] exportiert.
|
||||
Erscheinungsbild als XML in [PATH] gespeichert
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
Aussehen konnte nicht gespeichert werden.
|
||||
Fehler beim Speichern des Erscheinungsbilds als XML.
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
Hilfethema für dieses Element wurde nicht gefunden.
|
||||
|
|
@ -4318,6 +4310,9 @@ Sie ist voll oder startet in Kürze neu.
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
Nicht genügend Skriptressourcen verfügbar, um Objekt anzuhängen.
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
Der Anhang hat einen nicht vorhandenen Punkt auf dem Avatar angefordert. Der Anhang wurde stattdessen auf der Brust angebracht.
|
||||
</notification>
|
||||
<notification name="CantAttachObjectBeingRemoved">
|
||||
Objekten kann nicht hinzugefügt werden, da es bereits entfernt wird.
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
Ausgabe
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
Meine Lautstärke:
|
||||
Mikrofonlautstärke:
|
||||
</text>
|
||||
<slider_bar initial_value="1,0" name="mic_volume_slider" tool_tip="Lautstärke mit diesem Regler ändern"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="Mit diesem Schieberegler können Sie den Mikrofonpegel ändern"/>
|
||||
<text name="wait_text">
|
||||
Bitte warten
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -38,6 +38,9 @@
|
|||
<string name="AboutCompiler">
|
||||
Kompiliert mit [COMPILER], Version [COMPILER_VERSION]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
Build-Konfiguration [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutPosition">
|
||||
Sie befinden sich an [POSITION_LOCAL_0,number,1], [POSITION_LOCAL_1,number,1], [POSITION_LOCAL_2,number,1] in [REGION] auf <nolink>[HOSTNAME]</nolink> ([HOSTIP])
|
||||
SLURL: <nolink>[SLURL]</nolink>
|
||||
|
|
@ -90,7 +93,9 @@ VFS (Cache) Erstellungszeit: [VFS_DATE]
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
Fehler beim Abrufen der URL für die Server-Versionshinweise.
|
||||
</string>
|
||||
|
||||
<string name="BuildConfiguration">
|
||||
Build-Konfiguration
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
Wird wiederhergestellt...
|
||||
</string>
|
||||
|
|
@ -2041,37 +2046,37 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
|
|||
Avatar-Mitte
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
Linker Ring-Finger
|
||||
Linker Ringfinger
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
Rechter Ring-Finger
|
||||
Rechter Ringfinger
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
Schwanz-Basis
|
||||
Schwanzansatz
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
Schwanz-Spitze
|
||||
Schwanzspitze
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
Linker Flügel
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
<string name="Right Wing">
|
||||
Rechter Flügel
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
<string name="Jaw">
|
||||
Kiefer
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
Alt. Linkes Ohr
|
||||
Alt. linkes Ohr
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
Alt. Rechtes Ohr
|
||||
Alt. rechtes Ohr
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
Alt. Linkes Auge
|
||||
Alt. linkes Auge
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
Alt. Rechtes Auge
|
||||
Alt. rechtes Auge
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
Zunge
|
||||
|
|
@ -2507,7 +2512,7 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
|
|||
Linke Brust
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
Rechts
|
||||
Rechte Brust
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
HUD Mitte 2
|
||||
|
|
@ -2540,16 +2545,16 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
|
|||
Avatar-Mitte
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
Linker Ring-Finger
|
||||
Linker Ringfinger
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
Rechter Ring-Finger
|
||||
Rechter Ringfinger
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
Schwanz-Basis
|
||||
Schwanzansatz
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
Schwanz-Spitze
|
||||
Schwanzspitze
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
Linker Flügel
|
||||
|
|
@ -2561,16 +2566,16 @@ Warten Sie kurz und versuchen Sie dann noch einmal, sich anzumelden.
|
|||
Kiefer
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
Alt. Linkes Ohr
|
||||
Alt. linkes Ohr
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
Alt. Rechtes Ohr
|
||||
Alt. rechtes Ohr
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
Alt. Linkes Auge
|
||||
Alt. linkes Auge
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
Alt. Rechtes Auge
|
||||
Alt. rechtes Auge
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
Zunge
|
||||
|
|
@ -4627,10 +4632,10 @@ Falls diese Meldung weiterhin angezeigt wird, wenden Sie sich bitte an [SUPPORT_
|
|||
offline
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
Anwender nicht online - Nachricht wird gespeichert und später zugestellt.
|
||||
Benutzer nicht online - Nachricht wird gespeichert und später zugestellt.
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
Anwender nicht online - Inventarangebot wurde gespeichert.
|
||||
Benutzer nicht online - Inventar gespeichert.
|
||||
</string>
|
||||
<string name="answered_call">
|
||||
Ihr Anruf wurde entgegengenommen
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
Avatar
|
||||
</text>
|
||||
<slider label="Complejidad máxima:" name="IndirectMaxComplexity" tool_tip="Controla en qué momento un avatar visualmente complejo se dibuja como una sombra de color sólido"/>
|
||||
<slider label="Complejidad máxima:" name="IndirectMaxComplexity" tool_tip="Controla en qué momento un avatar visualmente complejo se dibuja como un "JellyDoll""/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="Crear tarjeta" name="Add Calling Card"/>
|
||||
<menu_item_call label="Llamar" name="Call"/>
|
||||
<menu_item_call label="Invitar a grupo" name="Invite..."/>
|
||||
<menu_item_call label="Restablecer esqueleto" name="Reset Skeleton"/>
|
||||
<context_menu label="Molestia" name="Annoyance">
|
||||
<menu_item_call label="Bloquear" name="Avatar Mute"/>
|
||||
<menu_item_call label="Desbloquear" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<menu_item_call label="Editar vestuario" name="Edit Outfit"/>
|
||||
<menu_item_call label="Editar anatomía" name="Edit My Shape"/>
|
||||
<menu_item_call label="Altura del avatar" name="Hover Height"/>
|
||||
<menu_item_call label="Restablecer esqueleto" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Amigos" name="Friends..."/>
|
||||
<menu_item_call label="Grupos" name="Groups..."/>
|
||||
<menu_item_call label="Perfil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="MI" name="Send IM..."/>
|
||||
<menu_item_call label="Llamar" name="Call"/>
|
||||
<menu_item_call label="Invitar a grupo" name="Invite..."/>
|
||||
<menu_item_call label="Restablecer esqueleto" name="Reset Skeleton"/>
|
||||
<context_menu label="Molestia" name="Annoyance">
|
||||
<menu_item_call label="Bloquear" name="Avatar Mute"/>
|
||||
<menu_item_call label="Desbloquear" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="Editar vestuario" name="Edit Outfit"/>
|
||||
<menu_item_call label="Editar anatomía" name="Edit My Shape"/>
|
||||
<menu_item_call label="Altura del avatar" name="Hover Height"/>
|
||||
<menu_item_call label="Restablecer esqueleto" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Amigos" name="Friends..."/>
|
||||
<menu_item_call label="Grupos" name="Groups..."/>
|
||||
<menu_item_call label="Perfil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -530,6 +530,7 @@
|
|||
<menu_item_check label="Desactivar nivel de detalle (LOD)" name="Disable LOD"/>
|
||||
<menu_item_check label="Depurar visibilidad del personaje" name="Debug Character Vis"/>
|
||||
<menu_item_check label="Mostrar armazón de colisión" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="Mostrar los huesos" name="Show Bones"/>
|
||||
<menu_item_check label="Mostrar objetivo del avatar" name="Display Agent Target"/>
|
||||
<menu_item_call label="Volcar objetos anexados" name="Dump Attachments"/>
|
||||
<menu_item_call label="Depurar texturas del avatar" name="Debug Avatar Textures"/>
|
||||
|
|
|
|||
|
|
@ -462,6 +462,9 @@ Se ha superado el límite máximo de [MAX_ATTACHMENTS] accesorios. Por favor, qu
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
No puedes vestirte este ítem porque aún no se ha cargado. Por favor, inténtalo de nuevo en un minuto.
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Escribe la contraseña para poder iniciar sesión.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Lo sentimos. Se ha quedado algún campo en blanco.
|
||||
Tienes que volver a introducir el nombre de usuario de tu avatar.
|
||||
|
|
@ -544,6 +547,9 @@ Nota: esto vaciará la caché.
|
|||
<notification name="ChangeConnectionPort">
|
||||
La configuración del puerto tendrá efecto cuando reinicies [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
El cambio de configuración del depurador se activará cuando reinicies [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
La nueva skin se aplicará tras reiniciar [APP_NAME].
|
||||
<usetemplate name="okcancelbuttons" notext="Aceptar" yestext="Reiniciar"/>
|
||||
|
|
@ -1408,6 +1414,14 @@ Puedes usar [CURRENT_GRID] de forma normal; los demás residentes te verán corr
|
|||
<ignore name="ignore" text="La ropa está tardando mucho en descargarse"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
La [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 complejidad de tu avatar] es [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="Avisarme si la complejidad de mi avatar puede ser excesiva" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
La [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 complejidad de tu avatar] es [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
Se ha completado la instalación de [APP_NAME].
|
||||
|
||||
|
|
@ -1523,6 +1537,10 @@ Cambia la textura [TEXTURE_NUM] por una imagen de 24 bits y 1024x1024 o menor, y
|
|||
¿Realmente quieres predeterminar el terreno actual, convirtiéndolo en el centro de los limites para elevarlo y rebajarlo, y en el terreno por defecto para la herramienta 'Revertir'?
|
||||
<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Aceptar"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Vas a usar valores inferiores más grandes que los de Intervalos de elevación. ¿Quieres continuar?
|
||||
<usetemplate canceltext="No preguntar" name="yesnocancelbuttons" notext="Cancelar" yestext="Aceptar"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
Sólo puedes tener [MAX_AGENTS] residentes autorizados.
|
||||
</notification>
|
||||
|
|
@ -1742,14 +1760,6 @@ visita [[INFO_URL] detalles sobre esta actualización]
|
|||
No puedes abandonar el grupo porque eres el último propietario del mismo. Por favor, asigna el rol de propietario a otro usuario antes de abandonar el grupo.
|
||||
<usetemplate name="okbutton" yestext="Aceptar"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
No se puede abandonar el grupo: [reason].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
Has abandonado el grupo [group_name].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
¿Realmente quieres expulsar a todos los residentes fuera de la red de simuladores?
|
||||
<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar a todos los Residentes"/>
|
||||
|
|
@ -2475,6 +2485,10 @@ Linden Lab
|
|||
¿Estás seguro de que quieres borrar de forma permanente el contenido de la Papelera?
|
||||
<usetemplate ignoretext="Confirmar antes de vaciar la Papelera del inventario" name="okcancelignore" notext="Cancelar" yestext="Aceptar"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
La papelera está completamente llena. Esto puede causar problemas a la hora de iniciar sesión.
|
||||
<usetemplate name="okcancelbuttons" notext="Vaciaré la papelera más adelante" yestext="Vaciar la papelera"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
¿Estás seguro de que quieres borrar tu historial web, de viajes y de búsquedas?
|
||||
<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Aceptar"/>
|
||||
|
|
@ -3228,7 +3242,7 @@ Si permaneces en esta región serás desconectado.
|
|||
|
||||
[MESSAGE]
|
||||
|
||||
Del objeto: <nolink>[OBJECTNAME]</nolink>, propietario: [NAME_SLURL]
|
||||
De objeto: <nolink>[OBJECTNAME]</nolink>, propietario: [NAME_SLURL]
|
||||
<form name="form">
|
||||
<button name="Gotopage" text="Cargar"/>
|
||||
<button name="Cancel" text="Cancelar"/>
|
||||
|
|
@ -3501,6 +3515,18 @@ Por tu seguridad, serán bloqueadas durante unos segundos.
|
|||
<notification name="AttachmentSaved">
|
||||
Se ha guardado el adjunto.
|
||||
</notification>
|
||||
<notification name="PresetNotSaved">
|
||||
Error al guardar el valor predefinido [NAME].
|
||||
</notification>
|
||||
<notification name="PresetNotDeleted">
|
||||
Error al eliminar el valor predefinido [NAME].
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
El aspecto se ha guardado como XML en [PATH]
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
Error al guardar el aspecto como XML.
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
No se ha podido encontrar un tema de ayuda para este elemento.
|
||||
</notification>
|
||||
|
|
@ -4380,6 +4406,9 @@ Prueba otra vez dentro de un minuto.
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
No hay suficientes recursos de script disponibles para anexar el objeto
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
El anexo ha solicitado un punto que no existe en el avatar. Por tanto, se ha anexado al pecho.
|
||||
</notification>
|
||||
<notification name="CantDropItemTrialUser">
|
||||
No se pueden soltar objetos aquí; inténtalo en la zona de prueba gratuita.
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
Salida
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
Mi volumen:
|
||||
Volumen de mic.:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="Cambia el volumen usando este deslizable"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="Cambia el volumen del micrófono con este controlador deslizante"/>
|
||||
<text name="wait_text">
|
||||
Por favor, espera
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -37,6 +37,9 @@
|
|||
[APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL])
|
||||
[[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
Configuración de constitución [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutCompiler">
|
||||
Compilado con [COMPILER], versión [COMPILER_VERSION]
|
||||
</string>
|
||||
|
|
@ -64,7 +67,7 @@ Versión de libcurl: [LIBCURL_VERSION]
|
|||
Versión de J2C Decoder: [J2C_VERSION]
|
||||
Versión de Audio Driver: [AUDIO_DRIVER_VERSION]
|
||||
Versión de LLCEFLib/CEF: [LLCEFLIB_VERSION]
|
||||
Versión del servidor de voz: [VOICE_VERSION]
|
||||
Versión de Voice Server: [VOICE_VERSION]
|
||||
</string>
|
||||
<string name="AboutTraffic">
|
||||
Paquetes perdidos: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%)
|
||||
|
|
@ -72,6 +75,9 @@ Versión del servidor de voz: [VOICE_VERSION]
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
Error al obtener la URL de las notas de la versión del servidor.
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
Configuración de constitución
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
Restaurando...
|
||||
</string>
|
||||
|
|
@ -1446,6 +1452,9 @@ Intenta iniciar sesión de nuevo en unos instantes.
|
|||
<string name="BodyPartsRightLeg">
|
||||
Pierna der.
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
Esqueleto mejorado
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
Bajo
|
||||
</string>
|
||||
|
|
@ -1894,6 +1903,51 @@ Intenta iniciar sesión de nuevo en unos instantes.
|
|||
<string name="Avatar Center">
|
||||
Centro del avatar
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
Dedo anular izquierdo
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
Dedo anular derecho
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
Base de la cola
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
Extremo de la cola
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
Ala izquierda
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
Ala derecha
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
Mandíbula
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
Oreja izquierda alternativa
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
Oreja derecha alternativa
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
Ojo izquierdo alternativo
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
Ojo derecho alternativo
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
Lengua
|
||||
</string>
|
||||
<string name="Groin">
|
||||
Ingle
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
Pata trasera izquierda
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
Pata trasera derecha
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
Punto de anexión no válido
|
||||
</string>
|
||||
|
|
@ -2289,11 +2343,11 @@ Intenta iniciar sesión de nuevo en unos instantes.
|
|||
<string name="ATTACH_BELLY">
|
||||
Vientre
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
Pecho derecho
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
Pectoral izquierdo
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
Pecho izquierdo
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
Pectoral derecho
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
HUD: Centro 2
|
||||
|
|
@ -2325,6 +2379,51 @@ Intenta iniciar sesión de nuevo en unos instantes.
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
Centro del avatar
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
Dedo anular izquierdo
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
Dedo anular derecho
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
Base de la cola
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
Extremo de la cola
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
Ala izquierda
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
Ala derecha
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
Mandíbula
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
Oreja izquierda alternativa
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
Oreja derecha alternativa
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
Ojo izquierdo alternativo
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
Ojo derecho alternativo
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
Lengua
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
Ingle
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
Pata trasera izquierda
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
Pata trasera derecha
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
Línea [LINE], Columna [COLUMN]
|
||||
</string>
|
||||
|
|
@ -4316,6 +4415,12 @@ Si sigues recibiendo este mensaje, contacta con [SUPPORT_SITE].
|
|||
<string name="OfflineStatus">
|
||||
Desconectado/a
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
El usuario no está conectado: el mensaje se almacenará para entregárselo más tarde.
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
El usuario no está conectado: el inventario se ha guardado.
|
||||
</string>
|
||||
<string name="IM_unblock_only_groups_friends">
|
||||
Para ver este mensaje, debes desmarcar 'Sólo mis amigos y grupos pueden llamarme o enviarme MI' en Preferencias/Privacidad.
|
||||
</string>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
Avatar
|
||||
</text>
|
||||
<slider label="Complexité max. :" name="IndirectMaxComplexity" tool_tip="Contrôle à quel moment un avatar complexe est représenté comme un « jelly doll » (forme de couleur unie)"/>
|
||||
<slider label="Complexité max. :" name="IndirectMaxComplexity" tool_tip="Contrôle à quel moment un avatar complexe est représenté comme un « JellyDoll »"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
<menu_item_call label="Donner ma carte de visite" name="Give Calling Card"/>
|
||||
<menu_item_call label="Appel vocal" name="Call"/>
|
||||
<menu_item_call label="Inviter dans un groupe" name="Invite..."/>
|
||||
<menu_item_call label="Réinitialiser le squelette" name="Reset Skeleton"/>
|
||||
<context_menu label="Dérangement" name="Annoyance">
|
||||
<menu_item_call label="Ignorer" name="Avatar Mute"/>
|
||||
<menu_item_call label="Cesser d'ignorer" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<menu_item_call label="Modifier la tenue" name="Edit Outfit"/>
|
||||
<menu_item_call label="Modifier la silhouette" name="Edit My Shape"/>
|
||||
<menu_item_call label="Voltigement" name="Hover Height"/>
|
||||
<menu_item_call label="Réinitialiser le squelette" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Amis" name="Friends..."/>
|
||||
<menu_item_call label="Groupes" name="Groups..."/>
|
||||
<menu_item_call label="Profil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
<menu_item_call label="Envoyer un IM" name="Send IM..."/>
|
||||
<menu_item_call label="Appel vocal" name="Call"/>
|
||||
<menu_item_call label="Inviter dans un groupe" name="Invite..."/>
|
||||
<menu_item_call label="Réinitialiser le squelette" name="Reset Skeleton"/>
|
||||
<context_menu label="Dérangement" name="Remove">
|
||||
<menu_item_call label="Ignorer" name="Avatar Mute"/>
|
||||
<menu_item_call label="Cesser d'ignorer" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="Modifier la tenue" name="Edit Outfit"/>
|
||||
<menu_item_call label="Modifier la silhouette" name="Edit My Shape"/>
|
||||
<menu_item_call label="Voltigement" name="Hover Height"/>
|
||||
<menu_item_call label="Réinitialiser le squelette" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Amis" name="Friends..."/>
|
||||
<menu_item_call label="Groupes" name="Groups..."/>
|
||||
<menu_item_call label="Profil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -534,6 +534,7 @@
|
|||
<menu_item_check label="Disable LOD" name="Disable LOD"/>
|
||||
<menu_item_check label="Debug Character Vis" name="Debug Character Vis"/>
|
||||
<menu_item_check label="Show Collision Skeleton" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="Voir les os" name="Show Bones"/>
|
||||
<menu_item_check label="Display Agent Target" name="Display Agent Target"/>
|
||||
<menu_item_call label="Dump Attachments" name="Dump Attachments"/>
|
||||
<menu_item_call label="Debug Avatar Textures" name="Debug Avatar Textures"/>
|
||||
|
|
|
|||
|
|
@ -341,6 +341,9 @@ Impossible de porter l'objet.
|
|||
Vous avez atteint le nombre ([MAX_ATTACHMENTS]) maximum d'objets attachés. Veuillez en retirer quelques-uns au préalable.
|
||||
</notification>
|
||||
<notification name="CannotWearInfoNotComplete">You cannot wear this item because it has not yet loaded. Please try again in a minute.</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Veuillez saisir votre mot de passe pour vous connecter.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Veuillez saisir votre nom d'utilisateur.
|
||||
Vous devez posséder un compte pour entrer dans [CURRENT_GRID]. Souhaitez-vous crée un compte maintenant ?
|
||||
|
|
@ -391,6 +394,9 @@ Note: This will also clear the cache.
|
|||
</notification>
|
||||
<notification name="SoundCacheWillBeMoved">L'emplacement du cache audio sera déplacé après le redémarrage de [APP_NAME].</notification>
|
||||
<notification name="ChangeConnectionPort">La modification du port de connexion sera appliquée après le redémarrage de [APP_NAME].</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
Le changement de paramètre de débogage sera effectué au redémarrage de [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
Le nouveau thème sera appliqué après le redémarrage de [APP_NAME].
|
||||
<usetemplate name="okcancelbuttons" notext="OK" yestext="Restart"/>
|
||||
|
|
@ -1054,6 +1060,14 @@ Vos vêtements sont toujours en cours de téléchargement.
|
|||
Vous pouvez utiliser [APP_NAME] normalement, les autres personnes vous verront correctement.
|
||||
<form name="form"><ignore name="ignore" text="Les vêtements mettent du temps à télécharger"/></form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
Votre [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 complexité de l'avatar] est [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="M'avertir si la complexité de l'avatar est trop élevée" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
Votre [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 complexité de l'avatar] est [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
L'installation de [APP_NAME] est terminée.
|
||||
Si c'est votre première connexion à [CURRENT_GRID], vous aurez besoin d'un compte avant de vous connecter.
|
||||
|
|
@ -1142,8 +1156,16 @@ Replace texture [TEXTURE_NUM] with a 24-bit 1024x1024 or smaller image then clic
|
|||
Do you really want to bake the current terrain, make it the center for terrain raise/lower limits, and the default for the 'Revert' tool?
|
||||
<usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">You can only have [MAX_AGENTS] allowed residents.</notification>
|
||||
<notification name="MaxBannedAgentsOnRegion">You can only have [MAX_BANNED] banned residents.</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Vous vous apprêtez à utiliser des valeurs plus élevées que les limites d'élévation supérieures. Continuer ?
|
||||
<usetemplate canceltext="Ne pas demander" name="yesnocancelbuttons" notext="Annuler" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
Vous ne pouvez pas autoriser plus de [MAX_AGENTS] résidents.
|
||||
</notification>
|
||||
<notification name="MaxBannedAgentsOnRegion">
|
||||
Vous ne pouvez pas bannir plus de [MAX_BANNED] résidents.
|
||||
</notification>
|
||||
<notification name="MaxAgentOnRegionBatch">
|
||||
Failure while attempting to add [NUM_ADDED] agents:
|
||||
Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS].
|
||||
|
|
@ -1351,9 +1373,6 @@ Quitter le groupe ?
|
|||
<usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="OwnerCannotLeaveGroup">Impossible de quitter le groupe. Vous ne pouvez quitter le groupe étant donné que vous êtes le dernier propriétaire de celui-ci. Veuillez assigner un membre au rôle Propriétaire en premier lieu.</notification>
|
||||
<notification name="GroupDepartError">
|
||||
Impossible de quitter le groupe : [reason].
|
||||
</notification>
|
||||
<notification name="GroupDepart">Vous avez quitté le groupe [group_name].</notification>
|
||||
<notification name="ConfirmKick">
|
||||
Do you REALLY want to kick all residents off the grid?
|
||||
|
|
@ -1957,6 +1976,10 @@ Le dossier '[FOLDERNAME]' est un dossier système. Le supprimer peut provoquer p
|
|||
Êtes-vous sur de vouloir supprimer définitivement tous les éléments présents dans la corbeille ?
|
||||
<usetemplate ignoretext="Confirmer avant de vider la corbeille" name="okcancelignore" notext="Annuler" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
Votre corbeille déborde. Cela risque de provoquer des problèmes lors de la connexion.
|
||||
<usetemplate name="okcancelbuttons" notext="Je viderai la corbeille plus tard" yestext="Vider la corbeille"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
Are you sure you want to delete your travel, web, and search history?
|
||||
<usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/>
|
||||
|
|
@ -2681,7 +2704,16 @@ Are you sure you want to close all IMs?
|
|||
<usetemplate name="okcancelignore" notext="Annuler" yestext="OK" ignoretext="Confirmer avant de fermer tous les IMs"/>
|
||||
</notification>
|
||||
<notification name="AttachmentSaved">Pièce-jointe enregistrée.</notification>
|
||||
<notification name="UnableToFindHelpTopic">Unable to find the help topic for this element.</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
L'apparence a été enregistrée en XML vers [PATH]
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
Échec d'enregistrement de l'apparence en XML.
|
||||
Erreur de suppression du préréglage [NAME].
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
Impossible de trouver l'aide.
|
||||
</notification>
|
||||
<notification name="ObjectMediaFailure">
|
||||
Server Error: Media update or get failed.
|
||||
'[ERROR]'
|
||||
|
|
@ -3324,6 +3356,9 @@ You have been teleported by the object '[OBJECT_NAME]' on the parcel '[PARCEL_NA
|
|||
<notification name="CantBuildOverflowParcel">You cannot build objects here because doing so would overflow the parcel.</notification>
|
||||
<notification name="SelectedMultipleOwnedLand">You selected land with different owners. Please select a smaller area and try again.</notification>
|
||||
<notification name="CantJoinTooFewLeasedParcels">Not enough leased parcels in selection to join.</notification>
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
La pièce jointe a demandé un point non existant sur l'avatar. Il a été fixé sur la poitrine.
|
||||
<notification name="CantDivideLandMultipleParcelsSelected">
|
||||
Can't divide land.
|
||||
There is more than one parcel selected.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
Avatar
|
||||
</text>
|
||||
<slider label="Complessità massima:" name="IndirectMaxComplexity" tool_tip="Definisce il punto in cui un avatar dall'aspetto complesso viene visualizzato come una forma senza dettagli"/>
|
||||
<slider label="Complessità massima:" name="IndirectMaxComplexity" tool_tip="Definisce il punto in cui un avatar dall'aspetto complesso viene visualizzato come JellyDoll"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="Aggiungi Calling Card" name="Add Calling Card"/>
|
||||
<menu_item_call label="Chiama" name="Call"/>
|
||||
<menu_item_call label="Invita al gruppo" name="Invite..."/>
|
||||
<menu_item_call label="Ripristina scheletro" name="Reset Skeleton"/>
|
||||
<context_menu label="Noie" name="Annoyance">
|
||||
<menu_item_call label="Blocca" name="Avatar Mute"/>
|
||||
<menu_item_call label="Segnala" name="abuse"/>
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
<menu_item_call label="Modifica il mio vestiario" name="Edit Outfit"/>
|
||||
<menu_item_call label="Modifica la figura corporea" name="Edit My Shape"/>
|
||||
<menu_item_call label="Altezza di volo" name="Hover Height"/>
|
||||
<menu_item_call label="Ripristina scheletro" name="Reset Skeleton"/>
|
||||
<menu_item_call label="I miei amici..." name="Friends..."/>
|
||||
<menu_item_call label="I miei gruppi" name="Groups..."/>
|
||||
<menu_item_call label="Il mio profilo" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="Aggiungi Calling Card" name="Add Calling Card"/>
|
||||
<menu_item_call label="Chiama" name="Call"/>
|
||||
<menu_item_call label="Invita al gruppo" name="Invite..."/>
|
||||
<menu_item_call label="Ripristina scheletro" name="Reset Skeleton"/>
|
||||
<context_menu label="Noie" name="Remove">
|
||||
<menu_item_call label="Blocca" name="Avatar Mute"/>
|
||||
<menu_item_call label="Segnala" name="abuse"/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="Modifica il mio vestiario" name="Edit Outfit"/>
|
||||
<menu_item_call label="Modifica la figura corporea" name="Edit My Shape"/>
|
||||
<menu_item_call label="Altezza di volo" name="Hover Height"/>
|
||||
<menu_item_call label="Ripristina scheletro" name="Reset Skeleton"/>
|
||||
<menu_item_call label="I miei amici..." name="Friends..."/>
|
||||
<menu_item_call label="I miei gruppi" name="Groups..."/>
|
||||
<menu_item_call label="Il mio profilo" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -422,6 +422,7 @@
|
|||
<menu_item_check label="Informazioni sull'animazione" name="Animation Info"/>
|
||||
<menu_item_check label="Disabilita livello di dettaglio" name="Disable LOD"/>
|
||||
<menu_item_check label="Mostra schemi collisione" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="Mostra ossa" name="Show Bones"/>
|
||||
<menu_item_check label="Mostra bersaglio" name="Display Agent Target"/>
|
||||
<menu_item_call label="Debug texture dell'avatar" name="Debug Avatar Textures"/>
|
||||
</menu>
|
||||
|
|
|
|||
|
|
@ -468,6 +468,9 @@ Superato il limite di oggetti collegati [MAX_ATTACHMENTS]. Per favore prima stac
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
Non puoi indossare quell'elemento perchè non è ancora stato caricato. Riprova fra un minuto.
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Inserisci la tua password per accedere.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Spiacenti. Un campo è vuoto.
|
||||
Inserisci il Nome utente del tuo avatar.
|
||||
|
|
@ -536,6 +539,9 @@ Nota: questa operazione cancellerà la cache.
|
|||
<notification name="ChangeConnectionPort">
|
||||
Le impostazioni della porta avranno effetto dopo il riavvio di [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
La modifica della impostazione di debug avrà effetto dopo il riavvio di [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
La nuova pelle comparirà dopo il riavvio di [APP_NAME].
|
||||
</notification>
|
||||
|
|
@ -1350,6 +1356,14 @@ Puoi comunque usare [CURRENT_GRID] normalmente e gli altri residenti ti vedranno
|
|||
<ignore name="ignore" text="Lo scaricamento sta richiedendo parecchio tempo"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
La [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 complessità del tuo avatar] è [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="Avvisami se la complessità del mio avatar è eccessiva" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
La [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 complessità del tuo avatar] è [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
L'installazione di [APP_NAME] è terminata.
|
||||
|
||||
|
|
@ -1463,6 +1477,10 @@ Sostituisci la texture [TEXTURE_NUM] con una a 24-bit 1024x1024 oppure con una i
|
|||
Vuoi veramente impostare come base il terreno corrente, impostarlo come riferimento per i limiti dei rialzi/abbassamenti di tutto il territorio ed il suo valore impostato come base per lo strumento 'Ripristina'?
|
||||
<usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Stai per usare valori bassi maggiori dei valori alti di Intervalli altitudine. Vuoi procedere?
|
||||
<usetemplate canceltext="Non chiedere" name="yesnocancelbuttons" notext="Annulla" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
Puoi avere al massimo [MAX_AGENTS] residenti consentiti.
|
||||
</notification>
|
||||
|
|
@ -1682,14 +1700,6 @@ Lasciare il gruppo?
|
|||
Impossibile abbandonare il gruppo. Non puoi abbandonare il gruppo perché sei l'ultimo proprietario del gruppo. Devi prima assegnare a un altro membro il ruolo di proprietario.
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
Impossibile abbandonare il gruppo: [reason].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
Hai abbandonato il gruppo [group_name].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
Vuoi veramente espellere tutti i residenti dalla griglia?
|
||||
<usetemplate name="okcancelbuttons" notext="Annulla" yestext="Espelli tutti i residenti"/>
|
||||
|
|
@ -2353,6 +2363,10 @@ Vuoi disattivare la modalità Non disturbare prima di completare questa transazi
|
|||
Vuoi veramente eliminare in modo permanente il contenuto del tuo Cestino?
|
||||
<usetemplate ignoretext="Conferma prima di svuotare la cartella del Cestino inventario" name="okcancelignore" notext="Annulla" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
Il cestino è troppo pieno. Ciò potrebbe causare problemi durante l'accesso.
|
||||
<usetemplate name="okcancelbuttons" notext="Svuota il cestino più tardi" yestext="Svuota il cestino adesso"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
Vuoi veramente eliminare la cronologia viaggi, web e ricerche fatte?
|
||||
<usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/>
|
||||
|
|
@ -3254,6 +3268,13 @@ Per sicurezza, verranno bloccati per alcuni secondi.
|
|||
<notification name="AttachmentSaved">
|
||||
L'elemento da collegare è stato salvato.
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
L'aspetto è stato salvato in XML su [PATH]
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
L'aspetto non è stato salvato in XML.
|
||||
Errore nella cancellazione del valore predefinito [NAME].
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
Impossibile trovare l'argomento nell'aiuto per questo elemento.
|
||||
</notification>
|
||||
|
|
@ -4068,6 +4089,9 @@ Riprova tra un minuto.
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
Risorse di script non sufficienti per collegare l'oggetto.
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
Il collegamento ha richiesto un punto sull'avatar che non esiste. È stato collegato al petto.
|
||||
</notification>
|
||||
<notification name="CantDropItemTrialUser">
|
||||
Non puoi lasciare oggetti qui, prova la zona Prova gratuita.
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
Output
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
Il mio volume:
|
||||
Volume microfono:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="Cambia il volume utilizzando questa barra"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="Cambia il livello del microfono utilizzando questa barra"/>
|
||||
<text name="wait_text">
|
||||
Attendi
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@
|
|||
[APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL])
|
||||
[[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
Configurazione struttura [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutCompiler">
|
||||
Generato con [COMPILER] versione [COMPILER_VERSION]
|
||||
</string>
|
||||
|
|
@ -64,6 +67,9 @@ Versione Server voice: [VOICE_VERSION]
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
Errore nel recupero URL note rilascio versione
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
Costruisci configurazione
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
Ripristino in corso...
|
||||
</string>
|
||||
|
|
@ -1372,6 +1378,9 @@ Prova ad accedere nuovamente tra un minuto.
|
|||
<string name="BodyPartsRightLeg">
|
||||
Gamba destra
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
Scheletro avanzato
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
Basso
|
||||
</string>
|
||||
|
|
@ -1816,6 +1825,51 @@ Prova ad accedere nuovamente tra un minuto.
|
|||
<string name="Avatar Center">
|
||||
Centro avatar
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
Anulare sinistro
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
Anulare destro
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
Base della coda
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
Punta della coda
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
Ala sinistra
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
Ala destra
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
Mandibola
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
Altro orecchio sinistro
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
Altro orecchio destro
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
Altro occhio sinistro
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
Altro occhio destro
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
Lingua
|
||||
</string>
|
||||
<string name="Groin">
|
||||
Inguine
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
Piede posteriore sinistro
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
Piede posteriore destro
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
Punto di collegamento non valido
|
||||
</string>
|
||||
|
|
@ -2190,12 +2244,12 @@ Prova ad accedere nuovamente tra un minuto.
|
|||
<string name="ATTACH_BELLY">
|
||||
Addome
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
Petto destro
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
Petto sinistro
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
Petto destro
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
HUD in centro 2
|
||||
</string>
|
||||
|
|
@ -2226,6 +2280,51 @@ Prova ad accedere nuovamente tra un minuto.
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
Centro avatar
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
Anulare sinistro
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
Anulare destro
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
Base della coda
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
Punta della coda
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
Ala sinistra
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
Ala destra
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
Mandibola
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
Altro orecchio sinistro
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
Altro orecchio destro
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
Altro occhio sinistro
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
Altro occhio destro
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
Lingua
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
Inguine
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
Piede posteriore sinistro
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
Piede posteriore destro
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
Riga [LINE], Colonna [COLUMN]
|
||||
</string>
|
||||
|
|
@ -4157,6 +4256,12 @@ Se il messaggio persiste, contatta [SUPPORT_SITE].
|
|||
<string name="OfflineStatus">
|
||||
Offline
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
Utente non online - il messaggio verrà memorizzato e inviato più tardi.
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
Utente non online - l'inventario è stato salvato
|
||||
</string>
|
||||
<string name="answered_call">
|
||||
Risposto alla chiamata
|
||||
</string>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
アバター
|
||||
</text>
|
||||
<slider label="最大の複雑さ:" name="IndirectMaxComplexity" tool_tip="どの時点で複雑な表示のアバターをベタ色の人形として表示するかを管理します"/>
|
||||
<slider label="最大の複雑さ:" name="IndirectMaxComplexity" tool_tip="どの点で視覚的に複雑なアバターを JellyDoll として描くかを制御します"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<menu_item_call label="コーリングカードを送る" name="Give Calling Card" />
|
||||
<menu_item_call label="コール" name="Call"/>
|
||||
<menu_item_call label="グループに招待" name="Invite..."/>
|
||||
<menu_item_separator />
|
||||
<menu_item_call label="スケルトンをリセット" name="Reset Skeleton"/>
|
||||
<context_menu label="迷惑行為対応" name="Annoyance">
|
||||
<menu_item_call label="ブロック" name="Avatar Mute" />
|
||||
<!-- <FS:Zi> Add unblock menu entry since renaming the context menu item doesn't seem to work -->
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
<menu_item_call label="アウトフィットの編集" name="Edit Outfit"/>
|
||||
<menu_item_call label="シェイプの編集" name="Edit My Shape"/>
|
||||
<menu_item_call label="ホバー高さ" name="Hover Height"/>
|
||||
<menu_item_call label="スケルトンをリセット" name="Reset Skeleton"/>
|
||||
<menu_item_call label="フレンド" name="Friends..."/>
|
||||
<menu_item_call label="グループ" name="Groups..."/>
|
||||
<menu_item_call label="プロフィール" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<menu_item_call label="IM" name="Send IM..."/>
|
||||
<menu_item_call label="コール" name="Call"/>
|
||||
<menu_item_call label="グループに招待" name="Invite..."/>
|
||||
<menu_item_call label="スケルトンをリセット" name="Reset Skeleton"/>
|
||||
<context_menu label="迷惑行為対応" name="Remove">
|
||||
<menu_item_call label="ブロック" name="Avatar Mute" />
|
||||
<!-- <FS:Zi> Add unblock menu entry since renaming the context menu item doesn't seem to work -->
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="アウトフィットを編集" name="Edit Outfit"/>
|
||||
<menu_item_call label="シェイプを編集" name="Edit My Shape"/>
|
||||
<menu_item_call label="ホバー高さ" name="Hover Height"/>
|
||||
<menu_item_call label="スケルトンをリセット" name="Reset Skeleton"/>
|
||||
<menu_item_call label="フレンド" name="Friends..."/>
|
||||
<menu_item_call label="グループ" name="Groups..."/>
|
||||
<menu_item_call label="プロフィール" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -643,6 +643,7 @@
|
|||
<menu_item_check label="LOD を無効にする" name="Disable LOD"/>
|
||||
<menu_item_check label="キャラクター Vis のデバッグ" name="Debug Character Vis"/>
|
||||
<menu_item_check label="骨組みの衝突判定を表示する" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="骨を表示" name="Show Bones"/>
|
||||
<menu_item_check label="エージェントのターゲットを表示する" name="Display Agent Target"/>
|
||||
-->
|
||||
<menu_item_call label="アタッチメントをダンプ" name="Dump Attachments"/>
|
||||
|
|
|
|||
|
|
@ -500,7 +500,7 @@ L$ が不足しているのでこのグループに参加することができ
|
|||
まだ読み込まれていないため、そのアイテムを装着できません。後でやり直してください。
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
ログインするにはパスワードを入力して下さい。
|
||||
ログインするためにパスワードを入力してください
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
注意:記入漏れの箇所があります。
|
||||
|
|
@ -574,6 +574,9 @@ L$ が不足しているのでこのグループに参加することができ
|
|||
<notification name="ChangeConnectionPort">
|
||||
ポートの設定は [APP_NAME] を再起動後に反映されます。
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
デバッグ設定の変更は [APP_NAME] を再起動後に反映されます。
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
新しいスキンは [APP_NAME] を再起動後に表示されます。
|
||||
</notification>
|
||||
|
|
@ -1415,14 +1418,14 @@ https://wiki.secondlife.com/wiki/Adding_Spelling_Dictionaries を参照してく
|
|||
<ignore name="ignore" text="衣類がダウンロードされるまで時間がかかっているとき"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name = "AgentComplexityWithVisibility">
|
||||
ご使用の [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 表示の複雑さ] は [AGENT_COMPLEXITY] です。
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
あなたの [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 avatar complexity] は [AGENT_COMPLEXITY] です。
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="自分のアバター表示の複雑さが極めて高い時に警告する" name="notifyignore"/>
|
||||
<usetemplate ignoretext="アバターの複雑度が高すぎる場合は警告する" name="notifyignore"/>
|
||||
</notification>
|
||||
|
||||
<notification name = "AgentComplexity">
|
||||
ご使用の [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 表示の複雑さ] は [AGENT_COMPLEXITY] です。
|
||||
あなたの [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 avatar complexity] は [AGENT_COMPLEXITY] です。
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
[APP_NAME] のインストールが完了しました。
|
||||
|
|
@ -1542,9 +1545,9 @@ SHA1 フィンガープリント: [MD5_DIGEST]
|
|||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
仰角範囲に対して、高い方の値よりも大きな数値を低い方の値に適用しようとしています。このまま進めてよろしいですか?
|
||||
<usetemplate name="yesnocancelbuttons" yestext="OK" notext="取り消し" canceltext="確認しない"/>
|
||||
</notification>
|
||||
使用しようとしている隆起範囲の低い値は高い値よりも大きくなっています。それでも続けますか?
|
||||
<usetemplate canceltext="聞かないでください" name="yesnocancelbuttons" notext="取り消し" yestext="Ok"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
許可住人は [MAX_AGENTS] 人までです。
|
||||
</notification>
|
||||
|
|
@ -1788,7 +1791,6 @@ http://secondlife.com/download から最新バージョンをダウンロード
|
|||
グループを抜けることができません。グループの最後のオーナーであるため、グループを抜けることができません。最初に、別のメンバーをオーナーの役割に割り当ててください。
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="ConfirmKick">
|
||||
本当に住人全員をグリッドから追い出しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="キャンセル" yestext="住人全員を追い出す"/>
|
||||
|
|
@ -2494,12 +2496,10 @@ Linden Lab
|
|||
ごみ箱の中身をすべて削除しますか?
|
||||
<usetemplate ignoretext="インベントリのごみ箱フォルダを空にする前の確認" name="okcancelignore" notext="キャンセル" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="TrashIsFull">
|
||||
ゴミ箱が一杯です。ログイン時に問題が起こる可能性があります。
|
||||
<usetemplate name="okcancelbuttons" notext="あとでゴミ箱を空にする" yestext="今すぐゴミ箱を空にする"/>
|
||||
ゴミ箱があふれています。これはログイン時に問題を引き起こします。
|
||||
<usetemplate name="okcancelbuttons" notext="後でゴミ箱を空にする" yestext="今すぐゴミ箱を空にする"/>
|
||||
</notification>
|
||||
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
トラベル、Web、検索の履歴をすべて削除しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="キャンセル" yestext="OK"/>
|
||||
|
|
@ -3258,7 +3258,7 @@ URL: [MOAPURL]
|
|||
|
||||
[MESSAGE]
|
||||
|
||||
送信元のオブジェクト:<nolink>[OBJECTNAME]</nolink>、所有者:[NAME_SLURL]
|
||||
送信元のオブジェクト:<nolink>[OBJECTNAME]</nolink>、所有者:[NAME_SLURL]
|
||||
<form name="form">
|
||||
<button name="Gotopage" text="ページに移動"/>
|
||||
<button name="Cancel" text="取り消し"/>
|
||||
|
|
@ -3534,7 +3534,7 @@ M キーを押して変更します。
|
|||
アタッチメントが保存されました。
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
容姿はXMLファイルとして [PATH] に保存されました
|
||||
外観が XML で [PATH] に保存されました
|
||||
</notification>
|
||||
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
|
|
@ -3548,7 +3548,7 @@ M キーを押して変更します。
|
|||
<notification name="PresetNotDeleted">
|
||||
事前設定 [NAME] の削除時にエラーが発生しました。
|
||||
</notification>
|
||||
|
||||
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
ヘルプトピックが見つかりませんでした。
|
||||
</notification>
|
||||
|
|
@ -4356,6 +4356,9 @@ M キーを押して変更します。
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
オブジェクトの着用に使用できるスクリプトリソースが足りません。
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
添付ファイルはアバターの存在しない点を要求しました。代わりに胸に添付されていました。
|
||||
</notification>
|
||||
<notification name="CantDropItemTrialUser">
|
||||
オブジェクトをここにドロップできません。フリートライアル領域をお試しください。
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
出力
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
私の音量:
|
||||
マイク音量:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="スライダーを使って音量を調節します"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="スライダーを使ってマイクレベルを調節します"/>
|
||||
<text name="wait_text">
|
||||
しばらくお待ちください。
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -28,6 +28,9 @@
|
|||
<string name="StartupRequireDriverUpdate">
|
||||
グラフィックを初期化できませんでした。グラフィックドライバを更新してください。
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
ビルド構成
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
復元中です...
|
||||
</string>
|
||||
|
|
@ -1386,6 +1389,9 @@ support@secondlife.com にお問い合わせください。
|
|||
<string name="BodyPartsRightLeg">
|
||||
右脚
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
拡張スケルトン
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
低
|
||||
</string>
|
||||
|
|
@ -1834,6 +1840,51 @@ support@secondlife.com にお問い合わせください。
|
|||
<string name="Avatar Center">
|
||||
アバターの中央
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
左薬指
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
右薬指
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
しっぽのベース
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
しっぽの先
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
左の翼
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
右の翼
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
顎
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
代わりの左耳
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
代わりの右耳
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
代わりの左目
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
代わりの右目
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
舌
|
||||
</string>
|
||||
<string name="Groin">
|
||||
脚の付け根
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
左後足
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
右後足
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
装着先が正しくありません
|
||||
</string>
|
||||
|
|
@ -2233,12 +2284,12 @@ support@secondlife.com にお問い合わせください。
|
|||
<string name="ATTACH_BELLY">
|
||||
お腹
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
右胸筋
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
左胸筋
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
右胸筋
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
HUD(中央 2)
|
||||
</string>
|
||||
|
|
@ -2269,6 +2320,51 @@ support@secondlife.com にお問い合わせください。
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
アバターの中央
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
左薬指
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
右薬指
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
しっぽのベース
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
しっぽの先
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
左の翼
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
右の翼
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
顎
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
代わりの左耳
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
代わりの右耳
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
代わりの左目
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
代わりの右目
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
舌
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
脚の付け根
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
左後足
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
右後足
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
[LINE] 行目、[COLUMN] 列目
|
||||
</string>
|
||||
|
|
@ -4271,6 +4367,12 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<string name="OfflineStatus">
|
||||
オフライン
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
ユーザーがオンラインでありません - メッセージは保存され、後で配信されます。
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
ユーザーがオンラインでありません - インベントリが保存されました。
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
相手ユーザーはオンラインではありません。メッセージは保存され、後ほど配達されます。
|
||||
</string>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
Avatar
|
||||
</text>
|
||||
<slider label="Complexidade máxima:" name="IndirectMaxComplexity" tool_tip="Controla o ponto no qual um avatar visualmente complexo é desenhado como avatar de cor sólida"/>
|
||||
<slider label="Complexidade máxima:" name="IndirectMaxComplexity" tool_tip="Controla o ponto no qual um avatar visualmente complexo é desenhado como uma JellyDoll"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="MI" name="Send IM..."/>
|
||||
<menu_item_call label="Ligar" name="Call"/>
|
||||
<menu_item_call label="Convidar para entrar no grupo" name="Invite..."/>
|
||||
<menu_item_call label="Redefinir esqueleto" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Bloquear" name="Avatar Mute"/>
|
||||
<menu_item_call label="Denunciar" name="abuse"/>
|
||||
<menu_item_call label="Congelar" name="Freeze..."/>
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
<menu_item_call label="Editar meu look" name="Edit Outfit"/>
|
||||
<menu_item_call label="Editar meu corpo" name="Edit My Shape"/>
|
||||
<menu_item_call label="Altura de foco" name="Hover Height"/>
|
||||
<menu_item_call label="Redefinir esqueleto" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Meus amigos" name="Friends..."/>
|
||||
<menu_item_call label="Meus grupos" name="Groups..."/>
|
||||
<menu_item_call label="Meu perfil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="MI" name="Send IM..."/>
|
||||
<menu_item_call label="Ligar" name="Call"/>
|
||||
<menu_item_call label="Convidar para entrar no grupo" name="Invite..."/>
|
||||
<menu_item_call label="Redefinir esqueleto" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Bloquear" name="Avatar Mute"/>
|
||||
<menu_item_call label="Denunciar" name="abuse"/>
|
||||
<menu_item_call label="Congelar" name="Freeze..."/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="Editar meu look" name="Edit Outfit"/>
|
||||
<menu_item_call label="Editar meu corpo" name="Edit My Shape"/>
|
||||
<menu_item_call label="Altura de foco" name="Hover Height"/>
|
||||
<menu_item_call label="Redefinir esqueleto" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Meus amigos" name="Friends..."/>
|
||||
<menu_item_call label="Meus grupos" name="Groups..."/>
|
||||
<menu_item_call label="Meu perfil" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -366,6 +366,7 @@
|
|||
<menu_item_check label="Dados da animação" name="Animation Info"/>
|
||||
<menu_item_check label="Disable Level Of Detail" name="Disable LOD"/>
|
||||
<menu_item_check label="Show Collision Skeleton" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="Exibir ossos" name="Show Bones"/>
|
||||
<menu_item_check label="Display Agent Target" name="Display Agent Target"/>
|
||||
<menu_item_call label="Depurar texturas do avatar" name="Debug Avatar Textures"/>
|
||||
</menu>
|
||||
|
|
|
|||
|
|
@ -465,6 +465,9 @@ Ele ultrapassa o limite de anexos, de [MAX_ATTACHMENTS] objetos. Remova um objet
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
Você não pode vestir este item porque ele ainda não carregou. Tente novamente em um minuto.
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Informe sua senha para fazer o login.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Opa! Alguma coisa ficou em branco.
|
||||
Digite o nome de usuário de seu avatar.
|
||||
|
|
@ -533,6 +536,9 @@ Nota: Este procedimento limpa o cache.
|
|||
<notification name="ChangeConnectionPort">
|
||||
Reinicie o [APP_NAME] para ativar a reconfiguração da porta.
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
Essa alteração nas configurações de depuração será aplicada depois que você reiniciar o [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
Reinicie o [APP_NAME] para ativar a pele nova.
|
||||
</notification>
|
||||
|
|
@ -1342,6 +1348,14 @@ Enquando isso, use o [CURRENT_GRID] normalmente. Seu visual será exibido corret
|
|||
<ignore name="ignore" text="A roupa está demorando para chegar"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
Sua [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 avatar complexity] é [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="Avise-me se a complexidade do meu avatar for muito alta" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
Sua [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 avatar complexity] é [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
A instalação do [APP_NAME] está pronta.
|
||||
|
||||
|
|
@ -1455,6 +1469,10 @@ Substituir textura [TEXTURE_NUM], com uma imagem de 24-bit 1024x1024 ou menor e
|
|||
Você realmente deseja nivelar o terreno selecionado a partir do centro elevando/reduzindo os limites e o padrão para a ferramenta ´Reverter´?
|
||||
<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Executar"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Você está prestes a usar valores baixos maiores que os valores altos para os intervalos de elevação. Deseja prosseguir?
|
||||
<usetemplate canceltext="Não perguntar" name="yesnocancelbuttons" notext="Cancelar" yestext="Ok"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
Você pode ter somente [MAX_AGENTS] residentes permitidos.
|
||||
</notification>
|
||||
|
|
@ -1672,14 +1690,6 @@ consulte a informação [[INFO_URL] sobre essa atualização]
|
|||
Não foi possível deixar o grupo. Você não pode deixar o grupo pois é o último proprietário dele. Primeiramente, atribua outro membro à função de proprietário.
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
Não foi possível deixar o grupo: [reason].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
Você deixou o grupo [group_name].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
Tem CERTEZA de que deseja expulsar todos os residentes do grid?
|
||||
<usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Chutar todos"/>
|
||||
|
|
@ -2340,6 +2350,10 @@ Deseja desativar o Não perturbe antes de concluir esta transação?
|
|||
Tem certeza de que deseja excluir o conteúdo da Lixeira? Para sempre?
|
||||
<usetemplate ignoretext="Confirmar antes de esvaziar a pasta Lixeira" name="okcancelignore" notext="Não" yestext="Sim"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
Sua lixeira está transbordando. Isso pode causar problemas no logon.
|
||||
<usetemplate name="okcancelbuttons" notext="Esvaziarei a lixeira mais tarde" yestext="Esvaziar lixeira agora"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
Tem certeza de que quer apagar todo o histórico de viagens, web e buscas?
|
||||
<usetemplate name="okcancelbuttons" notext="Não" yestext="OK"/>
|
||||
|
|
@ -2969,7 +2983,7 @@ Se permanecer aqui, você será desconectado.
|
|||
|
||||
[MESSAGE]
|
||||
|
||||
Do objeto: <nolink>[OBJECTNAME]</nolink>, de: [NAME_SLURL]
|
||||
Do objeto: <nolink>[OBJECTNAME]</nolink>, proprietário: [NAME_SLURL]
|
||||
<form name="form">
|
||||
<button name="Gotopage" text="Carregar"/>
|
||||
<button name="Cancel" text="Cancelar"/>
|
||||
|
|
@ -3238,6 +3252,12 @@ Para sua segurança, os SLurls serão bloqueados por alguns instantes.
|
|||
<notification name="AttachmentSaved">
|
||||
Anexo salvo.
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
A aparência foi salva como XML em [PATH]
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
Falha ao salvar a aparência como XML.
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
Nenhum tópico de ajuda foi encontrado com relação a este elemento.
|
||||
</notification>
|
||||
|
|
@ -4050,6 +4070,9 @@ Tente novamente em instantes.
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
Não há recursos de script disponíveis suficientes para anexar objeto!
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
O anexo solicitou um ponto não existente no avatar. Ele foi anexado ao peito.
|
||||
</notification>
|
||||
<notification name="CantDropItemTrialUser">
|
||||
Não é possível largar objetos aqui. Tente a área de Avaliação grátis.
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
Saída
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
Meu volume:
|
||||
Volume do microfone:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="Mude o volume usando o controle deslizante"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="Mude o volume do microfone usando o controle deslizante"/>
|
||||
<text name="wait_text">
|
||||
Aguarde
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,10 @@
|
|||
</string>
|
||||
<string name="AboutHeader">
|
||||
[APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL])
|
||||
[[VIEWER_RELEASE_NOTES_URL] [Notas da versão]]
|
||||
[[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
Configuração do corpo [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutCompiler">
|
||||
Construído com [COMPILER] versão [COMPILER_VERSION]
|
||||
|
|
@ -64,6 +67,9 @@ Versão do servidor de voz: [VOICE_VERSION]
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
Erro ao obter URL de notas de versão do servidor.
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
Configuração do corpo
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
Restaurando...
|
||||
</string>
|
||||
|
|
@ -1333,6 +1339,9 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
|
|||
<string name="BodyPartsRightLeg">
|
||||
Perna direita
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
Esqueleto aprimorado
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
Baixo
|
||||
</string>
|
||||
|
|
@ -1775,6 +1784,51 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
|
|||
<string name="Avatar Center">
|
||||
Centro do avatar
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
Anelar esquerdo
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
Anelar direito
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
Base do rabo
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
Ponta do rabo
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
Asa esquerda
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
Asa direita
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
Maxilar
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
Orelha esquerda alt.
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
Orelha direita alt.
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
Olho esquerdo alt.
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
Olho direito alt.
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
Língua
|
||||
</string>
|
||||
<string name="Groin">
|
||||
Virilha
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
Pata esq. traseira
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
Pata dir. traseira
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
Ponto de encaixe inválido
|
||||
</string>
|
||||
|
|
@ -2149,12 +2203,12 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
|
|||
<string name="ATTACH_BELLY">
|
||||
Barriga
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
Peitorais D
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
Peitorais E
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
Peitorais D
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
HUD Central 2
|
||||
</string>
|
||||
|
|
@ -2185,6 +2239,51 @@ Pessoas com contas gratuitas não poderão acessar o Second Life no momento para
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
Centro do avatar
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
Anelar esquerdo
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
Anelar direito
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
Base do rabo
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
Ponta do rabo
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
Asa esquerda
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
Asa direita
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
Maxilar
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
Orelha esquerda alt.
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
Orelha direita alt.
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
Olho esquerdo alt.
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
Olho direito alt.
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
Língua
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
Virilha
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
Pata esq. traseira
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
Pata dir. traseira
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
Linha [LINE], Coluna [COLUMN]
|
||||
</string>
|
||||
|
|
@ -4112,6 +4211,12 @@ If you continue to receive this message, contact the [SUPPORT_SITE].
|
|||
<string name="OfflineStatus">
|
||||
Desconectado
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
O usuário não está online. As mensagens serão armazenadas e enviadas mais tarde.
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
O usuário não está online. O inventário foi salvo.
|
||||
</string>
|
||||
<string name="answered_call">
|
||||
Ligação atendida
|
||||
</string>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
<menu_item_call label="Дать визитную карточку" name="Give Calling Card"/>
|
||||
<menu_item_call label="Звонок" name="Call"/>
|
||||
<menu_item_call label="Пригласить в группу" name="Invite..."/>
|
||||
<menu_item_call label="Сброс скелета" name="Reset Skeleton"/>
|
||||
<context_menu label="Управление" name="Annoyance">
|
||||
<menu_item_call label="Заблокировать" name="Avatar Mute"/>
|
||||
<menu_item_call label="Разблокировать" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<menu_item_call label="Редактировать комплект" name="Edit Outfit"/>
|
||||
<menu_item_call label="Изменить фигуру" name="Edit My Shape"/>
|
||||
<menu_item_call label="Высота над землей" name="Hover Height"/>
|
||||
<menu_item_call label="Сброс скелета" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Друзья" name="Friends..."/>
|
||||
<menu_item_call label="Группы" name="Groups..."/>
|
||||
<menu_item_call label="Профиль" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
<menu_item_call label="Отправить ЛС" name="Send IM..."/>
|
||||
<menu_item_call label="Звонок" name="Call"/>
|
||||
<menu_item_call label="Пригласить в группу" name="Invite..."/>
|
||||
<menu_item_call label="Сброс скелета" name="Reset Skeleton"/>
|
||||
<context_menu label="Управление" name="Remove">
|
||||
<menu_item_call label="Заблокировать" name="Avatar Mute"/>
|
||||
<menu_item_call label="Разблокировать" name="Avatar Unmute"/>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
<menu_item_call label="Править комплект" name="Edit Outfit"/>
|
||||
<menu_item_call label="Править форму" name="Edit My Shape"/>
|
||||
<menu_item_call label="Высота" name="Hover Height"/>
|
||||
<menu_item_call label="Сброс скелета" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Друзья" name="Friends..."/>
|
||||
<menu_item_call label="Группы" name="Groups..."/>
|
||||
<menu_item_call label="Профиль" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -547,6 +547,7 @@
|
|||
<menu_item_check label="Отключить детализацию (LOD)" name="Disable LOD"/>
|
||||
<menu_item_check label="Отладка видимости персонажа" name="Debug Character Vis"/>
|
||||
<menu_item_check label="Показать скелет" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="Показать кости" name="Show Bones"/>
|
||||
<menu_item_check label="Отобразить действие агента" name="Display Agent Target"/>
|
||||
<menu_item_call label="Дамп присоединений" name="Dump Attachments"/>
|
||||
<menu_item_call label="Отладка текстур аватара" name="Debug Avatar Textures" shortcut="control|alt|shift|A"/>
|
||||
|
|
|
|||
|
|
@ -472,6 +472,9 @@
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
Нельзя надеть эту вещь, так как она еще не загружена. Повторите попытку через минуту.
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Введите пароль для входа в мир.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Что-то осталось незаполненным.
|
||||
Необходимо ввести имя пользователя для вашего аватара.
|
||||
|
|
@ -553,6 +556,9 @@
|
|||
<notification name="ChangeConnectionPort">
|
||||
Настройки порта начнут действовать после перезапуска [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
Эта настройка отладки вступит в силу после перезапуска [APP_NAME].
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
Смена темы вступит в силу после перезапуска [APP_NAME].
|
||||
<usetemplate name="okcancelbuttons" notext="Ok" yestext="Перезапуск"/>
|
||||
|
|
@ -1404,6 +1410,14 @@
|
|||
<ignore name="ignore" text="Загрузка одежды занимает значительное время"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
Ваша [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 сложность аватара]: [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="Предупреждать о превышении сложности аватара" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
Ваша [https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 сложность аватара]: [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
Установка [APP_NAME] завершена.
|
||||
|
||||
|
|
@ -1517,6 +1531,10 @@
|
|||
Вы действительно хотите зафиксировать текущий ландшафт, сделать его высоту средней точкой для верхней и нижней точек ландшафта и принять по умолчанию для функции "Вернуть"?
|
||||
<usetemplate name="okcancelbuttons" notext="Отмена" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Вы собираетесь использовать минимальные значения, которые больше, чем максимальные для диапазона высот. Начать?
|
||||
<usetemplate canceltext="Не спрашивать" name="yesnocancelbuttons" notext="Отмена" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
У вас может быть не более [MAX_AGENTS] допущенных жителей.
|
||||
</notification>
|
||||
|
|
@ -1736,14 +1754,6 @@ http://secondlife.com/download.
|
|||
Невозможно выйти из группы. Вы не можете покинуть группу, потому что вы единственый владелец группы. Пожалуйста, назначить сначала назначьте на данную роль другого пользователя.
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
Невозможно выйти из группы: [reason].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
Вы покинули группу [group_name].
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
Вы ДЕЙСТВИТЕЛЬНО хотите выбросить всех жителей с сетки?
|
||||
<usetemplate name="okcancelbuttons" notext="Отмена" yestext="Выбросить всех жителей"/>
|
||||
|
|
@ -2439,6 +2449,10 @@ http://secondlife.com/download.
|
|||
Вы действительно хотите необратимо удалить содержимое корзины?
|
||||
<usetemplate ignoretext="Подтверждать перед опорожнением корзины инвентаря" name="okcancelignore" notext="Отмена" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
Ваша корзина переполнена. Это может вызвать проблемы при входе.
|
||||
<usetemplate name="okcancelbuttons" notext="Я очищу корзину позже" yestext="Очистить корзину сейчас"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
Вы действительно хотите удалить журнал своих перемещений, веб-страниц и поиска?
|
||||
<usetemplate name="okcancelbuttons" notext="Отмена" yestext="OK"/>
|
||||
|
|
@ -3484,6 +3498,12 @@ URL: [MEDIAURL]
|
|||
<notification name="AttachmentSaved">
|
||||
Присоединение сохранено.
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
Внешность сохранена в формате XML в [PATH]
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
Не удалось сохранить внешность в XML.
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
Невозможно найти раздел справки для этого элемента.
|
||||
</notification>
|
||||
|
|
@ -4529,6 +4549,9 @@ URL: [MEDIAURL]
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
Недостаточно свободных ресурсов скриптинга для присоединения объекта!
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
Прикрепляемый объект потребовал несуществующей точки на аватаре. Он был прикреплен к груди.
|
||||
</notification>
|
||||
<notification name="CantAttachObjectBeingRemoved">
|
||||
Нельзя присоединить объект: объект был удален.
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
Выход
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
Моя громкость:
|
||||
Громкость микрофона:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="Измените значение, используя ползунок"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="Измените уровень в микрофоне, используя ползунок"/>
|
||||
<text name="wait_text">
|
||||
Подождите
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -44,6 +44,9 @@
|
|||
[APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL]) [BUILD_TYPE]
|
||||
[[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
Конфигурация построения [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutCompiler">
|
||||
Использован компилятор [COMPILER], версия [COMPILER_VERSION]
|
||||
</string>
|
||||
|
|
@ -93,6 +96,9 @@ SLURL: <nolink>[SLURL]</nolink>
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
Ошибка при получении URL-адреса заметок о выпуске сервера.
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
Конфигурация построения
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
Восстановление...
|
||||
</string>
|
||||
|
|
@ -1558,6 +1564,9 @@ support@secondlife.com.
|
|||
<string name="BodyPartsRightLeg">
|
||||
Правая нога
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
Улучшенный скелет
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
Низкая
|
||||
</string>
|
||||
|
|
@ -2036,6 +2045,51 @@ support@secondlife.com.
|
|||
<string name="Avatar Center">
|
||||
Центр аватара
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
Левый безымянный палец
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
Правый безымянный палец
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
Основание хвоста
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
Кончик хвоста
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
Левое крыло
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
Правое крыло
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
Пасть
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
Альт. левое ухо
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
Альт. правое ухо
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
Альт. левый глаз
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
Альт. правый глаз
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
Язык
|
||||
</string>
|
||||
<string name="Groin">
|
||||
Пах
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
Левая задняя нога
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
Правая задняя нога
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
Неверная точка присоединения
|
||||
</string>
|
||||
|
|
@ -2434,12 +2488,12 @@ support@secondlife.com.
|
|||
<string name="ATTACH_BELLY">
|
||||
Живот
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
Правая грудь
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
Левая грудь
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
Правая грудь
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
Дисплей управления в центре 2
|
||||
</string>
|
||||
|
|
@ -2470,6 +2524,51 @@ support@secondlife.com.
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
Центр аватара
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
Левый безымянный палец
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
Правый безымянный палец
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
Основание хвоста
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
Кончик хвоста
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
Левое крыло
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
Правое крыло
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
Пасть
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
Альт. левое ухо
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
Альт. правое ухо
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
Альт. левый глаз
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
Альт. правый глаз
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
Язык
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
Пах
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
Левая задняя нога
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
Правая задняя нога
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
Строка [LINE], Столбец [COLUMN]
|
||||
</string>
|
||||
|
|
@ -4512,10 +4611,10 @@ support@secondlife.com.
|
|||
Элемент [ITEM_NAME] отправлен автоответом
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
Пользователь оффлайн - сообщение будет сохранено и доставлено позже.
|
||||
Пользователь не в онлайне - сообщение будет сохранено и доставлено позже.
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
Пользователь оффлайн - инвентарь сохранен.
|
||||
Пользователь не в онлайне - инвентарь сохранен.
|
||||
</string>
|
||||
<string name="answered_call">
|
||||
На ваш звонок ответили
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
Avatar
|
||||
</text>
|
||||
<slider label="Maksimum karmaşıklık:" name="IndirectMaxComplexity" tool_tip="Görsel olarak karmaşık yapıdaki bir avatarın hangi noktada jelibon gibi tek renkli olarak çizileceğini kontrol eder"/>
|
||||
<slider label="Maksimum karmaşıklık:" name="IndirectMaxComplexity" tool_tip="Görsel olarak karmaşık bir avatarın hangi noktadan itibaren JellyDoll olarak çizileceğini kontrol eder"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="Aİ" name="Send IM..."/>
|
||||
<menu_item_call label="Ara" name="Call"/>
|
||||
<menu_item_call label="Gruba Davet Et" name="Invite..."/>
|
||||
<menu_item_call label="İskeleti Sıfırla" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Engelle" name="Avatar Mute"/>
|
||||
<menu_item_call label="Raporla" name="abuse"/>
|
||||
<menu_item_call label="Dondur" name="Freeze..."/>
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
<menu_item_call label="Dış Görünümümü Düzenle" name="Edit Outfit"/>
|
||||
<menu_item_call label="Şeklimi Düzenle" name="Edit My Shape"/>
|
||||
<menu_item_call label="Konum Yüksekliği" name="Hover Height"/>
|
||||
<menu_item_call label="İskeleti Sıfırla" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Arkadaşlarım" name="Friends..."/>
|
||||
<menu_item_call label="Gruplarım" name="Groups..."/>
|
||||
<menu_item_call label="Profilim" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="Aİ" name="Send IM..."/>
|
||||
<menu_item_call label="Ara" name="Call"/>
|
||||
<menu_item_call label="Gruba Davet Et" name="Invite..."/>
|
||||
<menu_item_call label="İskeleti Sıfırla" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Engelle" name="Avatar Mute"/>
|
||||
<menu_item_call label="Raporla" name="abuse"/>
|
||||
<menu_item_call label="Dondur" name="Freeze..."/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="Dış Görünümümü Düzenle" name="Edit Outfit"/>
|
||||
<menu_item_call label="Şeklimi Düzenle" name="Edit My Shape"/>
|
||||
<menu_item_call label="Konum Yüksekliği" name="Hover Height"/>
|
||||
<menu_item_call label="İskeleti Sıfırla" name="Reset Skeleton"/>
|
||||
<menu_item_call label="Arkadaşlarım" name="Friends..."/>
|
||||
<menu_item_call label="Gruplarım" name="Groups..."/>
|
||||
<menu_item_call label="Profilim" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -415,6 +415,7 @@
|
|||
<menu_item_check label="Ayrıntı Seviyesi Bilgisini Devre Dışı Bırak" name="Disable LOD"/>
|
||||
<menu_item_check label="Debug Character Vis" name="Debug Character Vis"/>
|
||||
<menu_item_check label="Çarpışma İskeletini Göster" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="Kemikleri Göster" name="Show Bones"/>
|
||||
<menu_item_check label="Aracı Hedefini Göster" name="Display Agent Target"/>
|
||||
<menu_item_call label="Aksesuarların Dökümünü Al" name="Dump Attachments"/>
|
||||
<menu_item_call label="Avatar Dokuları İçin Hata Ayıklama" name="Debug Avatar Textures"/>
|
||||
|
|
|
|||
|
|
@ -480,6 +480,9 @@ Dış görünüm klasöründe hiç giysi, vücut bölümü ya da aksesuar yok.
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
Bu öğe henüz yüklenmediği için kullanamazsınız. Lütfen bir dakika sonra tekrar deneyin.
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
Oturum açmak için lütfen parolanızı girin.
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
Hata! Boş bırakılan alan(lar) var.
|
||||
Avatarınızın Kullanıcı adını girmeniz gerekmektedir.
|
||||
|
|
@ -548,6 +551,9 @@ Not: Bu işlem önbelleği temizleyecek.
|
|||
<notification name="ChangeConnectionPort">
|
||||
Port ayarları, [APP_NAME] uygulamasını yeniden başlattıktan sonra geçerli olur.
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
Bu hata ayıklama ayarı değişikliği [APP_NAME] uygulamasını yeniden başlattıktan sonra geçerli olacak.
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
Yeni dış katman [APP_NAME] uygulamasını yeniden başlattıktan sonra görüntülenecek.
|
||||
</notification>
|
||||
|
|
@ -1366,12 +1372,13 @@ Yeni bir ana konum ayarlamak isteyebilirsiniz.
|
|||
<ignore name="ignore" text="Giysilerin karşıdan yüklenmesi uzun zaman alıyor"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="RegionAndAgentComplexity">
|
||||
[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 Görsel karmaşıklık] seviyeniz: [AGENT_COMPLEXITY].
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 avatar complexity] düzeyiniz [AGENT_COMPLEXITY].
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="Avatarımın karmaşıklık düzeyi çok yüksekse beni uyar" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 Görsel karmaşıklık] seviyeniz: [AGENT_COMPLEXITY].
|
||||
[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 avatar complexity] düzeyiniz [AGENT_COMPLEXITY].
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
[APP_NAME] yüklemesi tamamlandı.
|
||||
|
|
@ -1486,6 +1493,10 @@ Lütfen sadece bir nesne seçin ve tekrar deneyin.
|
|||
Geçerli yüzeyi bu şekilde kaydetmeyi, yüzey yükseltme/alçaltma sınırları için merkez olarak kullanmayı ve 'Geri Çevir' aracı için varsayılan olarak ayarlamayı gerçekten istiyor musunuz?
|
||||
<usetemplate name="okcancelbuttons" notext="İptal" yestext="Tamam"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
Yükselti Ayarları için girdiğiniz düşük değer, yüksek değerden daha fazla. Devam edilsin mi?
|
||||
<usetemplate canceltext="Tekrar Sorma" name="yesnocancelbuttons" notext="İptal Et" yestext="Tamam"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
Sadece [MAX_AGENTS] tane İzin Verilen Sakin belirleyebilirsiniz.
|
||||
</notification>
|
||||
|
|
@ -1723,14 +1734,6 @@ Gruptan ayrılmak istiyor musunuz?
|
|||
Gruptan ayrılınamıyor. Gruptan ayrılamazsınız çünkü grubun son sahibisiniz. Lütfen önce sahip rolüne başka bir üye atayın.
|
||||
<usetemplate name="okbutton" yestext="Tamam"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
Gruptan ayrılma işlemi yapılamıyor: [reason].
|
||||
<usetemplate name="okbutton" yestext="Tamam"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
[group_name] grubundan ayrıldınız.
|
||||
<usetemplate name="okbutton" yestext="Tamam"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
Tüm Sakinleri GERÇEKTEN ağ dışına çıkarmak istiyor musunuz?
|
||||
<usetemplate name="okcancelbuttons" notext="İptal Et" yestext="Tüm Sakinleri Çıkar"/>
|
||||
|
|
@ -2400,6 +2403,10 @@ Bu işlemi tamamlamadan önce Rahatsız Etme'yi kapatmak ister misiniz?
|
|||
Çöp kutunuzun içeriğini kalıcı olarak silmek istediğinize emin misiniz?
|
||||
<usetemplate ignoretext="Envanter Çöp Kutusu klasörünü boşaltmadan önce doğrulama iste" name="okcancelignore" notext="İptal" yestext="Tamam"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
Çöpte yer kalmamış. Bu durum oturum açma sırasında sorun yaşamanıza neden olabilir.
|
||||
<usetemplate name="okcancelbuttons" notext="Çöpü daha sonra boşaltacağım" yestext="Çöp kutusunu şimdi boşalt"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
Seyahat, web ve arama geçmişinizi silmek istediğinize emin misiniz?
|
||||
<usetemplate name="okcancelbuttons" notext="İptal" yestext="Tamam"/>
|
||||
|
|
@ -3029,7 +3036,7 @@ Bu bölgede kalmaya devam ederseniz oturumunuz sonlandırılacak.
|
|||
Bu bölgede kalmaya devam ederseniz oturumunuz sonlandırılacak.
|
||||
</notification>
|
||||
<notification name="LoadWebPage">
|
||||
[URL] web sayfası yüklensin mi?
|
||||
Bu web sayfası yüklensin mi: [URL] ?
|
||||
|
||||
[MESSAGE]
|
||||
|
||||
|
|
@ -3308,6 +3315,12 @@ Güvenliğiniz için birkaç saniye engellenecek.
|
|||
<notification name="PresetNotDeleted">
|
||||
[NAME] ön ayarı silinirken hata oluştu.
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
Görünüm XML olarak [PATH] konumuna kaydedildi
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
Görünüm XML olarak kaydedilemedi.
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
Bu öğe için yardım başlığı bulunamıyor.
|
||||
</notification>
|
||||
|
|
@ -4114,6 +4127,9 @@ Lütfen bir dakika sonra tekrar deneyin.
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
Nesneyi iliştirmek için yeterli komut dosyası kaynağı mevcut değil!
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
Aksesuar avatarda var olmayan bir noktaya karşılık geliyor. Bunun yerine göğüs kısmına eklendi.
|
||||
</notification>
|
||||
<notification name="CantDropItemTrialUser">
|
||||
Buraya nesne düşüremezsiniz; Ücretsiz Deneme alanını deneyin.
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
Çıktı
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
Ses düzeyim:
|
||||
Mik. ses düzeyi:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="Bu kaydırıcıyı kullanarak ses düzeyini değiştirin"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="Bu kaydırma butonunu kullanarak mikrofonun ses düzeyini değiştirin"/>
|
||||
<text name="wait_text">
|
||||
Lütfen bekleyin
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -39,7 +39,10 @@
|
|||
</string>
|
||||
<string name="AboutHeader">
|
||||
[APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL])
|
||||
[[VIEWER_RELEASE_NOTES_URL] [Sürüm Notları]]
|
||||
[[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
Yapı Konfigürasyonu [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutCompiler">
|
||||
[COMPILER] [COMPILER_VERSION] sürümü ile oluşturuldu
|
||||
|
|
@ -62,13 +65,13 @@ Grafik Kartı: [GRAPHICS_CARD]
|
|||
Windows Grafik Sürücüsü Sürümü: [GRAPHICS_DRIVER_VERSION]
|
||||
</string>
|
||||
<string name="AboutLibs">
|
||||
OpenGL Sürümü: [OPENGL_VERSION]
|
||||
OpenGL Sürümü [OPENGL_VERSION]
|
||||
|
||||
libcurl Sürümü: [LIBCURL_VERSION]
|
||||
J2C Kod Çözücü Sürümü: [J2C_VERSION]
|
||||
Ses Sürücüsü Sürümü: [AUDIO_DRIVER_VERSION]
|
||||
LLCEFLib/CEF Sürümü: [LLCEFLIB_VERSION]
|
||||
Ses Sunucusu Sürümü: [VOICE_VERSION]
|
||||
Ses Sunucu Sürümü: [VOICE_VERSION]
|
||||
</string>
|
||||
<string name="AboutTraffic">
|
||||
Kaybolan Paketler: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%)
|
||||
|
|
@ -76,6 +79,9 @@ Ses Sunucusu Sürümü: [VOICE_VERSION]
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
Sunucu sürümü notları URL'si alınırken hata oluştu.
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
Yapı Konfigürasyonu
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
Geri yükleniyor...
|
||||
</string>
|
||||
|
|
@ -1391,6 +1397,9 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
|
|||
<string name="BodyPartsRightLeg">
|
||||
Sağ Bacak
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
Gelişmiş İskelet
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
Düşük
|
||||
</string>
|
||||
|
|
@ -1839,6 +1848,51 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
|
|||
<string name="Avatar Center">
|
||||
Avatar Merkezi
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
Sol Yüzük Parmağı
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
Sağ Yüzük Parmağı
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
Kuyruk Tabanı
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
Kuyruk Ucu
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
Sol Kanat
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
Sağ Kanat
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
Pençe
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
Altrntf Sol Kulak
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
Altrntf Sağ Kulak
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
Altrntf Sol Göz
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
Altrntf Sağ Göz
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
Dil
|
||||
</string>
|
||||
<string name="Groin">
|
||||
Kasık
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
Sol Arka Ayak
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
Sağ Arka Ayak
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
Geçersiz Aksesuar Noktası
|
||||
</string>
|
||||
|
|
@ -2228,12 +2282,12 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
|
|||
<string name="ATTACH_BELLY">
|
||||
Göbek
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
Sağ Göğüs
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
Sol Göğüs
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
Sağ Göğüs
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
BÜG 2. Merkez
|
||||
</string>
|
||||
|
|
@ -2264,6 +2318,51 @@ Lütfen bir dakika içerisinde tekrar oturum açmayı deneyin.
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
Avatar Merkezi
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
Sol Yüzük Parmağı
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
Sağ Yüzük Parmağı
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
Kuyruk Tabanı
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
Kuyruk Ucu
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
Sol Kanat
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
Sağ Kanat
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
Pençe
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
Altrntf Sol Kulak
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
Altrntf Sağ Kulak
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
Altrntf Sol Göz
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
Altrntf Sağ Göz
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
Dil
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
Kasık
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
Sol Arka Ayak
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
Sağ Arka Ayak
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
Satır [LINE], Sütun [COLUMN]
|
||||
</string>
|
||||
|
|
@ -4255,6 +4354,12 @@ Bu iletiyi almaya devam ederseniz, lütfen [SUPPORT_SITE] bölümüne başvurun.
|
|||
<string name="OfflineStatus">
|
||||
Çevrimdışı
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
Kullanıcı çevrimiçi değil - mesaj saklanıp daha sonra iletilecek.
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
Kullanıcı çevrimiçi değil - envanter kaydedildi.
|
||||
</string>
|
||||
<string name="answered_call">
|
||||
Aramanız yanıtlandı
|
||||
</string>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<text name="AvatarText">
|
||||
化身
|
||||
</text>
|
||||
<slider label="最大複雜度:" name="IndirectMaxComplexity" tool_tip="控制在何時機下讓複雜化身呈像為「單色軟糖娃娃」"/>
|
||||
<slider label="最大複雜度:" name="IndirectMaxComplexity" tool_tip="控制在何時機下讓複雜化身呈像為 JellyDoll"/>
|
||||
<text name="IndirectMaxComplexityText">
|
||||
0
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="IM" name="Send IM..."/>
|
||||
<menu_item_call label="通話" name="Call"/>
|
||||
<menu_item_call label="邀請加入群組" name="Invite..."/>
|
||||
<menu_item_call label="重設骨架" name="Reset Skeleton"/>
|
||||
<menu_item_call label="封鎖" name="Avatar Mute"/>
|
||||
<menu_item_call label="回報" name="abuse"/>
|
||||
<menu_item_call label="凍結" name="Freeze..."/>
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
<menu_item_call label="編輯我的裝扮" name="Edit Outfit"/>
|
||||
<menu_item_call label="編輯我的體形" name="Edit My Shape"/>
|
||||
<menu_item_call label="懸浮高度" name="Hover Height"/>
|
||||
<menu_item_call label="重設骨架" name="Reset Skeleton"/>
|
||||
<menu_item_call label="我的朋友" name="Friends..."/>
|
||||
<menu_item_call label="我的群組" name="Groups..."/>
|
||||
<menu_item_call label="我的個人檔案" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
<menu_item_call label="IM" name="Send IM..."/>
|
||||
<menu_item_call label="通話" name="Call"/>
|
||||
<menu_item_call label="邀請加入群組" name="Invite..."/>
|
||||
<menu_item_call label="重設骨架" name="Reset Skeleton"/>
|
||||
<menu_item_call label="封鎖" name="Avatar Mute"/>
|
||||
<menu_item_call label="回報" name="abuse"/>
|
||||
<menu_item_call label="凍結" name="Freeze..."/>
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
<menu_item_call label="編輯我的裝扮" name="Edit Outfit"/>
|
||||
<menu_item_call label="編輯我的體形" name="Edit My Shape"/>
|
||||
<menu_item_call label="懸浮高度" name="Hover Height"/>
|
||||
<menu_item_call label="重設骨架" name="Reset Skeleton"/>
|
||||
<menu_item_call label="我的朋友" name="Friends..."/>
|
||||
<menu_item_call label="我的群組" name="Groups..."/>
|
||||
<menu_item_call label="我的個人檔案" name="Profile..."/>
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
<menu_item_check label="停用細節層次" name="Disable LOD"/>
|
||||
<menu_item_check label="除錯字元可見性" name="Debug Character Vis"/>
|
||||
<menu_item_check label="顯示碰撞骨架" name="Show Collision Skeleton"/>
|
||||
<menu_item_check label="顯示骨頭" name="Show Bones"/>
|
||||
<menu_item_check label="顯示用戶目標" name="Display Agent Target"/>
|
||||
-->
|
||||
<menu_item_call label="傾印附件" name="Dump Attachments"/>
|
||||
|
|
|
|||
|
|
@ -468,6 +468,9 @@
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
無法穿戴該物件,它尚未完成載入。 請稍候再試。
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
請輸入密碼以便登入。
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
糟糕! 發現有內容留白。
|
||||
你必須為化身輸入一個使用者名稱。
|
||||
|
|
@ -536,6 +539,9 @@
|
|||
<notification name="ChangeConnectionPort">
|
||||
重新啟動 [APP_NAME] 後將啟用新的埠設定。
|
||||
</notification>
|
||||
<notification name="ChangeDeferredDebugSetting">
|
||||
這個除錯設定將在重新啟動 [APP_NAME] 後啟用。
|
||||
</notification>
|
||||
<notification name="ChangeSkin">
|
||||
重新啟動 [APP_NAME] 後將顯現新的皮膚。
|
||||
</notification>
|
||||
|
|
@ -1342,6 +1348,14 @@
|
|||
<ignore name="ignore" text="服裝花太多時間下載"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="AgentComplexityWithVisibility">
|
||||
你的[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 化身複雜度]是[AGENT_COMPLEXITY]。
|
||||
[OVERLIMIT_MSG]
|
||||
<usetemplate ignoretext="警告我化身的複雜度是否可能過高" name="notifyignore"/>
|
||||
</notification>
|
||||
<notification name="AgentComplexity">
|
||||
你的[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 化身複雜度]是[AGENT_COMPLEXITY]。
|
||||
</notification>
|
||||
<notification name="FirstRun">
|
||||
[APP_NAME] 安裝完成。
|
||||
|
||||
|
|
@ -1455,6 +1469,10 @@ SHA1 指紋:[MD5_DIGEST]
|
|||
你真的要確定產出目前地形,使其成為地形升/降極限的中間值,並設為「復原」工具的預設值?
|
||||
<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
你設的海拔範圍值,低值大於高值。 繼續?
|
||||
<usetemplate canceltext="不要問" name="yesnocancelbuttons" notext="取消" yestext="確定"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
你最多只能有 [MAX_AGENTS] 位允許居民。
|
||||
</notification>
|
||||
|
|
@ -1670,14 +1688,6 @@ SHA1 指紋:[MD5_DIGEST]
|
|||
無法離開群組。 你是此群組僅存的所有人,不得離開群組。 請先把所有人職銜指派給另一人。
|
||||
<usetemplate name="okbutton" yestext="確定"/>
|
||||
</notification>
|
||||
<notification name="GroupDepartError">
|
||||
無法離開群組:[reason]。
|
||||
<usetemplate name="okbutton" yestext="確定"/>
|
||||
</notification>
|
||||
<notification name="GroupDepart">
|
||||
你已經離開[group_name]群組。
|
||||
<usetemplate name="okbutton" yestext="確定"/>
|
||||
</notification>
|
||||
<notification name="ConfirmKick">
|
||||
你確定要踢出這網格內的全部居民?
|
||||
<usetemplate name="okcancelbuttons" notext="取消" yestext="踢出全部居民"/>
|
||||
|
|
@ -2337,6 +2347,10 @@ SHA1 指紋:[MD5_DIGEST]
|
|||
你確定你要對你垃圾筒中的內容進行刪除?
|
||||
<usetemplate ignoretext="在我清空收納區垃圾筒資料夾前確認" name="okcancelignore" notext="取消" yestext="確定"/>
|
||||
</notification>
|
||||
<notification name="TrashIsFull">
|
||||
你的垃圾桶快滿了。 這可能會造成登入的問題。
|
||||
<usetemplate name="okcancelbuttons" notext="我稍後再清空垃圾桶" yestext="現在清空垃圾桶"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearBrowserCache">
|
||||
你確定要刪除你的旅行、網頁及搜尋歷史紀錄嗎?
|
||||
<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
|
||||
|
|
@ -2965,11 +2979,11 @@ SHA1 指紋:[MD5_DIGEST]
|
|||
如果你繼續留在這地區,你將會被登出。
|
||||
</notification>
|
||||
<notification name="LoadWebPage">
|
||||
載入網頁 [URL] ?
|
||||
載入網頁 [URL]?
|
||||
|
||||
[MESSAGE]
|
||||
|
||||
來源物件:<nolink>[OBJECTNAME]</nolink>(所有人:[NAME_SLURL])
|
||||
來源物件:<nolink>[OBJECTNAME]</nolink>(所有人是[NAME_SLURL])
|
||||
<form name="form">
|
||||
<button name="Gotopage" text="前往頁面"/>
|
||||
<button name="Cancel" text="取消"/>
|
||||
|
|
@ -3238,6 +3252,12 @@ SHA1 指紋:[MD5_DIGEST]
|
|||
<notification name="AttachmentSaved">
|
||||
附件已儲存。
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
外觀已經存成位於[PATH]的XML
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
將外觀存為XML失敗。
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
找不到這個元件的幫助主題。
|
||||
</notification>
|
||||
|
|
@ -4056,6 +4076,9 @@ SHA1 指紋:[MD5_DIGEST]
|
|||
<notification name="CantAttachNotEnoughScriptResources">
|
||||
腳本資源不足,無法附著物件!
|
||||
</notification>
|
||||
<notification name="IllegalAttachment">
|
||||
這個附件要求了化身上不存在的點。 因此已將該附件附著到胸部。
|
||||
</notification>
|
||||
<notification name="CantDropItemTrialUser">
|
||||
你無法在此卸除物件,請到「自由嘗試」區域再試。
|
||||
</notification>
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
輸出
|
||||
</text>
|
||||
<text name="My volume label">
|
||||
我的音量:
|
||||
麥克風音量:
|
||||
</text>
|
||||
<slider_bar initial_value="1.0" name="mic_volume_slider" tool_tip="用這控制條改變音量"/>
|
||||
<slider_bar name="mic_volume_slider" tool_tip="用這個控制條調整麥克風音量"/>
|
||||
<text name="wait_text">
|
||||
請稍候
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -41,6 +41,9 @@
|
|||
[APP_NAME] [VIEWER_VERSION_0].[VIEWER_VERSION_1].[VIEWER_VERSION_2] ([VIEWER_VERSION_3]) [BUILD_DATE] [BUILD_TIME] ([CHANNEL])
|
||||
[[VIEWER_RELEASE_NOTES_URL] [ReleaseNotes]]
|
||||
</string>
|
||||
<string name="BuildConfig">
|
||||
建製設置 [BUILD_CONFIG]
|
||||
</string>
|
||||
<string name="AboutCompiler">
|
||||
以 [COMPILER_VERSION] 版本 [COMPILER] 建置
|
||||
</string>
|
||||
|
|
@ -76,6 +79,9 @@ LLCEFLib/CEF 版本: [LLCEFLIB_VERSION]
|
|||
<string name="ErrorFetchingServerReleaseNotesURL">
|
||||
擷取伺服器版本說明 URL 時出錯。
|
||||
</string>
|
||||
<string name="BuildConfiguration">
|
||||
建製設置
|
||||
</string>
|
||||
<string name="ProgressRestoring">
|
||||
回存中...
|
||||
</string>
|
||||
|
|
@ -1374,6 +1380,9 @@ http://secondlife.com/viewer-access-faq
|
|||
<string name="BodyPartsRightLeg">
|
||||
右腿
|
||||
</string>
|
||||
<string name="BodyPartsEnhancedSkeleton">
|
||||
增強版骨架
|
||||
</string>
|
||||
<string name="GraphicsQualityLow">
|
||||
低
|
||||
</string>
|
||||
|
|
@ -1822,6 +1831,51 @@ http://secondlife.com/viewer-access-faq
|
|||
<string name="Avatar Center">
|
||||
化身中心
|
||||
</string>
|
||||
<string name="Left Ring Finger">
|
||||
左無名指
|
||||
</string>
|
||||
<string name="Right Ring Finger">
|
||||
右無名指
|
||||
</string>
|
||||
<string name="Tail Base">
|
||||
尾巴基部
|
||||
</string>
|
||||
<string name="Tail Tip">
|
||||
尾巴末梢
|
||||
</string>
|
||||
<string name="Left Wing">
|
||||
左翼
|
||||
</string>
|
||||
<string name="Right Wing">
|
||||
右翼
|
||||
</string>
|
||||
<string name="Jaw">
|
||||
顎
|
||||
</string>
|
||||
<string name="Alt Left Ear">
|
||||
替代左耳
|
||||
</string>
|
||||
<string name="Alt Right Ear">
|
||||
替代右耳
|
||||
</string>
|
||||
<string name="Alt Left Eye">
|
||||
替代左眼
|
||||
</string>
|
||||
<string name="Alt Right Eye">
|
||||
替代右眼
|
||||
</string>
|
||||
<string name="Tongue">
|
||||
舌頭
|
||||
</string>
|
||||
<string name="Groin">
|
||||
鼠蹊
|
||||
</string>
|
||||
<string name="Left Hind Foot">
|
||||
左後腳
|
||||
</string>
|
||||
<string name="Right Hind Foot">
|
||||
右後腳
|
||||
</string>
|
||||
<string name="Invalid Attachment">
|
||||
無效的附接點
|
||||
</string>
|
||||
|
|
@ -2196,12 +2250,12 @@ http://secondlife.com/viewer-access-faq
|
|||
<string name="ATTACH_BELLY">
|
||||
腹部
|
||||
</string>
|
||||
<string name="ATTACH_RPEC">
|
||||
右胸肌
|
||||
</string>
|
||||
<string name="ATTACH_LPEC">
|
||||
<string name="ATTACH_LEFT_PEC">
|
||||
左胸肌
|
||||
</string>
|
||||
<string name="ATTACH_RIGHT_PEC">
|
||||
右胸肌
|
||||
</string>
|
||||
<string name="ATTACH_HUD_CENTER_2">
|
||||
擡頭顯示中央 2
|
||||
</string>
|
||||
|
|
@ -2232,6 +2286,51 @@ http://secondlife.com/viewer-access-faq
|
|||
<string name="ATTACH_AVATAR_CENTER">
|
||||
化身中心
|
||||
</string>
|
||||
<string name="ATTACH_LHAND_RING1">
|
||||
左無名指
|
||||
</string>
|
||||
<string name="ATTACH_RHAND_RING1">
|
||||
右無名指
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_BASE">
|
||||
尾巴基部
|
||||
</string>
|
||||
<string name="ATTACH_TAIL_TIP">
|
||||
尾巴末梢
|
||||
</string>
|
||||
<string name="ATTACH_LWING">
|
||||
左翼
|
||||
</string>
|
||||
<string name="ATTACH_RWING">
|
||||
右翼
|
||||
</string>
|
||||
<string name="ATTACH_FACE_JAW">
|
||||
顎
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEAR">
|
||||
替代左耳
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REAR">
|
||||
替代右耳
|
||||
</string>
|
||||
<string name="ATTACH_FACE_LEYE">
|
||||
替代左眼
|
||||
</string>
|
||||
<string name="ATTACH_FACE_REYE">
|
||||
替代右眼
|
||||
</string>
|
||||
<string name="ATTACH_FACE_TONGUE">
|
||||
舌頭
|
||||
</string>
|
||||
<string name="ATTACH_GROIN">
|
||||
鼠蹊
|
||||
</string>
|
||||
<string name="ATTACH_HIND_LFOOT">
|
||||
左後腳
|
||||
</string>
|
||||
<string name="ATTACH_HIND_RFOOT">
|
||||
右後腳
|
||||
</string>
|
||||
<string name="CursorPos">
|
||||
橫行 [LINE],縱列 [COLUMN]
|
||||
</string>
|
||||
|
|
@ -4222,6 +4321,12 @@ http://secondlife.com/viewer-access-faq
|
|||
<string name="OfflineStatus">
|
||||
離線
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
使用者不在線上 - 訊息將留存,稍後傳遞。
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
使用者不在線上 - 收納區已儲存。
|
||||
</string>
|
||||
<string name="answered_call">
|
||||
你的通話已經接通
|
||||
</string>
|
||||
|
|
|
|||
Loading…
Reference in New Issue