Ansariel 2025-10-29 18:40:12 +01:00
commit 3620dfdd35
36 changed files with 167 additions and 74 deletions

View File

@ -660,7 +660,7 @@ bool LLAudioEngine::preloadSound(const LLUUID &uuid)
LL_DEBUGS("AudioEngine")<<"( "<<uuid<<" )"<<LL_ENDL;
// <FS:ND> Protect against corrupted sounds. Just do a quick exit instead of trying to preload over and over again.
if( gAudiop->isCorruptSound( uuid ) )
if (gAudiop && gAudiop->isCorruptSound(uuid))
return false;
// </FS:ND>
@ -1317,7 +1317,7 @@ std::map<LLUUID, LLSoundHistoryItem> gSoundHistory;
void LLAudioSource::logSoundPlay(const LLUUID& id, LLVector3d position, S32 type, const LLUUID& assetid, const LLUUID& ownerid, const LLUUID& sourceid, bool is_trigger, bool is_looped)
{
// <FS:ND> Corrupt asset, do not bother
if( gAudiop->isCorruptSound( assetid ) )
if (gAudiop && gAudiop->isCorruptSound(assetid))
return;
// </FS:ND>

View File

@ -1073,7 +1073,13 @@ bool LLInventoryItem::fromLLSD(const LLSD& sd, bool is_new)
// TODO - figure out if this should be moved into the noclobber fields above
mThumbnailUUID.setNull();
mFavorite = false;
mPermissions.init(LLUUID::null, LLUUID::null, LLUUID::null, LLUUID::null);
// <FS:TJ> [FIRE-36028] Fix OpenSim object permissions
//mPermissions.init(LLUUID::null, LLUUID::null, LLUUID::null, LLUUID::null);
if (!LLPermissions::getIsInOpenSim())
{
mPermissions.init(LLUUID::null, LLUUID::null, LLUUID::null, LLUUID::null);
}
// </FS:TJ>
// iterate as map to avoid making unnecessary temp copies of everything
LLSD::map_const_iterator i, end;

View File

@ -39,6 +39,8 @@
const LLPermissions LLPermissions::DEFAULT;
bool LLPermissions::sIsInOpenSim = false; // <FS:TJ/> [FIRE-36028] Fix OpenSim object permissions
// No creator = created by system
LLPermissions::LLPermissions()
{

View File

@ -103,6 +103,8 @@ private:
// values.
bool mIsGroupOwned;
static bool sIsInOpenSim; // <FS:TJ/> [FIRE-36028] Fix OpenSim object permissions
// Correct for fair use - you can never take away the right to
// move stuff you own, and you can never take away the right to
// transfer something you cannot otherwise copy.
@ -288,6 +290,11 @@ public:
inline bool allowOpenSimExportBy(const LLUUID& agent_id) const; // <FS:CR> OpenSim export permission
#endif
// <FS:TJ> [FIRE-36028] Fix OpenSim object permissions
static bool getIsInOpenSim() { return sIsInOpenSim; }
static void setupIsInOpenSim(bool is_in_open_sim) { sIsInOpenSim = is_in_open_sim; }
// </FS:TJ>
//
// MISC METHODS and OPERATORS
//

View File

@ -39,6 +39,13 @@ bool LLChatMentionHelper::isActive(const LLUICtrl* ctrl) const
bool LLChatMentionHelper::isCursorInNameMention(const LLWString& wtext, S32 cursor_pos, S32* mention_start_pos) const
{
// <FS:PP> Enable auto-completion of @ mentions
static LLUICachedControl<bool> useMentionAutoComplete("FSUseChatMentionAutoComplete", true);
if (!useMentionAutoComplete)
{
return false;
}
// </FS:PP>
if (cursor_pos <= 0 || cursor_pos > static_cast<S32>(wtext.size()))
return false;

View File

@ -58,7 +58,7 @@ bool LLEmojiHelper::isActive(const LLUICtrl* ctrl_p) const
bool LLEmojiHelper::isCursorInEmojiCode(const LLWString& wtext, S32 cursorPos, S32* pShortCodePos)
{
// <FS:PP> FIRE-33735: Option to suppress emoji chooser window from automatically popping up while typing in chat bars
static LLUICachedControl<bool> FSEnableEmojiWindowPopupWhileTyping("FSEnableEmojiWindowPopupWhileTyping");
static LLUICachedControl<bool> FSEnableEmojiWindowPopupWhileTyping("FSEnableEmojiWindowPopupWhileTyping", true);
if (!FSEnableEmojiWindowPopupWhileTyping)
{
return false;

View File

@ -353,6 +353,7 @@ void LLWebRTCImpl::init()
//updateDevices();
}
});
}
void LLWebRTCImpl::terminate()

View File

@ -758,7 +758,7 @@
<key>version</key>
<map>
<key>value</key>
<integer>5</integer>
<integer>6</integer>
</map>
</map>
</llsd>

View File

@ -26480,6 +26480,17 @@ Change of this parameter will affect the layout of buttons in notification toast
<key>Value</key>
<integer>1</integer>
</map>
<key>FSUseChatMentionAutoComplete</key>
<map>
<key>Comment</key>
<string>Enable auto-completion when typing @ mentions in chat.</string>
<key>Persist</key>
<integer>1</integer>
<key>Type</key>
<string>Boolean</string>
<key>Value</key>
<integer>1</integer>
</map>
<key>FSUseBWEmojis</key>
<map>
<key>Comment</key>

View File

@ -462,28 +462,32 @@ void FSFloaterPoser::createUserPoseDirectoryIfNeeded()
gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, POSE_SAVE_SUBDIRECTORY);
std::string userHandPresetsPath = userPath + gDirUtilp->getDirDelimiter() + std::string(POSE_PRESETS_HANDS_SUBDIRECTORY);
if (gDirUtilp->fileExists(userHandPresetsPath))
return;
try
{
if (!gDirUtilp->fileExists(userPath))
{
LL_WARNS("Poser") << "Couldn't find folder: " << userPath << " - creating one." << LL_ENDL;
LLFile::mkdir(userPath);
}
if (!gDirUtilp->fileExists(userHandPresetsPath))
{
LL_WARNS("Poser") << "Couldn't find folder: " << userHandPresetsPath << " - creating one." << LL_ENDL;
LLFile::mkdir(userHandPresetsPath);
if (!gDirUtilp->fileExists(userPath))
{
LL_WARNS("Poser") << "Couldn't find folder: " << userPath << " - creating one." << LL_ENDL;
LLFile::mkdir(userPath);
}
if (!gDirUtilp->fileExists(userHandPresetsPath))
{
LL_WARNS("Poser") << "Couldn't find folder: " << userHandPresetsPath << " - creating one." << LL_ENDL;
LLFile::mkdir(userHandPresetsPath);
}
}
std::string sourcePresetPath =
gDirUtilp->getExpandedFilename(LL_PATH_EXECUTABLE, POSE_SAVE_SUBDIRECTORY, std::string(POSE_PRESETS_HANDS_SUBDIRECTORY));
gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, POSE_SAVE_SUBDIRECTORY, std::string(POSE_PRESETS_HANDS_SUBDIRECTORY));
if (!gDirUtilp->fileExists(sourcePresetPath))
{
LL_WARNS("Poser") << "Can not copy poser presets because failed to find path: " << sourcePresetPath << LL_ENDL;
return;
}
auto posesToCopy = gDirUtilp->getFilesInDir(sourcePresetPath);
for (const auto& pose : posesToCopy)
@ -491,13 +495,24 @@ void FSFloaterPoser::createUserPoseDirectoryIfNeeded()
std::string source = sourcePresetPath + gDirUtilp->getDirDelimiter() + pose;
std::string destination = userHandPresetsPath + gDirUtilp->getDirDelimiter() + pose;
S32 sourceVersion = tryGetPoseVersion(source);
S32 destinationVersion = tryGetPoseVersion(destination);
if (destinationVersion >= sourceVersion)
continue;
if (gDirUtilp->fileExists(destination))
{
LL_WARNS("Poser") << "Removing pose file " << destination << " to replace with updated version " << LL_ENDL;
LLFile::remove(destination);
}
if (!LLFile::copy(source, destination))
LL_WARNS("Poser") << "Failed to copy " << source << " to " << destination << LL_ENDL;
}
}
catch (const std::exception& e)
{
LL_WARNS("Posing") << "Exception caught trying to create: " << userPath << e.what() << LL_ENDL;
LL_WARNS("Posing") << "Exception caught trying to create/update poses: " << e.what() << LL_ENDL;
}
}
@ -947,6 +962,51 @@ void FSFloaterPoser::onClickLoadRightHandPose()
onClickLoadHandPose(true);
}
S32 FSFloaterPoser::tryGetPoseVersion(std::string pathToPoseFile)
{
S32 version = -1;
if (pathToPoseFile.empty())
return version;
if (!gDirUtilp->fileExists(pathToPoseFile))
return version;
try
{
LLSD pose;
llifstream infile;
infile.open(pathToPoseFile);
if (!infile.is_open())
return version;
while (!infile.eof())
{
S32 lineCount = LLSDSerialize::fromXML(pose, infile);
if (lineCount == LLSDParser::PARSE_FAILURE)
{
LL_WARNS("Posing") << "Failed to parse pose file: " << pathToPoseFile << LL_ENDL;
return version;
}
for (LLSD::map_const_iterator itr = pose.beginMap(); itr != pose.endMap(); ++itr)
{
std::string const& name = itr->first;
LLSD const& control_map = itr->second;
if (name == "version")
return (S32)control_map["value"].asInteger();
}
}
}
catch (const std::exception& e)
{
LL_WARNS("Posing") << "Threw an exception trying read the pose file: " << pathToPoseFile << " exception: " << e.what() << LL_ENDL;
}
return version;
}
void FSFloaterPoser::onClickLoadHandPose(bool isRightHand)
{
LLScrollListItem* item = mHandPresetsScrollList->getFirstSelected();

View File

@ -231,6 +231,7 @@ public:
void onPoseMenuAction(const LLSD& param);
bool loadPoseFromXml(LLVOAvatar* avatar, const std::string& poseFileName, E_LoadPoseMethods loadMethod);
bool poseFileStartsFromTeePose(const std::string& poseFileName);
S32 tryGetPoseVersion(std::string pathToPoseFile);
void setPoseSaveFileTextBoxToUiSelectedAvatarSaveFileName();
void setUiSelectedAvatarSaveFileName(const std::string& saveFileName);
void timedReload();

View File

@ -931,7 +931,9 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id,
if (!isItemMovable() || !canMenuCut())
{
disabled_items.push_back(std::string("Cut"));
disabled_items.push_back(std::string("New folder from selected"));
// <FS:TJ> [FIRE-35996] Restore allowing creating folder from selected on recent and favorites panels
//disabled_items.push_back(std::string("New folder from selected"));
// </FS:TJ>
}
}
else
@ -984,7 +986,9 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id,
if (!isItemMovable() || !canMenuCut())
{
disabled_items.push_back(std::string("Cut"));
disabled_items.push_back(std::string("New folder from selected"));
// <FS:TJ> [FIRE-35996] Restore allowing creating folder from selected on recent and favorites panels
//disabled_items.push_back(std::string("New folder from selected"));
// </FS:TJ>
}
if (canListOnMarketplace() && !isMarketplaceListingsFolder() && !isInboxFolder())

View File

@ -4928,6 +4928,10 @@ bool process_login_success_response(U32 &first_sim_size_x, U32 &first_sim_size_y
// <FS:TJ> [FIRE-34775] Use PST/PDT when logged into OpenSim
LLStringOps::setupUsingPacificTime(!LLGridManager::getInstance()->isInSecondLife());
// </FS:TJ>
// <FS:TJ> [FIRE-36028] Fix OpenSim object permissions
LLPermissions::setupIsInOpenSim(!LLGridManager::getInstance()->isInSecondLife());
// </FS:TJ>
}
// set up the voice configuration. Ultimately, we should pass this up as part of each voice

View File

@ -4897,7 +4897,7 @@ void process_preload_sound(LLMessageSystem *msg, void **user_data)
msg->getUUIDFast(_PREHASH_DataBlock, _PREHASH_OwnerID, owner_id);
// <FS:ND> Protect against corrupted sounds
if (gAudiop->isCorruptSound(sound_id))
if (gAudiop && gAudiop->isCorruptSound(sound_id))
return;
// </FS:ND>
@ -4952,7 +4952,7 @@ void process_attached_sound(LLMessageSystem *msg, void **user_data)
msg->getUUIDFast(_PREHASH_DataBlock, _PREHASH_OwnerID, owner_id);
// <FS:ND> Protect against corrupted sounds
if (gAudiop->isCorruptSound(sound_id))
if (gAudiop && gAudiop->isCorruptSound(sound_id))
return;
// </FS:ND>

View File

@ -281,6 +281,7 @@ void LLWebRTCVoiceClient::initWebRTC()
llwebrtc::init(this);
mWebRTCDeviceInterface = llwebrtc::getDeviceInterface();
mWebRTCDeviceInterface->unsetDevicesObserver(this); // <FS:Ansariel> initWebRTC() can get multiple times - make sure to unset previous observers before re-adding
mWebRTCDeviceInterface->setDevicesObserver(this);
mMainQueue = LL::WorkQueue::getInstance("mainloop");
refreshDeviceLists();

View File

@ -148,7 +148,8 @@
<check_box label="Automatische Namensvorhersage in „Chat in der Nähe“-Eingabezeile aktivieren" name="FSChatbarNamePrediction"/>
<check_box name="AllowMUpose" label="„:“ als Synonym für &quot;/me&quot; verwenden"/>
<check_box name="AutoCloseOOC" label="((OOC))-Klammern automatisch schließen"/>
<check_box name="FSEnableEmojiWindowPopupWhileTyping" label="Automatisches Emoji-Auswahlfenster beim Chateingabe aktivieren"/>
<check_box name="FSUseChatMentionAutoComplete" label="Automatische @-Erwähnungen bei Chateingabe aktivieren"/>
<check_box name="FSEnableEmojiWindowPopupWhileTyping" label="Automatisches Emoji-Auswahlfenster bei Chateingabe aktivieren"/>
<check_box name="FSShowEmojiButton" label="Emoji-Button in Eingabezeile für Lokaler Chat IM-Sitzungen anzeigen"/>
<check_box name="FSShowIMSendButton" label="Senden-Button in Eingabezeile für IM-Sitzungen anzeigen"/>
<check_box name="FSNearbyChatbar" label="Eingabezeile zum Fenster Lokaler Chat hinzufügen"/>

View File

@ -916,6 +916,14 @@
top_pad="1"
height="16"
width="400" />
<check_box
layout="topleft"
top_pad="1"
height="16"
width="400"
control_name="FSUseChatMentionAutoComplete"
name="FSUseChatMentionAutoComplete"
label="Enable automatic @ mentions window while typing in chat bars"/>
<check_box
layout="topleft"
top_pad="1"

View File

@ -46,7 +46,7 @@
</layout_panel>
<layout_panel name="layout_panel_msg">
<text name="currency_links">
[https://accounts.secondlife.com/billing_information/ 支払い情報][https://www.secondlife.com/my/lindex/buy.php L$の購入]
[https://accounts.secondlife.com/billing_information/?lang=ja-JP 支払い情報][https://www.secondlife.com/my/lindex/buy.php?lang=ja-JP L$の購入]
</text>
<text name="exchange_rate_note">
金額を再入力して、最新の為替レートを確認してください。

View File

@ -17,7 +17,7 @@
<menu_item_call label="ズームイン" name="zoom_in"/>
<menu_item_call label="マップ" name="map"/>
<menu_item_call label="共有" name="share"/>
<menu_item_call label="支払" name="pay"/>
<menu_item_call label="支払" name="pay"/>
<menu_item_call label="嫌がらせの報告" name="report_abuse"/>
<menu_item_check label="ボイスをブロック" name="block_unblock"/>
<menu_item_check label="テキストをブロックする" name="MuteText"/>

View File

@ -12,6 +12,6 @@
<menu_item_call label="グループに招待…." name="Invite"/>
<menu_item_call label="マップ" name="Map"/>
<menu_item_call label="共有" name="Share"/>
<menu_item_call label="支払" name="Pay"/>
<menu_item_call label="支払" name="Pay"/>
<menu_item_check label="ブロック/ブロック解除" name="Block/Unblock"/>
</toggleable_menu>

View File

@ -9,7 +9,7 @@
<menu_item_call label="ズームイン" name="zoom_in"/>
<menu_item_call label="マップ" name="map"/>
<menu_item_call label="共有" name="Share"/>
<menu_item_call label="支払" name="Pay"/>
<menu_item_call label="支払" name="Pay"/>
<menu_item_call label="嫌がらせの報告" name="Report Abuse"/>
<menu_item_check label="ボイスのブロック/解除" name="Block/Unblock"/>
<menu_item_check label="テキストをブロックする" name="MuteText"/>

View File

@ -11,7 +11,7 @@
<menu_item_call label="権限" name="agent_permissions"/>
<menu_item_call label="マップ" name="map"/>
<menu_item_call label="共有" name="share"/>
<menu_item_call label="支払" name="pay"/>
<menu_item_call label="支払" name="pay"/>
<menu_item_check label="ブロック/解除" name="block_unblock"/>
<menu_item_call label="表示名をコピー" name="copy_display_name"/>
<menu_item_call label="エージェント名をコピー" name="copy_name"/>

View File

@ -147,7 +147,8 @@
<check_box name="FSChatbarNamePrediction" label="近くのチャットで周りにいる人の名前の自動補完を行う"/>
<check_box label="「:」を「/me」の代わりに使う" name="AllowMUpose"/>
<check_box label="(())のかっこを自動的に閉じる" name="AutoCloseOOC"/>
<check_box name="FSEnableEmojiWindowPopupWhileTyping" label="チャットバーに入力中に自動絵文字ピッカーウィンドウを有効にする"/>
<check_box name="FSUseChatMentionAutoComplete" label="チャットバー入力時に@入力で自動的にメンションウィンドウが表示されるのを有効にする"/>
<check_box name="FSEnableEmojiWindowPopupWhileTyping" label="チャットバー入力時に自動的に絵文字ピッカーウィンドウが表示されるのを有効にする"/>
<check_box name="FSShowEmojiButton" label="IMセッションと近くのチャットのチャットバーに絵文字ボタンを表示する"/>
<check_box name="FSShowIMSendButton" label="IMのチャットバーに「送信」ボタンを表示する"/>
<check_box label="近くのチャットウインドウにチャットバーを表示する" name="FSNearbyChatbar"/>

View File

@ -82,7 +82,7 @@
</text>
<spinner name="_NACL_AntiSpamSoundPreloadMulti" tool_tip="サウンドプリロード要求のイベント乗数を指定します。(デフォルト:4)"/>
<button name="AntiSpamUnblock" label="スパム源は全て無視する"/>
<check_box label="支払い前に確認する。閾値:" name="FSConfirmPayments" tool_tip="支払う金額の合計が閾値より大きい場合に確認ダイアログを表示します。確認ダイアログを毎回必ず表示するには、閾値を「0」に設定します。"/>
<check_box label="支払う前に確認する閾値:" name="FSConfirmPayments" tool_tip="支払う金額の合計が閾値より大きい場合に確認ダイアログを表示します。確認ダイアログを毎回必ず表示するには、閾値を「0」に設定します。"/>
<spinner name="FSPaymentConfirmationThreshold" tool_tip="支払う金額の合計が閾値より大きい場合に確認ダイアログを表示します。確認ダイアログを毎回必ず表示するには、閾値を「0」に設定します。"/>
</panel>
<!-- アバター -->

View File

@ -636,7 +636,7 @@ https://secondlife.com/viewer-access-faq
</string>
<string name="SLappAgentPay">
支払
支払
</string>
<string name="SLappAgentOfferTeleport">
次の場所へのテレポートのオファーを送ります:
@ -1824,12 +1824,12 @@ https://support.secondlife.com よりSecond Lifeのサポートまでお問い
</string>
<!-- use value="" because they have preceding spaces -->
<string name="active" value="(アクティブ)"/>
<string name="no_transfer" value=" (再販・譲渡不可)"/>
<string name="no_modify" value=" (編集不可)"/>
<string name="no_copy" value=" (コピー不可)"/>
<string name="worn" value=" (着用中)"/>
<string name="link" value="  リンク"/>
<string name="broken_link" value="  壊れたリンク"/>
<string name="no_transfer" value="(再販・譲渡不可)"/>
<string name="no_modify" value="(編集不可)"/>
<string name="no_copy" value="(コピー不可)"/>
<string name="worn" value="(着用中)"/>
<string name="link" value=" リンク"/>
<string name="broken_link" value=" 壊れたリンク"/>
<string name="no_transfer_lbl" value=" 再販・譲渡不可"/>
<string name="no_modify_lbl" value=" 編集不可"/>
<string name="no_copy_lbl" value=" コピー不可"/>
@ -1839,7 +1839,7 @@ https://support.secondlife.com よりSecond Lifeのサポートまでお問い
<string name="NoContents">
コンテンツなし
</string>
<string name="WornOnAttachmentPoint" value=" [ATTACHMENT_POINT]に装着中)"/>
<string name="WornOnAttachmentPoint" value="[ATTACHMENT_POINT]に装着中)"/>
<string name="AttachmentErrorMessage" value="[ATTACHMENT_ERROR]"/>
<string name="ActiveGesture" value="[GESLABEL](アクティブ)"/>
<!-- Inventory permissions -->
@ -1853,7 +1853,7 @@ https://support.secondlife.com よりSecond Lifeのサポートまでお問い
<!-- use value="" because they have preceding spaces -->
<string name="Chat Message" value=" チャット:"/>
<string name="Sound" value=" サウンド:"/>
<string name="Wait" value=" 待機:"/>
<string name="Wait" value="待機:"/>
<string name="AnimFlagStop" value=" アニメーションを停止:"/>
<string name="AnimFlagStart" value=" アニメーションを開始:"/>
<string name="Wave" value=" 手を振る"/>
@ -2254,11 +2254,6 @@ https://support.secondlife.com よりSecond Lifeのサポートまでお問い
<string name="hud_render_textures_warning">
[HUD_DETAILS]は、使用されているテクスチャが多すぎます。
</string>
<!-- AgeYearsA = singular,
AgeYearsB = plural,
AgeYearsC = plural for non-English languages like Russian
For example, LLTrans::getCountString("AgeYears", 3) is plural form B
in English and form C in Russian -->
<string name="AgeYearsA">
[COUNT]年
</string>
@ -2476,8 +2471,6 @@ https://support.secondlife.com よりSecond Lifeのサポートまでお問い
<string name="AlreadyInGroup">
すでにグループに入っています:
</string>
<!-- floater IM bonus_info: When a Linden with Admin/god status receives a new IM this displays the estate (Mainland vs. teen grid) of the source avatar.
This is to help Lindens when answering questions. -->
<string name="IMParentEstate">
親の不動産
</string>
@ -4718,7 +4711,7 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
</string>
<!-- Navigation bar location input control.
Strings are here because widget xml is not localizable -->
Strings are here because widget xml is not localizable -->
<string name="LocationCtrlAddLandmarkTooltip">
ランドマークに追加
</string>
@ -5411,8 +5404,6 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
<string name="dateTimeWeekdaysShortNames">
日:月:火:水:木:金:土
</string>
<!-- overriding datetime formating.
didn't translate if this is not needed for current localization -->
<string name="dateTimeMonthNames">
1:2:3:4:5:6:7:8:9:10:11:12
</string>
@ -5548,18 +5539,6 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
<string name="Divide">
除算
</string>
<string name="-">
-
</string>
<string name="=">
=
</string>
<string name="`">
`
</string>
<string name=";">
;
</string>
<!-- Key names end -->
<!-- Mouse button names (short) begin -->
<string name="LMB">
@ -5758,7 +5737,7 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
アバターの容姿を変更します。
</string>
<string name="Command_Avatar_Tooltip">
アバター一式を選択します。
アバターウェルカムパックを開きます。
</string>
<string name="Command_Build_Tooltip">
オブジェクトのビルドや地形の変形をします。
@ -6126,7 +6105,7 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
(全[MAXEXPERIENCES]件中[EXPERIENCES]件)
</string>
<string name="ExperiencePermission1">
コントロールを引き継ぐ
操作を引き継ぐ
</string>
<string name="ExperiencePermission3">
アバターでアニメーションをトリガー
@ -6135,10 +6114,10 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
アバターに装着
</string>
<string name="ExperiencePermission9">
カメラ追従
カメラ追従
</string>
<string name="ExperiencePermission10">
カメラのコントロール
カメラの制御
</string>
<string name="ExperiencePermission11">
あなたをテレポート
@ -6156,7 +6135,7 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
が、不明な操作を実行しました:[Permission]
</string>
<string name="ExperiencePermissionShort1">
コントロールする
操作する
</string>
<string name="ExperiencePermissionShort3">
アニメーションをトリガー
@ -6165,10 +6144,10 @@ www.secondlife.com から最新バージョンをダウンロードしてくだ
取り付ける
</string>
<string name="ExperiencePermissionShort9">
カメラ追跡
カメラ追跡
</string>
<string name="ExperiencePermissionShort10">
カメラ制御
カメラ制御
</string>
<string name="ExperiencePermissionShort11">
テレポート
@ -6357,8 +6336,8 @@ Rez時間[OBJECT_REZ_TIME]
<!-- <FS:Zi> Quick preferences default options -->
<string name="QP Draw Distance">描画距離</string>
<string name="QP Max Particles">最大パーティクル</string>
<string name="QP Avatar Physics LOD">アバター物理効果L</string>
<string name="QP LOD Factor">D係数</string>
<string name="QP Avatar Physics LOD">アバター物理効果L</string>
<string name="QP LOD Factor">D係数</string>
<string name="QP Max Avatars">最大アバター数</string>
<string name="QP Tags Offset">名前タグのオフセット位置</string>
<string name="QP Name Tags">名前タグの表示</string>

View File

@ -142,6 +142,7 @@
<check_box label="Włącz automatyczne odgadywanie imion w pasku czatu w pobliżu" name="FSChatbarNamePrediction"/>
<check_box name="AllowMUpose" label="&quot;:&quot; synonimem dla &quot;/me&quot;"/>
<check_box name="AutoCloseOOC" label="Domykaj ((nawiasy)) dla czatu OOC"/>
<check_box name="FSUseChatMentionAutoComplete" label="Automatyczne wyświetlanie okna wzmianek @ podczas pisania w paskach czatu"/>
<check_box name="FSEnableEmojiWindowPopupWhileTyping" label="Automatyczne wyświetlanie okna wyboru emoji podczas pisania w paskach czatu"/>
<check_box name="FSShowEmojiButton" label="Przycisk emoji w pasku czatu dla sesji IM i czatu w pobliżu"/>
<check_box name="FSShowIMSendButton" label="Przycisk wysyłania wiadomości w pasku czatu dla sesji IM"/>

View File

@ -114,7 +114,7 @@
<check_box name="FSChatbarNamePrediction" label="在本地聊天中啟用名稱自動完成" />
<check_box name="AllowMUpose" label="':' 為 '/me' 的同義詞" />
<check_box name="AutoCloseOOC" label="自動關閉雙括號 ((OOC))" />
<check_box name="FSSuppressEmojiWindowPopupWhileTyping" label="在聊天欄輸入時阻止表情選擇視窗自動彈出" />
<check_box name="FSUseChatMentionAutoComplete" label="在聊天欄輸入@時自動打開提及視窗"/>
<check_box name="FSEnableEmojiWindowPopupWhileTyping" label="在聊天欄輸入時自動打開表情選擇視窗" />
<check_box name="FSShowEmojiButton" label="在私聊和附近聊天中顯示表情符號按鈕" />
<check_box name="FSShowIMSendButton" label="在私聊中顯示傳送按鈕" />

View File

@ -128,6 +128,9 @@ class ViewerManifest(LLManifest,FSViewerManifest):
self.path("beams")
self.path("beamsColors")
# <FS:AR> Poser Presets
self.path("poses")
# <FS:Beq> package static_assets folder
if self.fs_is_opensim():
self.path("static_assets")
@ -194,10 +197,6 @@ class ViewerManifest(LLManifest,FSViewerManifest):
with self.prefix(src_dst="fs_resources"):
self.path("*.lsltxt")
self.path("*.dae") # <FS:Beq> FIRE-30963 - better physics defaults
# <FS:AR> Poser Presets
with self.prefix(src_dst="poses/hand_presets"):
self.path("*.xml")
# skins
with self.prefix(src_dst="skins"):