Merge changes from Firestorm LGPL
commit
092a090747
|
|
@ -2888,7 +2888,7 @@ BOOL LLWindowWin32::getClientRectInScreenSpace( RECT* rectp )
|
|||
|
||||
void LLWindowWin32::flashIcon(F32 seconds)
|
||||
{
|
||||
if (getMinimized()) // <FS:CR> Moved this here from llviewermessage.cpp
|
||||
if (mWindowHandle && GetFocus() != mWindowHandle) // <FS:CR> Moved this here from llviewermessage.cpp
|
||||
{
|
||||
FLASHWINFO flash_info;
|
||||
|
||||
|
|
|
|||
|
|
@ -23903,6 +23903,17 @@ Change of this parameter will affect the layout of buttons in notification toast
|
|||
<key>Value</key>
|
||||
<integer>0</integer>
|
||||
</map>
|
||||
<key>FSStaticEyesUUID</key>
|
||||
<map>
|
||||
<key>Comment</key>
|
||||
<string>Animation UUID to used to stop idle eye moment (Default uses priority 2)</string>
|
||||
<key>Persist</key>
|
||||
<integer>1</integer>
|
||||
<key>Type</key>
|
||||
<string>String</string>
|
||||
<key>Value</key>
|
||||
<string>eff31dd2-1b65-5a03-5e37-15aca8e53ab7</string>
|
||||
</map>
|
||||
</map>
|
||||
</llsd>
|
||||
|
||||
|
|
|
|||
|
|
@ -1059,5 +1059,16 @@
|
|||
<key>Backup</key>
|
||||
<integer>0</integer>
|
||||
</map>
|
||||
<key>FSStaticEyes</key>
|
||||
<map>
|
||||
<key>Comment</key>
|
||||
<string>Disables built in random eye moment on own avatar via animation defined at FSStaticEyesUUID.</string>
|
||||
<key>Persist</key>
|
||||
<integer>1</integer>
|
||||
<key>Type</key>
|
||||
<string>Boolean</string>
|
||||
<key>Value</key>
|
||||
<integer>0</integer>
|
||||
</map>
|
||||
</map>
|
||||
</llsd>
|
||||
|
|
|
|||
|
|
@ -1211,6 +1211,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
LLInventoryType::EType inventory_type = LLInventoryType::defaultForAssetType(asset_type);
|
||||
bool new_file_agent_inventory = false;
|
||||
LLWearableType::EType wearable_type = NOT_WEARABLE;
|
||||
std::string perms_prefix = "";
|
||||
|
||||
if (name.empty())
|
||||
{
|
||||
|
|
@ -1221,6 +1222,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
{
|
||||
case LLAssetType::AT_TEXTURE:
|
||||
{
|
||||
perms_prefix = "Uploads";
|
||||
temporary = getChild<LLCheckBoxCtrl>("temp_asset")->get();
|
||||
if (temporary)
|
||||
{
|
||||
|
|
@ -1236,6 +1238,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
break;
|
||||
case LLAssetType::AT_SOUND:
|
||||
{
|
||||
perms_prefix = "Uploads";
|
||||
temporary = getChild<LLCheckBoxCtrl>("temp_asset")->get();
|
||||
if (temporary)
|
||||
{
|
||||
|
|
@ -1255,6 +1258,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
case LLAssetType::AT_CLOTHING:
|
||||
case LLAssetType::AT_BODYPART:
|
||||
{
|
||||
perms_prefix = "Wearables";
|
||||
std::string asset(asset_data.begin(), asset_data.end());
|
||||
|
||||
S32 position = asset.rfind("type");
|
||||
|
|
@ -1298,6 +1302,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
break;
|
||||
case LLAssetType::AT_NOTECARD:
|
||||
{
|
||||
perms_prefix = "Notecards";
|
||||
if (inventory_item.isNull())
|
||||
{
|
||||
// create inventory item first
|
||||
|
|
@ -1321,6 +1326,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
break;
|
||||
case LLAssetType::AT_LSL_TEXT:
|
||||
{
|
||||
perms_prefix = "Scripts";
|
||||
if (inventory_item.isNull())
|
||||
{
|
||||
// create inventory item first
|
||||
|
|
@ -1352,6 +1358,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
break;
|
||||
case LLAssetType::AT_ANIMATION:
|
||||
{
|
||||
perms_prefix = "Uploads";
|
||||
temporary = getChild<LLCheckBoxCtrl>("temp_asset")->get();
|
||||
if (temporary)
|
||||
{
|
||||
|
|
@ -1369,6 +1376,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
break;
|
||||
case LLAssetType::AT_GESTURE:
|
||||
{
|
||||
perms_prefix = "Gestures";
|
||||
if (inventory_item.isNull())
|
||||
{
|
||||
// create inventory item first
|
||||
|
|
@ -1472,7 +1480,7 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
data->mAssetInfo.mType = asset_type;
|
||||
data->mAssetInfo.mCreatorID = gAgentID;
|
||||
data->mInventoryType = inventory_type;
|
||||
data->mNextOwnerPerm = LLFloaterPerms::getNextOwnerPerms();
|
||||
data->mNextOwnerPerm = LLFloaterPerms::getNextOwnerPerms(perms_prefix);
|
||||
data->mExpectedUploadCost = LLGlobalEconomy::Singleton::getInstance()->getPriceUpload();
|
||||
FSResourceData* fs_data = new FSResourceData;
|
||||
fs_data->uuid = asset_id;
|
||||
|
|
@ -1495,9 +1503,9 @@ void FSFloaterImport::uploadAsset(LLUUID asset_id, LLUUID inventory_item)
|
|||
body["inventory_type"] = LLInventoryType::lookup(inventory_type);
|
||||
body["name"] = name;
|
||||
body["description"] = description;
|
||||
body["next_owner_mask"] = LLSD::Integer(LLFloaterPerms::getNextOwnerPerms());
|
||||
body["group_mask"] = LLSD::Integer(LLFloaterPerms::getGroupPerms());
|
||||
body["everyone_mask"] = LLSD::Integer(LLFloaterPerms::getEveryonePerms());
|
||||
body["next_owner_mask"] = LLSD::Integer(LLFloaterPerms::getNextOwnerPerms(perms_prefix));
|
||||
body["group_mask"] = LLSD::Integer(LLFloaterPerms::getGroupPerms(perms_prefix));
|
||||
body["everyone_mask"] = LLSD::Integer(LLFloaterPerms::getEveryonePerms(perms_prefix));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -846,6 +846,11 @@ void FSFloaterPlaceDetails::onSLURLBuilt(std::string& slurl)
|
|||
|
||||
void FSFloaterPlaceDetails::onLandmarkLoaded(LLLandmark* landmark)
|
||||
{
|
||||
if (!mPanelLandmarkInfo)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
LLUUID region_id;
|
||||
landmark->getRegionID(region_id);
|
||||
landmark->getGlobalPos(mGlobalPos);
|
||||
|
|
|
|||
|
|
@ -775,7 +775,7 @@ void FSLSLBridge::processAttach(LLViewerObject* object, const LLViewerJointAttac
|
|||
LL_WARNS("FSLSLBridge") << "Bridge container isn't in the correct inventory location. Detaching it and aborting." << LL_ENDL;
|
||||
if (mBridgeCreating)
|
||||
{
|
||||
report_to_nearby_chat(LLTrans::getString("fs_bridge_failure_attach_wrong_location"));
|
||||
report_to_nearby_chat(LLTrans::getString("fsbridge_failure_attach_wrong_location"));
|
||||
setBridgeCreating(false); //in case we interrupted the creation
|
||||
}
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@ void GrowlManager::performNotification(const std::string& title, const std::stri
|
|||
{
|
||||
if (mTitleTimers[title] > now - GROWL_THROTTLE_TIME)
|
||||
{
|
||||
LL_WARNS("GrowlNotify") << "Discarded notification with title '" << title << "' - spam ._." << LL_ENDL;
|
||||
LL_WARNS("GrowlNotify") << "Discarded notification with title '" << title << "' due to throttle" << LL_ENDL;
|
||||
mTitleTimers[title] = now;
|
||||
return;
|
||||
}
|
||||
|
|
@ -317,7 +317,9 @@ bool GrowlManager::filterOldNotifications(LLNotificationPtr pNotification)
|
|||
void GrowlManager::onInstantMessage(const LLSD& im)
|
||||
{
|
||||
LLIMModel::LLIMSession* session = LLIMModel::instance().findIMSession(im["session_id"].asUUID());
|
||||
if (session->isP2PSessionType() && (!im["keyword_alert_performed"].asBoolean() || !gSavedSettings.getBOOL("FSFilterGrowlKeywordDuplicateIMs")))
|
||||
if (session->isP2PSessionType() && // Must be P2P
|
||||
!im["is_announcement"].asBoolean() && // Not an announcement (incoming IM, autoresponse sent info...)
|
||||
(!im["keyword_alert_performed"].asBoolean() || !gSavedSettings.getBOOL("FSFilterGrowlKeywordDuplicateIMs"))) // Not keyword or show duplicate IMs due to keywords
|
||||
{
|
||||
// Don't show messages from ourselves or the system.
|
||||
const LLUUID from_id = im["from_id"].asUUID();
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@
|
|||
// (See *NOTE: in renderAvatars why this forward declatation is commented out)
|
||||
// void drawBoxOutline(const LLVector3& pos,const LLVector3& size); // llspatialpartition.cpp
|
||||
// </FS:Zi>
|
||||
#include "llnetmap.h"
|
||||
|
||||
static U32 sDataMask = LLDrawPoolAvatar::VERTEX_DATA_MASK;
|
||||
static U32 sBufferUsage = GL_STREAM_DRAW_ARB;
|
||||
|
|
@ -1267,7 +1268,8 @@ void LLDrawPoolAvatar::renderAvatars(LLVOAvatar* single_avatar, S32 pass)
|
|||
gGL.matrixMode(LLRender::MM_MODELVIEW);
|
||||
gGL.pushMatrix();
|
||||
|
||||
gGL.diffuseColor4f(0.7f,1.0f,0.0f,0.3f);
|
||||
LLColor4 avatar_color = LLNetMap::getAvatarColor(avatarp->getID());
|
||||
gGL.diffuseColor4f(avatar_color.mV[VRED], avatar_color.mV[VGREEN], avatar_color.mV[VBLUE], avatar_color.mV[VALPHA]);
|
||||
glLineWidth(2.0);
|
||||
|
||||
LLQuaternion rot=avatarp->getRotationRegion();
|
||||
|
|
|
|||
|
|
@ -552,6 +552,9 @@ LLFloaterPreference::LLFloaterPreference(const LLSD& key)
|
|||
|
||||
// <FS:Ansariel> FIRE-2912: Reset voice button
|
||||
mCommitCallbackRegistrar.add("Pref.ResetVoice", boost::bind(&LLFloaterPreference::onClickResetVoice, this));
|
||||
|
||||
// <FS: KC> FIRE-18250: Option to disable default eye movement
|
||||
mCommitCallbackRegistrar.add("Pref.StaticEyes", boost::bind(&LLFloaterPreference::onClickStaticEyes, this));
|
||||
// </Firestorm callbacks>
|
||||
|
||||
mCommitCallbackRegistrar.add("UpdateFilter", boost::bind(&LLFloaterPreference::onUpdateFilterTerm, this, false)); // <FS:ND/> Hook up for filtering
|
||||
|
|
@ -2502,6 +2505,9 @@ void LLFloaterPreference::setPersonalInfo(const std::string& visibility, bool im
|
|||
|
||||
// <FS:Ansariel> Clear inventory cache button
|
||||
getChildView("ClearInventoryCache")->setEnabled(TRUE);
|
||||
|
||||
// <FS:Ansariel> FIRE-18250: Option to disable default eye movement
|
||||
getChildView("FSStaticEyes")->setEnabled(TRUE);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -4418,6 +4424,23 @@ void LLFloaterPreference::populateFontSelectionCombo()
|
|||
}
|
||||
// </FS:Kadah>
|
||||
|
||||
// <FS:KC> FIRE-18250: Option to disable default eye movement
|
||||
void LLFloaterPreference::onClickStaticEyes()
|
||||
{
|
||||
LLUUID anim_id(gSavedSettings.getString("FSStaticEyesUUID"));
|
||||
if (gSavedPerAccountSettings.getBOOL("FSStaticEyes"))
|
||||
{
|
||||
gAgentAvatarp->startMotion(anim_id);
|
||||
gAgent.sendAnimationRequest(anim_id, ANIM_REQUEST_START);
|
||||
}
|
||||
else
|
||||
{
|
||||
gAgentAvatarp->stopMotion(anim_id);
|
||||
gAgent.sendAnimationRequest(anim_id, ANIM_REQUEST_STOP);
|
||||
}
|
||||
}
|
||||
// </FS:KC>
|
||||
|
||||
// <FS:AW optional opensim support>
|
||||
#ifdef OPENSIM
|
||||
static LLPanelInjector<LLPanelPreferenceOpensim> t_pref_opensim("panel_preference_opensim");
|
||||
|
|
|
|||
|
|
@ -177,6 +177,9 @@ public:
|
|||
// <FS:Ansariel> FIRE-2912: Reset voice button
|
||||
void onClickResetVoice();
|
||||
|
||||
// <FS:KC> FIRE-18250: Option to disable default eye movement
|
||||
void onClickStaticEyes();
|
||||
|
||||
void onClickSetCache();
|
||||
void onClickBrowseCache();
|
||||
void onClickBrowseCrashLogs();
|
||||
|
|
|
|||
|
|
@ -667,25 +667,7 @@ void LLNetMap::draw()
|
|||
}
|
||||
// </FS:Ansariel>
|
||||
|
||||
LLColor4 color = map_avatar_color; // <FS:CR>
|
||||
|
||||
// <FS:CR> Color "special" avatars with special colors (Friends, muted, Lindens, etc)
|
||||
color = LGGContactSets::getInstance()->colorize(uuid, color, LGG_CS_MINIMAP);
|
||||
// </FS:CR>
|
||||
|
||||
//color based on contact sets prefs
|
||||
if(LGGContactSets::getInstance()->hasFriendColorThatShouldShow(uuid, LGG_CS_MINIMAP))
|
||||
{
|
||||
color = LGGContactSets::getInstance()->getFriendColor(uuid);
|
||||
}
|
||||
|
||||
// <FS:Ansariel> Mark Avatars with special colors
|
||||
avatar_marks_map_t::iterator found = sAvatarMarksMap.find(uuid);
|
||||
if (found != sAvatarMarksMap.end())
|
||||
{
|
||||
color = found->second;
|
||||
}
|
||||
// </FS:Ansariel> Mark Avatars with special colors
|
||||
LLColor4 color = getAvatarColor(uuid); // <FS:CR>
|
||||
|
||||
// [RLVa:KB] - Checked: 2010-04-19 (RLVa-1.2.0f) | Modified: RLVa-1.2.0f | FS-Specific
|
||||
LLWorldMapView::drawAvatar(
|
||||
|
|
@ -1835,6 +1817,31 @@ void LLNetMap::clearAvatarMarkColors()
|
|||
{
|
||||
sAvatarMarksMap.clear();
|
||||
}
|
||||
|
||||
// static
|
||||
LLColor4 LLNetMap::getAvatarColor(const LLUUID& avatar_id)
|
||||
{
|
||||
static LLUIColor map_avatar_color = LLUIColorTable::instance().getColor("MapAvatarColor", LLColor4::white);
|
||||
LLColor4 color = map_avatar_color;
|
||||
|
||||
// Color "special" avatars with special colors (Friends, muted, Lindens, etc)
|
||||
color = LGGContactSets::getInstance()->colorize(avatar_id, color, LGG_CS_MINIMAP);
|
||||
|
||||
// Color based on contact sets prefs
|
||||
if(LGGContactSets::getInstance()->hasFriendColorThatShouldShow(avatar_id, LGG_CS_MINIMAP))
|
||||
{
|
||||
color = LGGContactSets::getInstance()->getFriendColor(avatar_id);
|
||||
}
|
||||
|
||||
// Mark Avatars with special colors
|
||||
avatar_marks_map_t::iterator found = sAvatarMarksMap.find(avatar_id);
|
||||
if (found != sAvatarMarksMap.end())
|
||||
{
|
||||
color = found->second;
|
||||
}
|
||||
|
||||
return color;
|
||||
}
|
||||
//</FS:Ansariel>
|
||||
|
||||
void LLNetMap::handleCam()
|
||||
|
|
|
|||
|
|
@ -108,6 +108,7 @@ public:
|
|||
static void clearAvatarMarkColor(const LLUUID& avatar_id);
|
||||
static void clearAvatarMarkColors(const uuid_vec_t& avatar_ids);
|
||||
static void clearAvatarMarkColors();
|
||||
static LLColor4 getAvatarColor(const LLUUID& avatar_id);
|
||||
// </FS:Ansariel>
|
||||
|
||||
private:
|
||||
|
|
|
|||
|
|
@ -1292,6 +1292,13 @@ bool idle_startup()
|
|||
{
|
||||
gDirUtilp->setChatLogsDir(gSavedPerAccountSettings.getString("InstantMessageLogPath"));
|
||||
}
|
||||
// <FS:KC> FIRE-18247: Handle non-existent chat log location
|
||||
if (!gDirUtilp->fileExists(gSavedPerAccountSettings.getString("InstantMessageLogPath")))
|
||||
{
|
||||
gDirUtilp->setChatLogsDir(gDirUtilp->getOSUserAppDir());
|
||||
gSavedPerAccountSettings.setString("InstantMessageLogPath", gDirUtilp->getChatLogsDir());
|
||||
}
|
||||
// </FS:KC>
|
||||
// <FS:CR> Seperate user directories per grid on OS build
|
||||
#ifdef OPENSIM
|
||||
gDirUtilp->setPerAccountChatLogsDir(userid, gridlabel);
|
||||
|
|
@ -2883,6 +2890,15 @@ bool idle_startup()
|
|||
|
||||
}
|
||||
// </FS:PP>
|
||||
|
||||
// <FS:KC> FIRE-18250: Option to disable default eye movement
|
||||
if (gSavedPerAccountSettings.getBOOL("FSStaticEyes"))
|
||||
{
|
||||
LLUUID anim_id(gSavedSettings.getString("FSStaticEyesUUID"));
|
||||
gAgentAvatarp->startMotion(anim_id);
|
||||
gAgent.sendAnimationRequest(anim_id, ANIM_REQUEST_START);
|
||||
}
|
||||
// </FS:KC>
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@
|
|||
<text name="note_lookat">
|
||||
(Einstellungen für Avatar-Kamerafokus befinden sich auf dem Reiter "Privatsphäre".)
|
||||
</text>
|
||||
<check_box label="Zufällige Augenbewegungen deaktivieren" name="FSStaticEyes"/>
|
||||
|
||||
<!-- LGG Color Beams -->
|
||||
<text name="BeamPrefs">
|
||||
|
|
|
|||
|
|
@ -547,6 +547,20 @@
|
|||
(Avatar look at target settings are on the Privacy tab.)
|
||||
</text>
|
||||
|
||||
<check_box
|
||||
top_pad="10"
|
||||
enabled="false"
|
||||
follows="left|top"
|
||||
height="16"
|
||||
label="Disable random avatar eye moments"
|
||||
left="15"
|
||||
name="FSStaticEyes"
|
||||
width="250"
|
||||
control_name="FSStaticEyes">
|
||||
<check_box.commit_callback
|
||||
function="Pref.StaticEyes" />
|
||||
</check_box>
|
||||
|
||||
<!-- LGG Color Beams -->
|
||||
<text
|
||||
name="BeamPrefs"
|
||||
|
|
@ -769,7 +783,7 @@
|
|||
<text
|
||||
type="string"
|
||||
left="5"
|
||||
top_pad="90"
|
||||
top_pad="65"
|
||||
length="1"
|
||||
follows="left|top"
|
||||
height="12"
|
||||
|
|
|
|||
|
|
@ -109,6 +109,9 @@
|
|||
<floater.string name="E_ST_BAD_ROOT">
|
||||
ルートジョイント名が不正です。「hip」を使用してください。
|
||||
</floater.string>
|
||||
<floater.string name="FS_report_frames">
|
||||
[F] フレーム [S] 秒 [FPS] FPS
|
||||
</floater.string>
|
||||
<text name="name_label">
|
||||
名前:
|
||||
</text>
|
||||
|
|
@ -117,8 +120,13 @@
|
|||
</text>
|
||||
<spinner label="優先度" name="priority" tool_tip="このアニメーションでどのアニメーションを上書きできるかを決めます"/>
|
||||
<check_box label="ループ" name="loop_check" tool_tip="このアニメーションをループ再生にします"/>
|
||||
<text name="frames_label">
|
||||
300 フレーム 30 秒 10 FPS
|
||||
</text>
|
||||
<spinner label="イン(%)" name="loop_in_point" tool_tip="アニメーションのループ復帰点を設定します"/>
|
||||
<spinner label="アウト(%)" name="loop_out_point" tool_tip="アニメーションのループ終了点を設定します"/>
|
||||
<spinner label="イン (frm)" name="loop_in_frames" tool_tip="アニメーションがループして戻る、開始フレームを設定します" />
|
||||
<spinner label="アウト (frm)" name="loop_out_frames" tool_tip="アニメーションのループが終了する、終点フレームを設定します" />
|
||||
<text name="hand_label">
|
||||
手のポーズ
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
<scroll_list name="animation_list">
|
||||
<scroll_list.column label="再生した人" name="played_by" />
|
||||
<scroll_list.column label="優先度" name="priority" />
|
||||
<scroll_list.column label="再生時間" name="played" />
|
||||
<scroll_list.column label="時刻" name="timestamp" />
|
||||
<scroll_list.column label="アニメーションID" name="animation_id" />
|
||||
|
|
|
|||
|
|
@ -65,6 +65,9 @@
|
|||
<check_box name="filter_temporary" label="臨時" />
|
||||
<check_box name="filter_attachment" label="アタッチメント" />
|
||||
<check_box name="filter_moap" label="共有メディア" />
|
||||
<check_box name="filter_perm_copy" label="コピー" />
|
||||
<check_box name="filter_perm_modify" label="修正" />
|
||||
<check_box name="filter_perm_transfer" label="再販・プレゼント" />
|
||||
<check_box name="filter_for_sale" label="次の価格帯で販売" />
|
||||
<spinner name="min_price" />
|
||||
<text name="and">
|
||||
|
|
@ -92,6 +95,7 @@
|
|||
〜
|
||||
</text>
|
||||
<spinner name="max_distance" />
|
||||
<check_box name="filter_agent_parcel_only" label="今いる区画のみ" />
|
||||
<text name="only_list">
|
||||
次の条件のオブジェクトを除外:
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -55,6 +55,10 @@
|
|||
<layout_panel name="send_sysinfo_btn_panel">
|
||||
<button tool_tip="システム情報を送ります。" name="send_sysinfo_btn" />
|
||||
</layout_panel>
|
||||
|
||||
<layout_panel name="lp_options_btn">
|
||||
<menu_button tool_tip="チャット・オプション" name="chat_options_btn" />
|
||||
</layout_panel>
|
||||
|
||||
<layout_panel name="support_panel" width="130">
|
||||
<icon name="dummy_icon_support_group" width="128"/>
|
||||
|
|
@ -82,6 +86,9 @@
|
|||
<layout_panel name="input_editor_layout_panel">
|
||||
<chat_editor name="chat_editor" />
|
||||
</layout_panel>
|
||||
<layout_panel name="input_button_layout_panel">
|
||||
<button name="send_chat" label="送信" tool_tip="IMを送信します" />
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@
|
|||
<name_list.columns name="name" label="名前" />
|
||||
<name_list.columns name="amount" label="金額" />
|
||||
</name_list>
|
||||
<text name="summary">
|
||||
支払い L$ [PAID] - 受け取り L$ [RECEIVED]
|
||||
</text>
|
||||
<check_box label="閉じている時も記録" name="FSAlwaysTrackPayments" tool_tip="入金記録のウィンドウが閉じている場合でも、常に入金を記録するようにします。" />
|
||||
<button name="Clear" label="クリア" />
|
||||
</floater>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,10 @@
|
|||
<layout_panel name="lp_chat_history_muted_btn">
|
||||
<button tool_tip="周辺チャット履歴に無視した会話を表示します。" name="chat_history_muted_btn" />
|
||||
</layout_panel>
|
||||
|
||||
<layout_panel name="lp_options_btn">
|
||||
<menu_button tool_tip="チャット・オプション" name="chat_options_btn"/>
|
||||
</layout_panel>
|
||||
|
||||
</layout_stack>
|
||||
|
||||
<layout_stack name="ls_chat">
|
||||
|
|
|
|||
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<floater name="floater_notifications_tabbed" title="通知">
|
||||
<floater.string name="system_tab_title">
|
||||
システム ([COUNT])
|
||||
</floater.string>
|
||||
<floater.string name="transactions_tab_title">
|
||||
取引 ([COUNT])
|
||||
</floater.string>
|
||||
<floater.string name="group_invitations_tab_title">
|
||||
招待 ([COUNT])
|
||||
</floater.string>
|
||||
<floater.string name="group_notices_tab_title">
|
||||
グループ ([COUNT])
|
||||
</floater.string>
|
||||
|
||||
<string name="title_notification_tabbed_window">
|
||||
通知
|
||||
</string>
|
||||
<layout_stack name="TabButtonsStack">
|
||||
<layout_panel name="TabButtonsLayoutPanel">
|
||||
<tab_container name="notifications_tab_container">
|
||||
<panel label="システム (0)" name="system_notification_list_tab">
|
||||
<notification_list_view name="system_notification_list" />
|
||||
</panel>
|
||||
<panel label="取引 (0)" name="transaction_notifications_tab">
|
||||
<notification_list_view name="transaction_notification_list" />
|
||||
</panel>
|
||||
<panel label="招待 (0)" name="group_invite_notifications_tab">
|
||||
<notification_list_view name="group_invite_notification_list" />
|
||||
</panel>
|
||||
<panel label="グループ (0)" name="group_notice_notifications_tab">
|
||||
<notification_list_view name="group_notice_notification_list" />
|
||||
</panel>
|
||||
</tab_container>
|
||||
<layout_stack name="ButtonsStack">
|
||||
<layout_panel name="CondenseAllButtonPanel" auto_resize="false">
|
||||
<button label="全てたたむ" name="collapse_all_button" />
|
||||
</layout_panel>
|
||||
<layout_panel name="GapLayoutPanel">
|
||||
<panel label="Gap Panel" name="GapPanel">
|
||||
</panel>
|
||||
</layout_panel>
|
||||
<layout_panel name="DeleteAllButtonPanel">
|
||||
<button label="全て削除" name="delete_all_button" />
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
</floater>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<floater name="modal container">
|
||||
<floater title="キー選択" name="modal container">
|
||||
<button label="キャンセル" label_selected="キャンセル" name="Cancel"/>
|
||||
<text name="Save item as:">
|
||||
キーを押してスピーカーボタンのトリガーを設定します。
|
||||
|
|
|
|||
|
|
@ -215,6 +215,8 @@
|
|||
<combo_box.item label="中身" name="Contents"/>
|
||||
<combo_box.item label="オリジナル" name="Original"/>
|
||||
</combo_box>
|
||||
<button label="適用" name="button mark for sale" tool_tip="販売対象のチェックに対する変更を有効にします" />
|
||||
<button label="キーをコピー" name="btnCopyKeys" tool_tip="選択されているオブジェクトのルートのキーをクリップボードにコピーします。シフトを押しながらクリックすると選択されている全てのオブジェクトのキーをコピーします。" />
|
||||
<check_box label="検索に表示" name="search_check" tool_tip="検索結果にこのオブジェクトを表示します"/>
|
||||
<panel name="perms_build">
|
||||
<text name="perm_modify">
|
||||
|
|
|
|||
|
|
@ -12,4 +12,7 @@
|
|||
<text name="tos_heading">
|
||||
次の利用規約とプライバシーポリシーをよくお読みください。 [CURRENT_GRID] へのログインを続けるには、規約に同意する必要があります。
|
||||
</text>
|
||||
<text name="external_tos_required">
|
||||
この先に進むには、my.secondlife.com にログインして利用規約(Terms of Service)に同意する必要があります。ご了承下さい。
|
||||
</text>
|
||||
</floater>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
<menu_item_call label="プロフィールの表示" name="view_profile" />
|
||||
<menu_item_call label="IM" name="im" />
|
||||
<menu_item_call label="テレポートを送る" name="offer_teleport" />
|
||||
<menu_item_call label="テレポートを要求" name="request_teleport">
|
||||
<menu_item_call label="コール" name="voice_call" />
|
||||
<menu_item_call label="チャット履歴..." name="chat_history" />
|
||||
<menu_item_call label="フレンド登録" name="add_friend" />
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<toggleable_menu name="Chat Options Menu">
|
||||
<menu_item_check label="レーダーを表示..." name="nearby_people" />
|
||||
<menu_item_check label="近くのボイスを表示..." name="nearby_voice" />
|
||||
<menu_item_check label="ブロックリストを表示..." name="block_list" />
|
||||
<menu_item_separator/>
|
||||
<menu_item_check label="V1 形式のチャットヘッダを使用" name="plain_text_chat_history" />
|
||||
<context_menu label="フォントサイズ..." name="font_size">
|
||||
<menu_item_check label="小" name="font_size_small" />
|
||||
<menu_item_check label="中" name="font_size_medium" />
|
||||
<menu_item_check label="大" name="font_size_large" />
|
||||
<menu_item_check label="特大" name="font_size_huge" />
|
||||
</context_menu>
|
||||
<menu_item_separator/>
|
||||
<menu_item_check label="相手が入力中であることを示す角かっこ(>)を追加" name="typing_chevron" />
|
||||
<menu_item_check label="新規メッセージ通知を表示" name="new_message_notification" />
|
||||
<menu_item_check label="チャットバーを表示" name="show_chat_bar" />
|
||||
<menu_item_check label="チャンネル選択を表示" name="show_channel_selection" />
|
||||
<menu_item_check label="チャットの入力/送信ボタンを表示" name="show_send_button" />
|
||||
<menu_item_check label="IMに送信ボタンを表示" name="show_im_send_button" />
|
||||
</toggleable_menu>
|
||||
|
|
@ -26,5 +26,9 @@
|
|||
<menu_item_separator/>
|
||||
<menu_item_check label="フルネームはユーザ名 (表示名)" name="format_username_displayname" />
|
||||
<menu_item_check label="フルネームは表示名 (ユーザ名)" name="format_displayname_username" />
|
||||
<menu_item_separator/>
|
||||
<menu_item_check label="検索フィルターを表示" name="friend_filter" />
|
||||
</menu>
|
||||
<menu_item_separator/>
|
||||
<menu_item_check label="フレンドのログイン状態" name="GlobalOnlineStatusToggle" />
|
||||
</context_menu>
|
||||
|
|
|
|||
|
|
@ -16,5 +16,9 @@
|
|||
<menu_item_separator/>
|
||||
<menu_item_check label="フルネームはユーザ名 (表示名)" name="format_username_displayname" />
|
||||
<menu_item_check label="フルネームは表示名 (ユーザ名)" name="format_displayname_username" />
|
||||
<menu_item_separator/>
|
||||
<menu_item_check label="検索フィルターを表示" name="friend_filter" />
|
||||
</menu>
|
||||
<menu_item_separator/>
|
||||
<menu_item_check label="フレンドのログイン状態" name="GlobalOnlineStatusToggle" />
|
||||
</context_menu>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<toggleable_menu name="menu_teleport">
|
||||
<menu_item_call label="テレポートを送る" name="offer_tp" />
|
||||
<menu_item_call label="テレポートを要求" name="request_tp" />
|
||||
</toggleable_menu>
|
||||
|
|
@ -2,14 +2,27 @@
|
|||
<context_menu name="Avatar Context Menu">
|
||||
<menu_item_call label="プロフィールの表示" name="View Profile" />
|
||||
<menu_item_call label="フレンド登録" name="Add Friend" />
|
||||
<menu_item_call label="連絡先セットに追加" name="Add to Set" />
|
||||
<menu_item_call label="フレンドを削除" name="Remove Friend" />
|
||||
<menu_item_call label="IM" name="IM" />
|
||||
<menu_item_call label="コール" name="Call" />
|
||||
<menu_item_call label="世界地図" name="Map" />
|
||||
<menu_item_call label="追跡する" name="Track" />
|
||||
<menu name="MarkAvatar" label="マーク...">
|
||||
<menu_item_call label="赤" name="MarkRed" />
|
||||
<menu_item_call label="緑" name="MarkGreen" />
|
||||
<menu_item_call label="青" name="MarkBlue" />
|
||||
<menu_item_call label="紫" name="MarkPurple" />
|
||||
<menu_item_call label="黄" name="MarkYellow" />
|
||||
<menu_item_separator/>
|
||||
<menu_item_call label="マークをクリア" name="Clear Mark" />
|
||||
<menu_item_separator/>
|
||||
<menu_item_call label="全てのマークをクリア" name="Clear Marks" />
|
||||
</menu>
|
||||
<menu_item_call label="共有" name="Share" />
|
||||
<menu_item_call label="支払う" name="Pay" />
|
||||
<menu_item_call label="テレポートを送る" name="teleport" />
|
||||
<menu_item_call label="テレポートを要求" name="request_teleport" />
|
||||
<menu_item_call label="テレポートする" name="teleport_to" />
|
||||
<menu_item_call label="ズームイン" name="zoom_in" />
|
||||
<menu_item_call label="グループに招待" name="GroupInvite" />
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@
|
|||
<menu_item_separator/>
|
||||
<menu_item_check label="テレポートのオファーや依頼を拒否する" name="Automatically reject teleport offers" />
|
||||
<menu_item_check label="グループ招待を全て拒否" name="Reject all group invites" />
|
||||
<menu_item_check label="フレンド申請を全て拒否" name="Reject all friendship requests" />
|
||||
</menu>
|
||||
<menu_item_call label="フレンド" name="My Friends"/>
|
||||
<menu_item_check label="連絡先" name="Contacts"/>
|
||||
|
|
@ -268,8 +269,10 @@
|
|||
<menu_item_check label="権限の詳細を表示する" name="DebugPermissions"/>
|
||||
<menu_item_check label="私のオブジェクトだけを選択する" name="Select Only My Objects"/>
|
||||
<menu_item_check label="動的オブジェクトだけを選択する" name="Select Only Movable Objects"/>
|
||||
<menu_item_check label="ロックされたオブジェクトだけを選択する" name="Select Only Locked Objects" />
|
||||
<menu_item_check label="コピー可のオブジェクトだけを選択する" name="Select Only Copyable Objects" />
|
||||
<menu_item_check label="範囲内を選択する" name="Select By Surrounding"/>
|
||||
<menu_item_check label="グループ所有のオブジェクトを含める" name="Include Group-Owned Objects" />
|
||||
<menu_item_check label="選択外形を表示" name="Show Selection Outlines"/>
|
||||
<menu_item_check label="隠れた位置の選択も表示する" name="Show Hidden Selection"/>
|
||||
<menu_item_check label="選択した光の半径範囲を表示する" name="Show Light Radius for Selection"/>
|
||||
|
|
@ -407,7 +410,6 @@
|
|||
<menu_item_check label="マウスの平滑化" name="Mouse Smoothing"/>
|
||||
<menu_item_call label="キーをリリース" name="Release Keys"/>
|
||||
<menu label="ショートカット" name="Shortcuts">
|
||||
<menu_item_call label="画像 ([COST] )..." name="Upload Image"/>
|
||||
<menu_item_check label="検索" name="Search"/>
|
||||
|
||||
<!-- This second, alternative shortcut for Show Advanced Menu is for backward compatibility. The main shortcut has been changed so it's Linux-friendly, where the old shortcut is typically eaten by the window manager. -->
|
||||
|
|
@ -575,6 +577,7 @@
|
|||
<menu_item_call label="メディアブラウザのテスト" name="Web Browser Test"/>
|
||||
<menu_item_check label="地域再起動のテスト..." name="Region Restart Test" />
|
||||
<menu_item_call label="Web コンテンツブラウザ" name="Web Content Browser"/>
|
||||
<menu_item_call label="FB 接続テスト" name="FB Connect Test" />
|
||||
<menu_item_call label="SelectMgr をダンプ" name="Dump SelectMgr"/>
|
||||
<menu_item_call label="持ち物の出力" name="Dump Inventory"/>
|
||||
<menu_item_call label="タイマーをダンプ" name="Dump Timers"/>
|
||||
|
|
|
|||
|
|
@ -340,6 +340,14 @@
|
|||
[COUNT] 名のメンバーをグループから追放しようとしています。
|
||||
<usetemplate ignoretext="グループからの複数のメンバーの追放を確認します" name="okcancelignore" notext="取り消し" yestext="追放"/>
|
||||
</notification>
|
||||
<notification name="BanGroupMemberWarning">
|
||||
[AVATAR_NAME] をグループ出入禁止にしようとしています。
|
||||
<usetemplate ignoretext="参加者をグループ出入り禁止にするか確認します" name="okcancelignore" notext="取り消し" yestext="出入禁止"/>
|
||||
</notification>
|
||||
<notification name="BanGroupMembersWarning">
|
||||
[COUNT] 名のメンバーをグループ出入禁止にしようとしています。
|
||||
<usetemplate ignoretext="複数のメンバーのグループ出入禁止を確認します" name="okcancelignore" notext="取り消し" yestext="出入禁止"/>
|
||||
</notification>
|
||||
<notification name="AttachmentDrop">
|
||||
アタッチメントを下に置こうとしています。
|
||||
続けますか?
|
||||
|
|
@ -501,6 +509,9 @@ L$ が不足しているのでこのグループに参加することができ
|
|||
<notification name="CannotWearInfoNotComplete">
|
||||
まだ読み込まれていないため、そのアイテムを装着できません。後でやり直してください。
|
||||
</notification>
|
||||
<notification name="MustEnterPasswordToLogIn">
|
||||
ログインするにはパスワードを入力して下さい。
|
||||
</notification>
|
||||
<notification name="MustHaveAccountToLogIn">
|
||||
注意:記入漏れの箇所があります。
|
||||
アバターのユーザー名を入力してください。
|
||||
|
|
@ -644,6 +655,10 @@ L$ が不足しているのでこのグループに参加することができ
|
|||
<notification name="CannotDownloadFile">
|
||||
ファイルをダウンロードできません。
|
||||
</notification>
|
||||
<notification name="MediaFileDownloadUnsupported">
|
||||
ファイルのダウンロードが要求されましたが、このファイルは [APP_NAME] で扱うことができません。
|
||||
<usetemplate ignoretext="未対応のファイルダウンロードに対する警告です" name="okignore" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="CannotWriteFile">
|
||||
ファイル [[FILE]] を書き込めません。
|
||||
</notification>
|
||||
|
|
@ -742,7 +757,7 @@ L$ が不足しているのでこのグループに参加することができ
|
|||
あなたの土地から [AVATAR_NAME] を追放しますか?
|
||||
<usetemplate canceltext="キャンセル" name="yesnocancelbuttons" notext="追放と禁止" yestext="追放"/>
|
||||
</notification>
|
||||
<notification name="EjectAvatarNoBan">
|
||||
<notification name="EjectAvatarNo">
|
||||
このアバターをあなたの土地から追放しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="キャンセル" yestext="追放"/>
|
||||
</notification>
|
||||
|
|
@ -1533,6 +1548,10 @@ SHA1 フィンガープリント: [MD5_DIGEST]
|
|||
操作を続行しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmTextureHeights">
|
||||
仰角範囲に対して、高い方の値よりも大きな数値を低い方の値に適用しようとしています。このまま進めてよろしいですか?
|
||||
<usetemplate name="yesnocancelbuttons" yestext="OK" notext="取り消し" canceltext="確認しない"/>
|
||||
</notification>
|
||||
<notification name="MaxAllowedAgentOnRegion">
|
||||
許可住人は [MAX_AGENTS] 人までです。
|
||||
</notification>
|
||||
|
|
@ -1695,6 +1714,28 @@ http://secondlife.com/download から最新バージョンをダウンロード
|
|||
[[INFO_URL] このアップデートに関する情報] を参照
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="UpdateDownloadInProgress">
|
||||
新しいアップデートがあります。
|
||||
現在バックグラウンドでダウンロード中で、準備が出来次第、インストールを完了させるためにビューワを再起動するようメッセージが表示されます。
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="UpdateDownloadComplete">
|
||||
新しいアップデートのダウンロードが完了しました。インストールするには再起動して下さい。
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="UpdateCheckError">
|
||||
アップデートの確認中にエラーが発生しました。
|
||||
後ほどやり直してみて下さい。
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="UpdateViewerUpToDate">
|
||||
ご利用のビューワは最新バージョンです!
|
||||
最新の機能や改修を今すぐ試してみたいという方は、代替ビューワのページをチェックしてみて下さい。 http://wiki.secondlife.com/wiki/Linden_Lab_Official:Alternate_Viewers.
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="DeedObjectToGroup">
|
||||
このオブジェクトを譲渡するとグループは以下のことが可能です:
|
||||
* オブジェクトに支払われた L$ を受領します。
|
||||
|
|
@ -1742,6 +1783,11 @@ http://secondlife.com/download から最新バージョンをダウンロード
|
|||
</notification>
|
||||
<notification name="GroupLeaveConfirmMember">
|
||||
現在、あなたは <nolink>[GROUP]</nolink> グループのメンバーです。
|
||||
グループから脱退しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="GroupLeaveConfirmMemberWithFee">
|
||||
現在、あなたは <nolink>[GROUP]</nolink> グループのメンバーです。再度入会する場合は L$[AMOUNT] の費用がかかります。
|
||||
グループから脱退しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
|
|
@ -1809,6 +1855,11 @@ http://secondlife.com/download から最新バージョンをダウンロード
|
|||
変更したい場合は「コミュニケーション」メニューの「ログイン状態」から行って下さい。
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="RejectFriendshipRequestsModeSet">
|
||||
全てのフレンド申請を拒否するモードが有効になっています。
|
||||
誰が発信するものでもフレンド申請は全て拒否され、あなたが設定した自動応答メッセージが送信されます。このため、申請があっても通知はされません。
|
||||
<usetemplate ignoretext="「フレンド申請をすべて拒否」モードにログイン状態を変更する" name="okignore" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="RejectAllGroupInvitesModeSet">
|
||||
「グループ招待をすべて拒否」モードになっています。
|
||||
誰が発信するものでも、グループ招待はすべて自動的に拒否されます。このため、招待があっても通知はされません。
|
||||
|
|
@ -2465,6 +2516,15 @@ Linden Lab
|
|||
ビューワのキャッシュをクリアしますか?
|
||||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearInventoryCache">
|
||||
本当にインベントリのキャッシュをクリアしてもよろしいですか?
|
||||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="ConfirmClearWebBrowserCache">
|
||||
本当にWebブラウザのキャッシュをクリアしてもよろしいですか?(再起動が必要)
|
||||
<usetemplate name="okcancelbuttons" notext="取り消し" yestext="OK"/>
|
||||
</notification>
|
||||
<notification name="ConfirmClearCookies">
|
||||
本当にクッキーをクリアしますか?
|
||||
<usetemplate name="okcancelbuttons" notext="キャンセル" yestext="はい"/>
|
||||
|
|
@ -3451,6 +3511,13 @@ M キーを押して変更します。
|
|||
<notification name="AttachmentSaved">
|
||||
アタッチメントが保存されました。
|
||||
</notification>
|
||||
<notification name="AppearanceToXMLSaved">
|
||||
容姿はXMLファイルとして [PATH] に保存されました
|
||||
</notification>
|
||||
|
||||
<notification name="AppearanceToXMLFailed">
|
||||
容姿のXMLファイルへの保存が失敗しました
|
||||
</notification>
|
||||
<notification name="UnableToFindHelpTopic">
|
||||
ヘルプトピックが見つかりませんでした。
|
||||
</notification>
|
||||
|
|
@ -4600,6 +4667,69 @@ M キーを押して変更します。
|
|||
「[SET]」を「[NEW_NAME]」に変更できませんでした。既に同じ名前が存在しているか、無効な名前を指定しようとしています。
|
||||
</notification>
|
||||
|
||||
<notification name="ShapeImportGenericFail">
|
||||
[FILENAME] のインポートで問題が発生しました。詳細はログで確認して下さい。
|
||||
</notification>
|
||||
<notification name="ShapeImportVersionFail">
|
||||
シェイプのインポートに失敗しました。[FILENAME] が本当にアバターのファイルか確認して下さい。
|
||||
</notification>
|
||||
|
||||
<notification name="AddToMediaList">
|
||||
[LIST] に追加するドメインネームを入力して下さい
|
||||
<form name="form">
|
||||
<button name="Add" text="追加"/>
|
||||
<button name="Cancel" text="取り消し"/>
|
||||
</form>
|
||||
</notification>
|
||||
|
||||
<!-- <FS:Zi> Do not allow "Restore To Last Position" for no-copy items -->
|
||||
<notification name="CantRestoreToWorldNoCopy">
|
||||
最後の場所にリストアの機能はコピー不可アイテムには使用できません。コンテンツが失われるのを防ぐためです。
|
||||
</notification>
|
||||
<!-- <FS:Zi> Do not allow "Restore To Last Position" for no-copy items -->
|
||||
|
||||
<notification name="ConfirmRemoveCredential">
|
||||
保存された <nolink>[NAME]</nolink> のログインを削除しますか?
|
||||
<form name="form">
|
||||
<button name="OK" text="OK"/>
|
||||
<button name="Cancel" text="取り消し"/>
|
||||
</form>
|
||||
</notification>
|
||||
|
||||
<!-- <FS:TS> FIRE-5453: Flickr upload support (from Exodus) -->
|
||||
<notification name="ExodusFlickrVerificationExplanation">
|
||||
Flickr アップロードの機能を使用するには、 [APP_NAME] があなたのFlickrアカウントにアクセスするのを許可しなければなりません。このまま先に進むと、WebブラウザーがFlickrのWebサイトを開き、ログインして [APP_NAME] を許可するよう促されます。次に表示されたコードをコピーして [APP_NAME] に貼り付けます。
|
||||
|
||||
あなたのFlickrアカウントに投稿するのに [APP_NAME] を許可しますか?
|
||||
<usetemplate name="okcancelbuttons" notext="いいえ" yestext="はい"/>
|
||||
</notification>
|
||||
|
||||
<notification name="ExodusFlickrVerificationPrompt">
|
||||
WebブラウザーであなたのFlickrアカウントに投稿する許可を [APP_NAME] に与えて下さい。次にWebサイトで表示されたコードを以下に入力して下さい。
|
||||
<form name="form">
|
||||
<button name="OK" text="OK"/>
|
||||
<button name="Cancel" text="取り消し"/>
|
||||
</form>
|
||||
</notification>
|
||||
|
||||
<notification name="ExodusFlickrVerificationFailed">
|
||||
Flickrの認証に失敗しました。もう一度試してみて下さい。その際、認証コードに誤りがないか、よく確認して下さい。
|
||||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="ExodusFlickrUploadComplete">
|
||||
あなたのスナップショットは次のURLでみることができるようになりました。 [http://www.flickr.com/photos/upload/edit/?ids=[ID] here]
|
||||
</notification>
|
||||
<!-- </FS:TS> FIRE-5453 -->
|
||||
|
||||
<notification name="RegionTrackerAdd">
|
||||
次の地域にどのようなラベルをつけますか?
|
||||
"[REGION]"
|
||||
<form name="form">
|
||||
<button name="OK" text="OK"/>
|
||||
<button name="Cancel" text="取り消し"/>
|
||||
</form>
|
||||
</notification>
|
||||
<notification name="SnoozeDuration">
|
||||
<unique/>
|
||||
グループチャットを居眠りさせておく時間(秒)
|
||||
|
|
@ -4627,4 +4757,8 @@ M キーを押して変更します。
|
|||
<usetemplate name="okbutton" yestext="OK"/>
|
||||
</notification>
|
||||
|
||||
<notification name="GlobalOnlineStatusToggle">
|
||||
サーバ負荷のため、多数のオンラインステータス切替が有効になるまでにはしばらく時間がかかります。このままお待ち下さい。
|
||||
<usetemplate ignoretext="オンラインステータスの切り替えに時間がかかる時は通知する" name="okignore" yestext="OK"/>
|
||||
</notification>
|
||||
</notifications>
|
||||
|
|
|
|||
|
|
@ -2,12 +2,13 @@
|
|||
<panel name="friends">
|
||||
<layout_stack name="ls_friend_list">
|
||||
<layout_panel name="lp_search">
|
||||
<filter_editor label="Filter Friends" name="friend_filter_input"/>
|
||||
<filter_editor label="フレンドをフィルター" name="friend_filter_input"/>
|
||||
</layout_panel>
|
||||
<layout_panel name="lp_friend_list">
|
||||
<fs_scroll_list name="friend_list">
|
||||
<fs_scroll_list.column name="icon_online_status" tool_tip="オンライン・ステータス" />
|
||||
<fs_scroll_list.column label="ユーザー名" name="user_name" tool_tip="この連絡先のユーザー名です。" />
|
||||
<fs_scroll_list.column label="表示名" name="display_name" tool_tip="この連絡先の表示名です。" />
|
||||
<fs_scroll_list.column label="名前" name="full_name" tool_tip="この連絡先が選択した名前の表示です。" />
|
||||
<fs_scroll_list.column name="icon_visible_online" tool_tip="フレンドは、あなたがオンラインかどうか確認することができます。" />
|
||||
<fs_scroll_list.column name="icon_visible_map" tool_tip="フレンドは、地図であなたの居場所を見つけることができます。" />
|
||||
|
|
|
|||
|
|
@ -0,0 +1,114 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<!-- All our XML is utf-8 encoded. -->
|
||||
<panel name="main_panel" title="panel_notification_list_item">
|
||||
<!-- background_opaque="false" -->
|
||||
<!-- background_visible="true"> -->
|
||||
<!-- bg_alpha_color="PanelNotificationListItem"> -->
|
||||
<panel.string name="sender_resident_text">
|
||||
送信者; "[SENDER_RESIDENT]"
|
||||
</panel.string>
|
||||
<panel.string name="group_name_text">
|
||||
グループ: "[GROUP_NAME]"
|
||||
</panel.string>
|
||||
<panel.string name="group_fee_text">
|
||||
費用: [GROUP_FEE]
|
||||
</panel.string>
|
||||
<panel.string name="item_condensed_height">
|
||||
50
|
||||
</panel.string>
|
||||
<panel.string name="item_expanded_height">
|
||||
87
|
||||
</panel.string>
|
||||
<panel.string name="expanded_height_resize_for_attachment">
|
||||
27
|
||||
</panel.string>
|
||||
|
||||
<panel name="panel_total_view">
|
||||
<layout_stack name="item_vertical_stack">
|
||||
<layout_panel name="layout_panel_condensed_view">
|
||||
<panel name="panel_condensed_view">
|
||||
<layout_stack name="horizontal_stack">
|
||||
<layout_panel name="layout_panel_right">
|
||||
<group_icon name="group_icon" tool_tip="グループ" />
|
||||
<avatar_icon name="avatar_icon" tool_tip="アバター" />
|
||||
<icon name="system_notification_icon" tool_tip="アイコン" />
|
||||
</layout_panel>
|
||||
<layout_panel name="layout_panel_middle">
|
||||
<panel name="main_info_panel">
|
||||
<panel name="notification_title_panel">
|
||||
<text name="notification_title" >
|
||||
Group Name:Notice Title N o t i c e T i t l e N o t i c e T i t l e N o t i c e T i t l e N oticeTitle
|
||||
</text>
|
||||
<icon name="attachment_icon" tool_tip="添付" />
|
||||
</panel>
|
||||
<panel name="sender_time_panel">
|
||||
<text name="sender_or_fee_box">
|
||||
Sender: "Resident R e s i d e n t R e s i d e n t"
|
||||
</text>
|
||||
<text name="notification_time" />
|
||||
</panel>
|
||||
</panel>
|
||||
</layout_panel>
|
||||
<layout_panel name="layout_panel_right">
|
||||
<panel name="close_expand_panel">
|
||||
<button name="close_btn" />
|
||||
<button name="expand_btn" />
|
||||
</panel>
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
</panel>
|
||||
</layout_panel>
|
||||
<layout_panel name="layout_panel_expanded_view">
|
||||
<panel name="panel_expanded_view">
|
||||
<layout_stack name="horizontal_stack">
|
||||
<layout_panel name="layout_panel_right_exp">
|
||||
<group_icon name="group_icon_exp" tool_tip="グループ" />
|
||||
<avatar_icon name="avatar_icon_exp" tool_tip="アバター" />
|
||||
<icon name="system_notification_icon_exp" tool_tip="アイコン" />
|
||||
<icon name="attachment_icon_exp" tool_tip="添付" />
|
||||
</layout_panel>
|
||||
<layout_panel name="layout_panel_middle_exp">
|
||||
<panel name="main_info_panel_expanded">
|
||||
<panel name="notification_title_panel_exp" >
|
||||
<text name="notification_title_exp">
|
||||
Notice Title Notice Title N o t i c e T i t l e N o t i c e T i t l e
|
||||
</text>
|
||||
<text name="group_name_exp">
|
||||
Group Name Group Name Group Na m e e
|
||||
</text>
|
||||
</panel>
|
||||
<panel name="sender_time_panel_exp">
|
||||
<text name="sender_or_fee_box_exp">
|
||||
Sender: "Resident R e s i d e n t R e s i d e n t"
|
||||
</text>
|
||||
<text name="notification_time_exp"value="2014/12/24 23:30" />
|
||||
</panel>
|
||||
<panel name="notification_text_panel_exp">
|
||||
<chat_editor name="notification_text_exp">
|
||||
Notice text goes here b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla. bla bla bla bla bla bla bla bla bla bla bla bla bla .
|
||||
</chat_editor>
|
||||
</panel>
|
||||
<panel name="attachment_panel">
|
||||
<text name="attachment_text">
|
||||
Attachment goes here b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a b l a bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla. bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla .
|
||||
</text>
|
||||
</panel>
|
||||
<panel name="button_panel">
|
||||
<button name="join_btn" label = "参加"/>
|
||||
<button name="decline_btn" label = "拒否"/>
|
||||
<button name="info_btn" label = "情報"/>
|
||||
</panel>
|
||||
</panel>
|
||||
</layout_panel>
|
||||
<layout_panel name="layout_panel_left_exp">
|
||||
<panel name="close_expand_panel_exp">
|
||||
<button name="close_expanded_btn" />
|
||||
<button name="condense_btn" />
|
||||
</panel>
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
</panel>
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
</panel>
|
||||
</panel>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<panel label="もの" name="Outfits">
|
||||
<panel.string name="wear_outfit_tooltip">
|
||||
選択したアウトフィットを着用する
|
||||
|
|
@ -6,6 +6,9 @@
|
|||
<panel.string name="wear_items_tooltip">
|
||||
選択したアイテムを着用
|
||||
</panel.string>
|
||||
<panel.string name="cof_tab_label">
|
||||
装着中 ([COUNT]/[MAX])
|
||||
</panel.string>
|
||||
<tab_container name="appearance_tabs">
|
||||
<panel label="マイ アウトフィット" name="outfitslist_tab"/>
|
||||
<panel label="着用中" name="cof_tab"/>
|
||||
|
|
|
|||
|
|
@ -20,14 +20,27 @@
|
|||
-->
|
||||
<string name="no_filtered_groups_msg" value="お探しのものは見つかりましたか? [secondlife:///app/search/groups/[SEARCH_TERM] 検索] をお試しください。"/>
|
||||
<string name="no_groups_msg" value="グループをお探しですか? [secondlife:///app/search/groups 検索] をお試しください。"/>
|
||||
<string name="MiniMapToolTipMsg" value="[地域](ダブルクリックで地図を開く。Shift‐ドラッグで水平・垂直移動)"/>
|
||||
<string name="AltMiniMapToolTipMsg" value="[地域](ダブルクリックでテレポート。Shift‐ドラッグで水平・垂直移動)"/>
|
||||
<string name="AllFriendsTitle">
|
||||
全員([ALL])
|
||||
</string>
|
||||
<string name="OnlineFriendsTitle">
|
||||
<string name="MiniMapToolTipMsg" value="[地域](ダブルクリックで地図を開く。Shift‐ドラッグで水平・垂直移動)"/>
|
||||
<string name="AltMiniMapToolTipMsg" value="[地域](ダブルクリックでテレポート。Shift‐ドラッグで水平・垂直移動)"/>
|
||||
<string name="GroupCountWithInfo" value="あなたは[COUNT]グループに属しているので、まだ[REMAINING]参加できます。 [secondlife:/// もっと必要ですか?]"/>
|
||||
<panel.string name="empty_list">
|
||||
連絡先セットに何も登録がありません。
|
||||
</panel.string>
|
||||
<panel.string name="no_sets">
|
||||
セット未登録
|
||||
</panel.string>
|
||||
<panel.string name="all_sets">
|
||||
全てのセット
|
||||
</panel.string>
|
||||
<panel.string name="pseudonyms">
|
||||
ニックネーム
|
||||
</panel.string>
|
||||
<panel.string name="AllFriendsTitle">
|
||||
全員 ([ALL])
|
||||
</panel.string>
|
||||
<panel.string name="OnlineFriendsTitle">
|
||||
オンライン([ONLINE])
|
||||
</string>
|
||||
</panel.string>
|
||||
|
||||
<tab_container name="tabs">
|
||||
|
||||
|
|
@ -63,7 +76,7 @@
|
|||
<button name="gear_btn" tool_tip="選択した人に対するアクションです。" />
|
||||
<menu_button name="friends_view_btn" tool_tip="表示/並べ替えのオプションです。" />
|
||||
<button name="friends_add_btn" tool_tip="住人にフレンド登録を申し出ます。" />
|
||||
<button name="GlobalOnlineStatusToggle" tool_tip="オンラインステータスを表示させるかを切り替えます。" />
|
||||
<button name="GlobalOnlineStatusToggle" tool_tip="ログイン状態がわかるようにするかを切り替えます。" />
|
||||
<dnd_button name="friends_del_btn" tool_tip="選択した人をフレンドリストから削除します。" />
|
||||
</panel>
|
||||
<tab_container name="friends_accordion">
|
||||
|
|
|
|||
|
|
@ -32,9 +32,10 @@
|
|||
<text name="ObjectInspectorTooltipDelay_text">
|
||||
秒
|
||||
</text>
|
||||
|
||||
<check_box name="FSAdvancedTooltips" label="ヒントに詳細情報を表示(Phoenixスタイル)" />
|
||||
<check_box name="FSShowGroupTitleInTooltip" label="ヒントにアバターのグループタイトルを表示" />
|
||||
<check_box name="FSShowGroupTitleInTooltip" label="ヒントにアバターのグループタイトルを表示" />
|
||||
<slider label="フローティングテキストのフェード開始距離 (m):" tool_tip="フローティングテキストが薄く消え始める距離をメートル単位で設定します" name="FSHudTextFadeDistance" />
|
||||
<slider label="フローティングテキストのフェード範囲 (m):" tool_tip="フローティングテキストがはっきりと見える状態から完全に見えなくなるまでの距離をメートル単位で設定します" name="FSHudTextFadeRange" />
|
||||
|
||||
</panel>
|
||||
|
||||
|
|
@ -68,6 +69,7 @@
|
|||
<combo_box.item label="右下" name="ScriptDialogPositionOption_5"/>
|
||||
</combo_box>
|
||||
<check_box label="スクリプトダイアログのアニメーションを再生" name="FSAnimatedScriptDialogs" tool_tip="ここにチェックを入れると、スクリプトダイアログが開く時にアニメーションが再生されます。(旧式の1系スタイル)ダイアログが上から下に開く時のみ有効になります。" />
|
||||
<slider label="スクリプトダイアログ当たりの表示行数:" name="FSRowsPerScriptDialog" tool_tip="同時に見ることのできるスクリプトダイアログの最大行数" />
|
||||
|
||||
<check_box label="パイメニューを使用" name="UsePieMenu" tool_tip="土地や中バー、オブジェクト、装着物を右クリックした時に、諜報兼のコンテキストメニューでなく、1系の丸いメニューを使用します。" />
|
||||
<check_box label="グループ通知や支払い通知を右上に表示" name="ShowGroupNoticesTopRight" tool_tip="ここにチェックを入れると、グループ通知や支払い通知などを画面の右上に表示します。(旧式の1系スタイル)" />
|
||||
|
|
@ -75,6 +77,10 @@
|
|||
(再起動が必要)
|
||||
</text>
|
||||
<check_box label="グループチャットとIMのミニアイコンを表示しない" name="FSDisableIMChiclets" tool_tip="チェックを入れるとファイアーストームは全てのグループチャットやIMのミニアイコンを表示しないようになります。(通知の封筒アイコンとIM数の合計は画面上に残ります。" />
|
||||
<check_box label="通知ウィンドウに旧式のリスト表示レイアウトを使用" name="FSLegacyNotificationWell" tool_tip="ここにチェックを入れるとFirestormは保存された通知の表示に旧式のリスト表示形式を使用するようになります" />
|
||||
<text name="FSLegacyNotificationWellRequiresRestart">
|
||||
(再起動が必要)
|
||||
</text>
|
||||
<slider label="ボタンの点滅回数:" tool_tip="何回ボタンを点滅させるかを設定します。" name="ButtonsFlashCount" />
|
||||
<slider label="IMタブの点滅周期:" tool_tip="IMタブが1回点滅する時間を秒で設定します。IM通知に使用します。" name="ButtonFlashRate" />
|
||||
<text name="ButtonFlashRateText">
|
||||
|
|
@ -151,6 +157,8 @@
|
|||
<radio_item label="表示名 (ユーザ名)" name="displayname_username"/>
|
||||
</radio_group>
|
||||
<check_box label="権限を表示" name="FSFriendListColumnShowPermissions" tool_tip="連絡先リストにあなたがこのアバターに与えた、またはこのアバターから与えられた権限を表示します。" />
|
||||
<check_box label="検索フィルターを表示" name="FSContactListShowSearch" tool_tip="連絡先リストに検索テキストボックスを表示し、リストをフィルターすることができるようになります">
|
||||
</check_box>
|
||||
<text name="textInventoryOptions">
|
||||
インベントリ(持ち物)のオプション:
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -4,9 +4,6 @@
|
|||
<text name="backup_path_label">
|
||||
バックアップパス:
|
||||
</text>
|
||||
|
||||
<line_editor name="settings_backup_path" />
|
||||
|
||||
<button label="設定" name="set_backup_settings_path" />
|
||||
|
||||
<layout_stack name="ls_account_specific_label">
|
||||
|
|
@ -34,34 +31,22 @@
|
|||
<column label="グローバルファイル:" name="restore_global_files_label" />
|
||||
<column label="Value" name="value" width="-1" />
|
||||
<row name="restore_global_row_login">
|
||||
<column type="checkbox" name="restore_global_files_check"/>
|
||||
<column name="restore_global_files_label">ログイン情報</column>
|
||||
<column name="value">bin_conf.dat</column>
|
||||
</row>
|
||||
<row name="restore_global_row_colors">
|
||||
<column type="checkbox" name="restore_global_files_check"/>
|
||||
<column name="restore_global_files_label">色</column>
|
||||
<column name="value">colors.xml</column>
|
||||
</row>
|
||||
<row name="restore_global_row_dialogs">
|
||||
<column type="checkbox" name="restore_global_files_check"/>
|
||||
<column name="restore_global_files_label">無視するダイアログ</column>
|
||||
<column name="value">ignorable_dialogs.xml</column>
|
||||
</row>
|
||||
<row name="restore_global_row_grids">
|
||||
<column type="checkbox" name="restore_global_files_check"/>
|
||||
<column name="restore_global_files_label">ユーザー指定のグリッド</column>
|
||||
<column name="value">grids.user.xml</column>
|
||||
</row>
|
||||
<row name="restore_global_row_autoreplace">
|
||||
<column type="checkbox" name="restore_global_files_check"/>
|
||||
<column name="restore_global_files_label">自動置換</column>
|
||||
<column name="value">autoreplace.xml</column>
|
||||
</row>
|
||||
<row name="restore_global_row_quickprefs">
|
||||
<column type="checkbox" name="restore_global_files_check"/>
|
||||
<column name="restore_global_files_label">クイック設定</column>
|
||||
<column name="value">quick_preferences.xml</column>
|
||||
</row>
|
||||
</scroll_list>
|
||||
|
||||
|
|
@ -74,49 +59,36 @@
|
|||
<column label="アカウント固有ファイル:" name="restore_per_account_files_label" />
|
||||
<column label="Value" name="value" width="-1" />
|
||||
<row name="restore_per_account_row_blacklist">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">無視リスト</column>
|
||||
<column name="value">asset_blacklist.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_contactsets">
|
||||
<column type="checkbox" name="restore_per_account_files_check" />
|
||||
<column name="restore_per_account_files_label">連絡先セット</column>
|
||||
<column name="value">settings_friends_groups.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_invfilters">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">インベントリフィルター</column>
|
||||
<column name="value">filters.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_favsort">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">お気に入りの並び順</column>
|
||||
<column name="value">landmarks_sorting.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_medialists">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">メディアのブラック/ホワイトリスト</column>
|
||||
<column name="value">medialist.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_toolbars">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">ツールバー</column>
|
||||
<column name="value">toolbars.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_volumes">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">ボイスチャットの音量</column>
|
||||
<column name="value">volume_settings.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_tphistory">
|
||||
<column type="checkbox" name="restore_per_account_files_check"/>
|
||||
<column name="restore_per_account_files_label">テレポート履歴</column>
|
||||
<column name="value">teleport_history.xml</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_regiontracker">
|
||||
<column name="restore_per_account_files_label">地域別アバター数</column>
|
||||
</row>
|
||||
<row name="restore_per_account_row_groupmutes">
|
||||
<column name="restore_per_account_files_label">抑止したグループチャット</column>
|
||||
</row>
|
||||
</scroll_list>
|
||||
|
||||
<panel name="restore_per_account_disable_cover" />
|
||||
|
||||
</layout_panel>
|
||||
|
||||
<layout_panel name="lp_restore_folders">
|
||||
|
|
@ -126,40 +98,26 @@
|
|||
<column label="フォルダ:" name="restore_global_folders_label" />
|
||||
<column label="Value" name="value" width="-1" />
|
||||
<row name="restore_folders_row_beams">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<column name="restore_global_folders_label">選択ビーム</column>
|
||||
<column name="value">beams</column>
|
||||
</row>
|
||||
<row name="restore_folders_row_beamcolors">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<column name="restore_global_folders_label">選択ビームの色</column>
|
||||
<column name="value">beamsColors</column>
|
||||
</row>
|
||||
<row name="restore_folders_row_spellcheck">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<column name="restore_global_folders_label">スペルチェック</column>
|
||||
<column name="value">dictionaries</column>
|
||||
</row>
|
||||
|
||||
<row enabled="false" name="restore_folders_row_windlight">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<row name="restore_folders_row_windlight">
|
||||
<column name="restore_global_folders_label">WindLight (必須)</column>
|
||||
<column name="value">windlight</column>
|
||||
</row>
|
||||
<row name="restore_folders_row_daycycles">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<column name="restore_global_folders_label">WindLightのデイサイクル</column>
|
||||
<column name="value">windlight/days</column>
|
||||
</row>
|
||||
<row name="restore_folders_row_skies">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<column name="restore_global_folders_label">WindLightの空</column>
|
||||
<column name="value">windlight/skies</column>
|
||||
</row>
|
||||
<row name="restore_folders_row_waters">
|
||||
<column type="checkbox" name="restore_global_folders_check"/>
|
||||
<column name="restore_global_folders_label">WindLightの水</column>
|
||||
<column name="value">windlight/water</column>
|
||||
</row>
|
||||
</scroll_list>
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
<check_box label="llOwnerSay をスクリプトのデバッグウィンドウに送る" name="FSllOwnerSayToScriptDebugWindow_checkbox" />
|
||||
<check_box label="吹き出しチャット" name="bubble_text_chat"/>
|
||||
<check_box label="入力中に吹き出しを表示する" name="bubble_text_typing"/>
|
||||
<check_box label="アバター頭上の名前タグに入力中の印を表示" name="FSShowTypingStateInNameTag" />
|
||||
<check_box name="FSSecondsinChatTimestamps" label="タイムスタンプに秒を表示 [HH:MM:SS]" />
|
||||
<text name="show_timestamps_label">
|
||||
タイムスタンプの表示:
|
||||
|
|
@ -145,12 +146,14 @@
|
|||
<button name="spellcheck_showgui" label="スペルチェック..." />
|
||||
<button name="translation_settings_btn" label="翻訳..." />
|
||||
<check_box label="チャット中にタイピング動作のアニメーションを再生" name="play_typing_animation"/>
|
||||
<check_box label="感情表現を使用している場合もタイピング動作のアニメーションを再生" name="play_typing_animation_emote" />
|
||||
<check_box label="人が会話している時にタイピング音が聞こえるようにする" name="play_typing_sound"/>
|
||||
<check_box label="IM中に入力中であることを相手に通知する" name="FSSendTypingState"/>
|
||||
<check_box name="FSChatbarGestureAutoCompleteEnable" label="チャットバーでジェスチャーのオートコンプリートを使う" />
|
||||
<check_box name="FSChatbarNamePrediction" label="周辺チャットで周りにいる人の名前にオートコンプリートを使う" />
|
||||
<check_box label="":"を"/me"の代わりに使う" name="AllowMUpose"/>
|
||||
<check_box label="((OOC))のかっこを自動的に閉じる" name="AutoCloseOOC"/>
|
||||
<check_box name="FSShowIMSendButton" label="IMのチャットバーに「送信」ボタンを表示する"/>
|
||||
<check_box label="周辺チャットウインドウにチャットバーを表示する" name="FSNearbyChatbar"/>
|
||||
<check_box label="チャットバーにチャンネル選択を表示" name="FSShowChatChannel"/>
|
||||
<check_box name="FSShowChatType" label="チャットバーにチャットの種類と送信ボタンを表示"/>
|
||||
|
|
@ -187,7 +190,8 @@
|
|||
<check_box name="FSLogIMInChatHistory" label="IMをチャットログに保存"/>
|
||||
<text name="FSIMChatHistoryFade_label">
|
||||
チャット履歴ウィンドウでIMを薄く表示
|
||||
</text>
|
||||
</text>
|
||||
<check_box name="FSShowMessageCountInWindowTitle" label="未読IMの数をFirestormのウィンドウタイトルに表示" />
|
||||
<check_box label="相手が入力を始めたら、IMが来ることを事前に通知" name="FSAnnounceIncomingIM"/>
|
||||
<check_box name="FSIMChatFlashOnFriendStatusChange" label="フレンドのオンラインステータスが変わったらIMタブを点滅"/>
|
||||
<check_box name="FSNotifyNearbyChatFlash" label="新しい周辺チャットを受信したらチャットツールバーのボタンを点滅" tool_tip="新しい周辺チャットを受信したらチャットツールバーのボタンが点滅します。この時、周辺チャットは会話ウィンドウにドッキングしている必要があり、また、ボタンを点滅させるには会話ウィンドウが閉じている必要があります。"/>
|
||||
|
|
@ -287,6 +291,7 @@
|
|||
<check_box label="キーワード通知を有効にする" name="FSKeywordOn"/>
|
||||
<check_box label="周辺チャットでキーワードを強調" name="FSKeywordInChat"/>
|
||||
<check_box label="IMとグループチャットでキーワードを強調" name="FSKeywordInIM"/>
|
||||
<check_box name="FSKeywordSpeakersName" label="送信者の名前にキーワードが含まれているかチェックする"/>
|
||||
<check_box name="FSKeywordCaseSensitive" label="全てのキーワードで大文字と小文字を区別する"/>
|
||||
<check_box name="FSKeywordMatchWholeWords" label="全てのキーワードが一致した時のみ"/>
|
||||
<text name="textFSKeywords">
|
||||
|
|
|
|||
|
|
@ -281,6 +281,10 @@
|
|||
<text name="RotationStepText2">
|
||||
度の倍数に回転できる範囲を制限
|
||||
</text>
|
||||
<check_box label="リンク解除の際に警告メッセージを出すリンクセットのオブジェクト数:" name="FSUnlinkConfirmEnabled"/>
|
||||
<text name="MinObjectsForUnlinkConfirmText2" >
|
||||
個以上
|
||||
</text>
|
||||
<check_box label="旧式の「売り出し中」の動作を使用" tool_tip="ここにチェックを入れると、「販売対象」のチェックを入れた瞬間にデフォルトのL$10の価格が適用されます。標準では、「販売対象」にチェックを入れた後、価格を修正して「適用」ボタンを押した時に反映されるようになっています。" name="FSCommitForSaleOnChange_toggle"/>
|
||||
<check_box label="持ち物内で編集したスクリプトはMonoとして保存" tool_tip="ここにチェックを入れると、持ち物内で直接編集したスクリプトをLSL2でなく、Monoの形式で保存します。" name="FSSaveInventoryScriptsAsMono_toggle"/>
|
||||
<check_box label="インベントリからディスクにテクスチャを保存する時、デフォルトでTGAでなくPNGで保存するようにする" tool_tip="テクスチャのプレビューウィンドウまたはインベントリのコンテキストメニューで使用する設定です。" name="FSTextureDefaultSaveAsFormat"/>
|
||||
|
|
|
|||
|
|
@ -67,6 +67,8 @@
|
|||
<check_box label="ビューワの UI ヒントを有効にする" name="viewer_hints_check"/>
|
||||
-->
|
||||
|
||||
<check_box label="名前タグに自動応答モードを表示" name="FSShowAutorespondInNameTag" tool_tip="ここにチェックを入れると、自分の名前タグに自動応答モードをオンにしているかどうかが表示されます。" />
|
||||
|
||||
<text name="title_afk_text">
|
||||
一時退席までの時間:
|
||||
</text>
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@
|
|||
<check_box label="マウスルック機能を有効にする" name="EnableMouselook" tool_tip="一人称視点を可能にし、マウスでカメラをコントロールできるようにします。" />
|
||||
<check_box label="一人称視点で表示する" name="first_person_avatar_visible"/>
|
||||
<check_box label="マウスルックにユーザーインターフェイスを表示" name="first_person_ui_visible" />
|
||||
<check_box label="マウスルックにした時に会話とレーダーのウィンドウが閉じないようにする" name="FSShowConvoAndRadarInML" />
|
||||
<check_box label="マウスルックでコンテキストメニューを有効にする" name="FSEnableRightclickMenuInMouselook" tool_tip="ALT-右クリックでパイメニュー/コンテキストメニューを開けるようにします。" />
|
||||
<check_box label="マウスのホイールでマウスルックから抜ける" name="FSScrollWheelExitsMouselook" tool_tip="チェックを入れると、マウスのホイールを回転させることでマウスルックから抜けることができるようになります" />
|
||||
<check_box label="マウスルックのガイドを表示" name="mouselook_instructions_visible" />
|
||||
|
|
@ -101,6 +102,7 @@
|
|||
<check_box label="テレポートキャンセルボタンを常に表示" name="FSAlwaysShowTPCancel" tool_tip="シミュレータからキャンセルできない通知がある場合でも、常にテレポートキャンセルのボタンを表示します。結局のところ、シミュレータは例えばゴッド・テレポートのような強制テレポートの要求があった場合、それがキャンセルできるかどうかをわかっていて、できない場合はキャンセル指示を無視します。この設定はRLVaでは無効です(つまり、RLVの制約により、この機能は停止されています)。"/>
|
||||
<check_box label="テレポートビーコンオフ" name="tp_beam_toggle" tool_tip="テレポートが完了したら、目的地点に表示されるビーコンが消えるようにします。"/>
|
||||
<check_box label="テレポート画面オフ" name="tp_screen_toggle" tool_tip="テレポートしている間表示される黒いテレポート画面を表示しないようにします。"/>
|
||||
<check_box label="テレポートした時に世界地図を閉じない" name="FSDoNotHideMapOnTeleport" tool_tip="テレポートした時に世界地図が自動的に閉じる機能をオフにします。"/>
|
||||
</panel>
|
||||
|
||||
<!-- Map & Minimap -->
|
||||
|
|
|
|||
|
|
@ -78,6 +78,7 @@
|
|||
自分の視線
|
||||
</text>
|
||||
<check_box label="自分の視線を表示しない" name="LookAtHideOwn" tool_tip="カメラの焦点を表す十字を表示しない" />
|
||||
<check_box label="焦点までの視線を表示する" name="ExodusLookAtLines" tool_tip="アバターから十字で示されるその人のカメラの焦点までの視線を表示します。" />
|
||||
<check_box label="自分のカメラの焦点がどこにあるか他人には知らせない" name="privatelookat" tool_tip="他人があなたのカメラの焦点がどこにあるか知るのを防ぎます。" />
|
||||
<check_box label="自分の画面上でもカメラの焦点がどこにあるかわからないようにする" name="privateLocalLookat" tool_tip="通常、カメラの焦点が当たっている方向にアバターの頭が向くように自分の画面では表示されています。この頭の動きは、このオプションのオン/オフに関わりなく、必ずしも他人に見えるものではありません。" />
|
||||
<check_box label="自分が選択しているものを他人には知らせない" name="privatepointat" tool_tip="他人があなたが選択しているものが何かを知るのを防ぎます。" />
|
||||
|
|
@ -113,9 +114,13 @@
|
|||
<text name="autorespond_rto_response_label">
|
||||
テレポート拒否モードの時に行う全てのアバターへの自動応答メッセージ:
|
||||
</text>
|
||||
<check_box label="フレンドリストに載っている人からのテレポートは拒否しない(返事もする)" name="FSDontRejectTeleportOffersFromFriends" />
|
||||
<text name="autorespond_rfr_response_label">
|
||||
フレンド申請拒否モードの時に行う全てのアバターへの自動応答メッセージ:
|
||||
</text>
|
||||
|
||||
<text name="autoresponse_item_label">
|
||||
自動応答アイテム:
|
||||
自動応答と一緒に送られるアイテム:
|
||||
</text>
|
||||
<fs_copytrans_inventory_drop_target name="autoresponse_item"
|
||||
tool_tip="持ち物をここにドラッグ&ドロップします。" />
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
|
||||
<panel label="ディレクトリ" name="tab-dir">
|
||||
<text name="cache_size_label_l">
|
||||
キャッシュサイズ ([http://wiki.phoenixviewer.com/cache need a suggestion?]):
|
||||
キャッシュサイズ ([http://wiki.phoenixviewer.com/cache 推奨設定を確認しますか?]):
|
||||
</text>
|
||||
<text name="text_box5">
|
||||
MB
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
<button label="開く" name="open_log_path_button-panelsetup"/>
|
||||
<button label="設定" name="log_path_button-panelsetup"/>
|
||||
<button label="初期化" name="reset_logpath"/>
|
||||
<button label="クラッシュログを開く" name="browse_crashlogs"/>
|
||||
<button label="ビューワログを開く" name="browse_crashlogs"/>
|
||||
<button label="設定フォルダを開く" name="browse_settingsdir"/>
|
||||
</panel>
|
||||
</tab_container>
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
</text>
|
||||
|
||||
<check_box label="ツールバーの配置をスキンの初期設定に戻す" name="reset_toolbar_settings" />
|
||||
<check_box label="ログインモード変更時にログインモードに最適化された設定にツールバーをリセット" tool_tip="ここにチェックを入れると、ログインモードを変更した時に、それぞれのモードに最適化されたツールバーボタンのレイアウトが選択され、あなたがカスタマイズしたボタンの設定は全て上書きされます" name="FSToolbarsResetOnModeChange" />
|
||||
|
||||
<check_box label="V1スタイルのカーソルを使用" name="use_legacy_cursors"/>
|
||||
<text name="theme_textbox3">
|
||||
|
|
|
|||
|
|
@ -105,6 +105,7 @@
|
|||
<check_box label="ボイスのオン・オフ切り替えに使用するトリガーキー:" name="push_to_talk_toggle_check" tool_tip="トグルモードの時にトリガーキーを一回押すごとにマイクのオン・オフ設定が切り替えられます。トグルモードではないときは、トリガーキーを押した状態の時のみあなたの声が相手に聞こえます。"/>
|
||||
<line_editor label="プッシュ・トゥ・スピークのトリガー" name="modifier_combo"/>
|
||||
<button label="キー設定" name="set_voice_hotkey_button"/>
|
||||
<button tool_tip="キー設定の内容をクリアします" name="clear_voice_hotkey_button" />
|
||||
<button name="set_voice_middlemouse_button" tool_tip="マウスの中央ボタンにリセット"/>
|
||||
<button label="入力・出力機器" name="device_settings_btn"/>
|
||||
<panel label="機器の設定" name="device_settings_panel">
|
||||
|
|
|
|||
|
|
@ -21,11 +21,11 @@
|
|||
<combo_box.item label="材質" name="Materials"/>
|
||||
<combo_box.item label="メディア" name="Media"/>
|
||||
</combo_box>
|
||||
<combo_box name="combobox mattype">
|
||||
<combo_box.item label="テクスチャ (拡散)" name="Texture (diffuse)"/>
|
||||
<combo_box.item label="凹凸 (標準)" name="Bumpiness (normal)"/>
|
||||
<combo_box.item label="輝き (反射)" name="Shininess (specular)"/>
|
||||
</combo_box>
|
||||
<radio_group name="radio_material_type">
|
||||
<radio_item label="テクスチャ (拡散)" name="Texture (diffuse)" />
|
||||
<radio_item label="凹凸 (標準)" name="Bumpiness (normal)" />
|
||||
<radio_item label="輝き (反射)" name="Shininess (specular)" />
|
||||
</radio_group>
|
||||
<texture_picker label="テクスチャ" name="texture control" tool_tip="クリックして写真を選択します"/>
|
||||
<text name="label alphamode">
|
||||
アルファモード
|
||||
|
|
|
|||
|
|
@ -38,7 +38,6 @@
|
|||
<action description="常に「地形を編集」を許可" longdescription="この能力を持つ役割のメンバーは、グループ所有の区画上で地形を編集することができます。その区画が「土地情報」>「オプション」タブでオフになっていても、地形の編集が可能です。" name="land allow edit land" value="23"/>
|
||||
<action description="常に「飛行」を許可" longdescription="この能力を持つ役割のメンバーは、グループ所有の区画上を飛行することができます。その区画が「土地情報」>「オプション」タブでオフになっていても、飛行が可能です。" name="land allow fly" value="24"/>
|
||||
<action description="常に「オブジェクト作成」を許可" longdescription="この能力を持つ役割のメンバーは、グループ所有の区画上にオブジェクトを作成することができます。その区画が「土地情報」>「オプション」タブでオフになっていても、オブジェクトの作成が可能です。" name="land allow create" value="25"/>
|
||||
<action description="常に「ランドマークを作成」を許可" longdescription="この能力を持つ役割のメンバーは、グループ所有の区画上にランドマークを作成することができます。その区画が「土地情報」>「オプション」タブでオフになっていても、ランドマークの作成が可能です。" name="land allow landmark" value="26"/>
|
||||
<action description="グループの土地への「ホーム設定」を許可" longdescription="この「役割」を持つメンバーは、このグループに譲渡された区画上で「世界」メニュー > ランドマーク > 現在地をホームに設定 を使用して、ホームの設定を行うことができます。" name="land allow set home" value="28"/>
|
||||
<action description="グループ所有地での「イベント主催」を許可" longdescription="この「能力」を持つ「役割」のメンバーは、グループ所有区画を利用してイベントを開催することができます。" name="land allow host event" value="41"/>
|
||||
</action_set>
|
||||
|
|
|
|||
|
|
@ -508,6 +508,9 @@ support@secondlife.com にお問い合わせください。
|
|||
クリックして secondlife:// コマンドを出します
|
||||
</string>
|
||||
<string name="CurrentURL" value=" 現在の URL: [CurrentURL]"/>
|
||||
<string name="TooltipEmail">
|
||||
クリックしてメールを作成します
|
||||
</string>
|
||||
<string name="SLurlLabelTeleport">
|
||||
テレポート
|
||||
</string>
|
||||
|
|
@ -718,6 +721,12 @@ support@secondlife.com にお問い合わせください。
|
|||
<string name="AvatarMuted">
|
||||
ブロック中
|
||||
</string>
|
||||
<string name="AvatarAutoResponse">
|
||||
自動応答中
|
||||
</string>
|
||||
<string name="AvatarTyping">
|
||||
入力中
|
||||
</string>
|
||||
<string name="anim_express_afraid">
|
||||
怖れ
|
||||
</string>
|
||||
|
|
@ -4237,6 +4246,11 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<string name="OfflineStatus">
|
||||
オフライン
|
||||
</string>
|
||||
<string name="not_online_msg">
|
||||
相手ユーザーはオンラインではありません。メッセージは保存され、後ほど配達されます。
|
||||
</string>
|
||||
<string name="not_online_inventory">
|
||||
相手ユーザーはオンラインではありません。インベントリは保存されました。</string>
|
||||
<string name="answered_call">
|
||||
相手がコールを受けました
|
||||
</string>
|
||||
|
|
@ -5261,7 +5275,11 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<!-- Added Jun.30, 2013 -->
|
||||
|
||||
<string name="Command_Conversation_Log_Label">会話ログ</string>
|
||||
<string name="Command_Move_Lock_Label">ムーブメントロック</string>
|
||||
<string name="Command_Blocklist_Label">ブロックリスト</string>
|
||||
<string name="Command_ResyncAnimations_Label">アニメーションの再同期</string>
|
||||
<string name="Command_RegionTracker_Label">地域別アバター数</string>
|
||||
<string name="Command_Group_Titles_Label">グループ肩書き</string>
|
||||
|
||||
<string name="Command_AboutLand_Tooltip">
|
||||
訪問先に関する情報
|
||||
|
|
@ -5420,7 +5438,21 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<string name="Command_Conversation_Log_Tooltip">
|
||||
会話ログを開いて過去に交わしたチャットをテキストで確認します。
|
||||
</string>
|
||||
<string name="Command_RegionTracker_Tooltip">複数の地域のステータス(アバター数)を確認します</string>
|
||||
<string name="Command_Move_Lock_Tooltip">
|
||||
アバターを今いる場所に固定します (CTRL+ALT+P)
|
||||
</string>
|
||||
<string name="Command_Blocklist_Tooltip">
|
||||
ブロック/無視リストを開きます
|
||||
</string>
|
||||
<string name="Command_ResyncAnimations_Tooltip">
|
||||
アバターのアニメーションを再同期します
|
||||
</string>
|
||||
<string name="Command_RegionTracker_Tooltip">
|
||||
複数の地域のステータス(アバター数)を確認します
|
||||
</string>
|
||||
<string name="Command_Group_Titles_Tooltip">
|
||||
アクティブなグループタグを変更します
|
||||
</string>
|
||||
|
||||
<string name="Toolbar_Bottom_Tooltip">
|
||||
現在、下のツールバーにあります
|
||||
|
|
@ -5544,6 +5576,17 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<string name="loading_chat_logs">
|
||||
ロード中...
|
||||
</string>
|
||||
<string name="Mav_Details_MAV_FOUND_DEGENERATE_TRIANGLES">
|
||||
この物理シェイプに含まれる三角形は小さすぎます。物理モデルを簡略化して下さい。
|
||||
</string>
|
||||
|
||||
<string name="Mav_Details_MAV_CONFIRMATION_DATA_MISMATCH">
|
||||
この物理シェイプにはよくない確認データが含まれています。物理モデルを修正して下さい。
|
||||
</string>
|
||||
|
||||
<string name="Mav_Details_MAV_UNKNOWN_VERSION">
|
||||
この物理シェイプは正しいバージョンではありません。物理モデルに正しいバージョンを設定して下さい。
|
||||
</string>
|
||||
<string name="experience_tools_experience">
|
||||
体験
|
||||
</string>
|
||||
|
|
@ -5761,6 +5804,7 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<!-- Animation Explorer -->
|
||||
<string name="animation_explorer_seconds_ago">[SECONDS] 秒前</string>
|
||||
<string name="animation_explorer_still_playing">実行中のアニメーション:</string>
|
||||
<string name="animation_explorer_unknown_priority">不明</string>
|
||||
|
||||
<string name="FriendOnlineNotification">はオンラインです。</string>
|
||||
<string name="FriendOfflineNotification">はオフラインです。</string>
|
||||
|
|
@ -5788,4 +5832,10 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
|
|||
<string name="Reqsysinfo_Chat_Information_sent">情報が送信されました。:[DATA]</string>
|
||||
<string name="Reqsysinfo_Chat_Request_Denied">要求は拒否されました。</string>
|
||||
<string name="Reqsysinfo_Reason">理由:[REASON]</string>
|
||||
<string name="All Items">すべて</string>
|
||||
<string name="Recent Items">最新</string>
|
||||
<string name="Worn Items">装着中</string>
|
||||
|
||||
<string name="InvOfferGroupNoticeName">グループメンバー [NAME]</string>
|
||||
<string name="CallingCardOnlineLabelSuffix">(オンライン)</string>
|
||||
</strings>
|
||||
|
|
|
|||
|
|
@ -1,19 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel name="friends">
|
||||
<panel.string name="FontName" value="SANSSERIF"/>
|
||||
<view_border name="info_border" />
|
||||
<fs_scroll_list name="friend_list">
|
||||
<fs_scroll_list.column name="icon_online_status" tool_tip="オンライン・ステータス" />
|
||||
<fs_scroll_list.column label="ユーザー名" name="user_name" tool_tip="この連絡先のユーザー名です。"/>
|
||||
<fs_scroll_list.column label="表示名" name="display_name" tool_tip="この連絡先の表示名です。"/>
|
||||
<fs_scroll_list.column label="名前" name="full_name" tool_tip="この連絡先が選択した名前の表示です。" />
|
||||
<fs_scroll_list.column name="icon_visible_online" tool_tip="フレンドは、あなたがオンラインかどうか確認することができます。" />
|
||||
<fs_scroll_list.column name="icon_visible_map" tool_tip="フレンドは、地図であなたの居場所を見つけることができます。" />
|
||||
<fs_scroll_list.column name="icon_edit_mine" tool_tip="フレンドは、オブジェクトを編集、削除、または取得することができます。" />
|
||||
<fs_scroll_list.column name="icon_visible_map_theirs" tool_tip="あなたは、地図でフレンドの居場所を見つけることができます。" />
|
||||
<fs_scroll_list.column name="icon_edit_theirs" tool_tip="あなたは、このフレンドのオブジェクトを編集することができます。" />
|
||||
<fs_scroll_list.column name="friend_last_update_generation" />
|
||||
</fs_scroll_list>
|
||||
<layout_stack name="ls_friend_list">
|
||||
<layout_panel name="lp_search">
|
||||
<filter_editor label="フレンドをフィルター" name="friend_filter_input" />
|
||||
</layout_panel>
|
||||
<layout_panel name="lp_friend_list">
|
||||
<view_border name="info_border" />
|
||||
<fs_scroll_list name="friend_list">
|
||||
<fs_scroll_list.column name="icon_online_status" tool_tip="オンライン・ステータス" />
|
||||
<fs_scroll_list.column label="ユーザー名" name="user_name" tool_tip="この連絡先のユーザー名です。"/>
|
||||
<fs_scroll_list.column label="表示名" name="display_name" tool_tip="この連絡先の表示名です。"/>
|
||||
<fs_scroll_list.column label="名前" name="full_name" tool_tip="この連絡先が選択した名前の表示です。" />
|
||||
<fs_scroll_list.column name="icon_visible_online" tool_tip="フレンドは、あなたがオンラインかどうか確認することができます。" />
|
||||
<fs_scroll_list.column name="icon_visible_map" tool_tip="フレンドは、地図であなたの居場所を見つけることができます。" />
|
||||
<fs_scroll_list.column name="icon_edit_mine" tool_tip="フレンドは、オブジェクトを編集、削除、または取得することができます。" />
|
||||
<fs_scroll_list.column name="icon_visible_map_theirs" tool_tip="あなたは、地図でフレンドの居場所を見つけることができます。" />
|
||||
<fs_scroll_list.column name="icon_edit_theirs" tool_tip="あなたは、このフレンドのオブジェクトを編集することができます。" />
|
||||
<fs_scroll_list.column name="friend_last_update_generation" />
|
||||
</fs_scroll_list>
|
||||
</layout_panel>
|
||||
</layout_stack>
|
||||
<button label="IM/コール" name="im_btn" tool_tip="インスタントメッセージ・セッションを開く" />
|
||||
<button label="プロフィール" name="profile_btn" tool_tip="写真、グループ、およびその他の情報を表示します。" />
|
||||
<button label="テレポート..." name="offer_teleport_btn" tool_tip="このフレンドに、あなたの現在のロケーションまでのテレポートを送ります。" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue