EXT-8003 FIX, EXT-8048 FIX
parent
aef4f6ccab
commit
ef932f5cf4
|
|
@ -40,6 +40,8 @@
|
|||
#include "llfocusmgr.h"
|
||||
#include "lllocalcliprect.h"
|
||||
|
||||
#include "lltrans.h"
|
||||
|
||||
#include "boost/bind.hpp"
|
||||
|
||||
static const S32 DRAGGER_BAR_MARGIN = 4;
|
||||
|
|
@ -72,6 +74,7 @@ LLAccordionCtrl::LLAccordionCtrl(const Params& params):LLPanel(params)
|
|||
{
|
||||
initNoTabsWidget(params.no_matched_tabs_text);
|
||||
|
||||
mNoVisibleTabsOrigString = LLTrans::getString(params.no_visible_tabs_text.initial_value().asString());
|
||||
mSingleExpansion = params.single_expansion;
|
||||
if(mFitParent && !mSingleExpansion)
|
||||
{
|
||||
|
|
@ -386,7 +389,7 @@ void LLAccordionCtrl::initNoTabsWidget(const LLTextBox::Params& tb_params)
|
|||
{
|
||||
LLTextBox::Params tp = tb_params;
|
||||
tp.rect(getLocalRect());
|
||||
mNoMatchedTabsOrigString = tp.initial_value().asString();
|
||||
mNoMatchedTabsOrigString = LLTrans::getString(tp.initial_value().asString());
|
||||
mNoVisibleTabsHelpText = LLUICtrlFactory::create<LLTextBox>(tp, this);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@
|
|||
background_visible="true"
|
||||
bg_alpha_color="DkGray2"
|
||||
bg_opaque_color="DkGray2"
|
||||
no_matched_tabs_text.value="Didn't find what you're looking for? Try [secondlife:///app/search/all/[SEARCH_TERM] Search]."
|
||||
no_matched_tabs_text.value="NoOutfitsTabsMatched"
|
||||
no_matched_tabs_text.v_pad="10"
|
||||
no_visible_tabs_text.value="..."
|
||||
no_visible_tabs_text.value="NoOutfits"
|
||||
follows="all"
|
||||
height="400"
|
||||
layout="topleft"
|
||||
|
|
|
|||
|
|
@ -2172,12 +2172,17 @@ Clears (deletes) the media and all params from the given face.
|
|||
<string name="PanelDirEventsDateText">[mthnum,datetime,slt]/[day,datetime,slt]</string>
|
||||
|
||||
<!-- panel contents -->
|
||||
<string name="PanelContentsTooltip">Content of object</string>
|
||||
<string name="PanelContentsNewScript">New Script</string>
|
||||
<string name="PanelContentsTooltip">Content of object</string>
|
||||
|
||||
<!-- panel preferences general -->
|
||||
<string name="BusyModeResponseDefault">The Resident you messaged is in 'busy mode' which means they have requested not to be disturbed. Your message will still be shown in their IM panel for later viewing.</string>
|
||||
|
||||
<!-- Outfits Panel -->
|
||||
<string name="NoOutfits">You don't have any outfits yet. Try [secondlife:///app/search/all/ Search]</string>
|
||||
<string name="NoOutfitsTabsMatched">Didn't find what you're looking for? Try [secondlife:///app/search/all/[SEARCH_TERM] Search].</string>
|
||||
|
||||
<!-- Mute -->
|
||||
<string name="MuteByName">(By name)</string>
|
||||
<string name="MuteAgent">(Resident)</string>
|
||||
|
|
|
|||
Loading…
Reference in New Issue