diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake index 756c3f4f42..6f48f36ecc 100644 --- a/indra/cmake/Variables.cmake +++ b/indra/cmake/Variables.cmake @@ -217,8 +217,12 @@ set(FLICKR_API_SECRET "846f0958020b553e") # Discord client key. set(DDISCORD_API_KEY "427641535253708801") -set(ENABLE_SIGNING OFF CACHE BOOL "Enable signing the viewer") -set(SIGNING_IDENTITY "" CACHE STRING "Specifies the signing identity to use, if necessary.") +# FS:ND Don't force this into the cache, that can have some strange effects. Instead make it a normal variable +#set(ENABLE_SIGNING OFF CACHE BOOL "Enable signing the viewer") +set(ENABLE_SIGNING OFF) + +# FS:ND Don't force this into the cache here, we set it in 00-Common.make +#set(SIGNING_IDENTITY "" CACHE STRING "Specifies the signing identity to use, if necessary.") set(VERSION_BUILD "0" CACHE STRING "Revision number passed in from the outside") set(USESYSTEMLIBS OFF CACHE BOOL "Use libraries from your system rather than Linden-supplied prebuilt libraries.") diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 706b4cc8e9..138f28a7ed 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -21053,7 +21053,7 @@ Change of this parameter will affect the layout of buttons in notification toast Value 0.0 - FSShowMapDetails + StarLightShowMapDetails Comment Show the details panel on the side of the World Map @@ -24651,6 +24651,19 @@ Change of this parameter will affect the layout of buttons in notification toast Value 0 + FSLatencyOneTimeFixRun + + Comment + One time fix has run for this install for script dialog colors on Latency + Persist + 1 + HideFromEditor + 1 + Type + Boolean + Value + 0 + FSUseCtrlShout Comment diff --git a/indra/newview/app_settings/settings_v3.xml b/indra/newview/app_settings/settings_v3.xml index e6a1caebef..6c89031e12 100644 --- a/indra/newview/app_settings/settings_v3.xml +++ b/indra/newview/app_settings/settings_v3.xml @@ -80,7 +80,7 @@ Type String Value - firestorm + starlight SkinCurrentTheme @@ -106,7 +106,7 @@ Type String Value - Firestorm + Starlight FSSkinCurrentThemeReadableName diff --git a/indra/newview/fsfloaterim.cpp b/indra/newview/fsfloaterim.cpp index 528d859aa2..591d76f91e 100644 --- a/indra/newview/fsfloaterim.cpp +++ b/indra/newview/fsfloaterim.cpp @@ -411,7 +411,14 @@ void FSFloaterIM::sendMsgFromInputEditor(EChatType type) static LLCachedControl FSInternalSkinCurrent(gSavedSettings, "FSInternalSkinCurrent"); std::string skin_indicator(FSInternalSkinCurrent); LLStringUtil::toLower(skin_indicator); - skin_indicator = skin_indicator.substr(0, 1); // "FS 4.4.1f os", "FS 4.4.1v", "FS 4.4.1a", "FS 4.4.1s os", "FS 4.4.1m os" etc. + if (skin_indicator == "starlight cui") + { + skin_indicator = "sc"; // Separate "s" (StarLight) from "sc" (StarLight CUI) + } + else + { + skin_indicator = skin_indicator.substr(0, 1); // "FS 4.4.1f os", "FS 4.4.1v", "FS 4.4.1a", "FS 4.4.1s os", "FS 4.4.1m os" etc. + } // //Address size check diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index a86b3dce7b..5ca1876081 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -5157,6 +5157,34 @@ void LLPanelPreferenceSkins::apply() gSavedSettings.setBOOL("ResetToolbarSettings", TRUE); } + if (m_Skin == "starlight" || m_Skin == "starlightcui") + { + std::string noteMessage; + + if (gSavedSettings.getBOOL("ShowMenuBarLocation")) + { + noteMessage = LLTrans::getString("skin_defaults_starlight_location"); + gSavedSettings.setBOOL("ShowMenuBarLocation", FALSE); + } + + if (!gSavedSettings.getBOOL("ShowNavbarNavigationPanel")) + { + if (!noteMessage.empty()) + { + noteMessage += "\n"; + } + noteMessage += LLTrans::getString("skin_defaults_starlight_navbar"); + gSavedSettings.setBOOL("ShowNavbarNavigationPanel", TRUE); + } + + if (!noteMessage.empty()) + { + LLSD args; + args["MESSAGE"] = noteMessage; + LLNotificationsUtil::add("SkinDefaultsChangeSettings", args, LLSD(), boost::bind(&LLPanelPreferenceSkins::showSkinChangeNotification, this)); + return; + } + } // showSkinChangeNotification(); diff --git a/indra/newview/llmoveview.cpp b/indra/newview/llmoveview.cpp index 1912e15bf5..6be25911db 100644 --- a/indra/newview/llmoveview.cpp +++ b/indra/newview/llmoveview.cpp @@ -691,7 +691,7 @@ void LLPanelStandStopFlying::reparent(LLFloaterMove* move_view) // Attach to movement controls. parent->removeChild(this); - // FIRE-9636: Resizable movement controls + // FIRE-9636: Resizable movement controls (for all skins except Starlight/CUI) //move_view->addChild(this); LLView* modes_container = move_view->findChildView("modes_container"); if (modes_container) diff --git a/indra/newview/skins/default/textures/skinspreview/scui_dark.jpg b/indra/newview/skins/default/textures/skinspreview/scui_dark.jpg new file mode 100644 index 0000000000..700fb235ce Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/scui_dark.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/scui_light.jpg b/indra/newview/skins/default/textures/skinspreview/scui_light.jpg new file mode 100644 index 0000000000..2466269056 Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/scui_light.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/slight_mteal.jpg b/indra/newview/skins/default/textures/skinspreview/slight_mteal.jpg new file mode 100644 index 0000000000..211113da73 Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/slight_mteal.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/slight_nblue.jpg b/indra/newview/skins/default/textures/skinspreview/slight_nblue.jpg new file mode 100644 index 0000000000..5f7adc8247 Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/slight_nblue.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/slight_orange.jpg b/indra/newview/skins/default/textures/skinspreview/slight_orange.jpg new file mode 100644 index 0000000000..b20fd62082 Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/slight_orange.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/slight_sblue.jpg b/indra/newview/skins/default/textures/skinspreview/slight_sblue.jpg new file mode 100644 index 0000000000..42813e5358 Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/slight_sblue.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/slight_spink.jpg b/indra/newview/skins/default/textures/skinspreview/slight_spink.jpg new file mode 100644 index 0000000000..b6e9c0ae6e Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/slight_spink.jpg differ diff --git a/indra/newview/skins/default/textures/skinspreview/slight_teal.jpg b/indra/newview/skins/default/textures/skinspreview/slight_teal.jpg new file mode 100644 index 0000000000..75f1702842 Binary files /dev/null and b/indra/newview/skins/default/textures/skinspreview/slight_teal.jpg differ diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml index bdf9dd9db2..0e570a8184 100644 --- a/indra/newview/skins/default/textures/textures.xml +++ b/indra/newview/skins/default/textures/textures.xml @@ -838,6 +838,14 @@ with the same filename but different name + + + + + + + + @@ -1014,13 +1022,16 @@ with the same filename but different name + + + + + + + - - - - diff --git a/indra/newview/skins/default/xui/de/floater_about.xml b/indra/newview/skins/default/xui/de/floater_about.xml index 718413e5a2..a207122a78 100644 --- a/indra/newview/skins/default/xui/de/floater_about.xml +++ b/indra/newview/skins/default/xui/de/floater_about.xml @@ -36,6 +36,8 @@ Zusätzlicher Programmcode von: Besonderer Dank gilt unserem Firestorm-Support-Team sowie den Wiki-Autoren, Schulungsleitern und Übersetzern: +Firestorm enthält Starlight, modifiziert für Firestorm. Es ist von Einwohnern für Einwohner und hat das Ziel, eine alternative, freundlichere und hoffentlich einfacher zu bedienende Oberfläche bereitzustellen. Für weitere Details, siehe <nolink>https://wiki.secondlife.com/wiki/Viewer_Skins/Starlight</nolink>. + UI-Künstler und Designer: diff --git a/indra/newview/skins/default/xui/de/strings.xml b/indra/newview/skins/default/xui/de/strings.xml index 2be5d7a095..c10c115b6f 100644 --- a/indra/newview/skins/default/xui/de/strings.xml +++ b/indra/newview/skins/default/xui/de/strings.xml @@ -7052,6 +7052,13 @@ Ihre aktuelle Position: [AVATAR_POS] Achtung: Präprozessor-Ausgabe wurde aufgrund exzessiver Textlänge gekürzt. Das Skript wird wahrscheinlich nicht funktionieren. + + Die Anzeige der aktuellen Position in der Menüleiste wurde als Standard für Starlight-Oberflächendesigns deaktiviert. + + + Die Anzeige der Navigationsleiste wurde als Standard für Starlight-Oberflächendesigns aktiviert. + + Vor [SECONDS] Sekunden diff --git a/indra/newview/skins/default/xui/en/floater_about.xml b/indra/newview/skins/default/xui/en/floater_about.xml index c094919579..bbf727d85c 100644 --- a/indra/newview/skins/default/xui/en/floater_about.xml +++ b/indra/newview/skins/default/xui/en/floater_about.xml @@ -201,6 +201,8 @@ Afrika Burton, Albatroz Hird, Alexru Resident, alison Seesaw, AnaLucia Loon, Ang top_pad="8" width="450" wrap="true"> +Firestorm includes Starlight, modified for Firestorm. It is provided by residents for residents, with the intention of providing an alternative, brighter, and hopefully easier to use interface. For further details see <nolink>https://wiki.secondlife.com/wiki/Viewer_Skins/Starlight</nolink>. + UI Artists and Designers: + + + + + + Drag to move, shift-drag to copy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [DESC] [NUM] + + + Nothing selected. + + + + + [CAPACITY_STRING] [secondlife:///app/openfloater/object_weights More info] + + + + + + + Deed + + + Deed + + + You can modify this object + + + You can modify these objects + + + You can't modify this object + + + You can't modify these objects + + + You can't modify this object across a region boundary + + + You can't modify these objects across a region boundary + + + You must select entire object to set permissions + + + Price: L$ + + + Total Price: L$ + + + Price Per: L$ + + + Mixed Price + + + Mixed Sale + + + Multiple selection + + + Name: + + + + Description: + + + + Creator: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect TestString PleaseIgnore (please.ignore) + + + Owner: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect TestString PleaseIgnore (please.ignore) + + + Last Owner: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect TestString PleaseIgnore (please.ignore) + + + Group: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect Loading... + + + + + + You can modify this object + + + Anyone: + + + + + + Next owner: + + + + + + + B: + + + O: + + + G: + + + E: + + + N: + + + F: + + + + + Pathfinding attributes: + + + + + + + + + Paste Position +[VALUE] + + + Paste Size +[VALUE] + + + Paste Rotation +[VALUE] + + + + + + + Position (meters) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Path Cut (begin/end) + + + + + Hollow + + + Skew + + + + + Hollow Shape + + + + + + + + + Twist (begin/end) + + + + + Taper + + + Hole Size + + + + + Top Shear + + + + + Profile Cut (begin/end) + + + Dimple (begin/end) + + + Slice (begin/end) + + + + + Taper Profile + + + + + Radius + + + Revolutions + + + + + + + + Stitching type + + + + + + + + + + Mesh Information: + + + + +High: +Medium: +Low: +Lowest: + + +[HIGHTRIS] +[MIDTRIS] +[LOWTRIS] +[LOWESTTRIS] + + + + + + + + + + + + + + + + + Linden Lab Second Life Viewer default ([FACTOR]) + + [APP_NAME] Viewer default ([FACTOR]) + + [APP_NAME_ABBR] + + [FACTOR] + + +High ↔ Med +Med ↔ Low +Low ↔ Lwst + + +[HIGH2MED] +[MED2LOW] +[LOW2LOWEST] + + + + + + This table shows the LOD change boundaries in metres from the camera. + + + + + None + Prim + Convex Hull + + Select only one primitive to edit features. + + + Edit object features: + + + + + + + + + + + + + + + + + + + + + + + Physics Shape Type: + + + + diff --git a/indra/newview/skins/starlight/xui/en/floater_ui_preview.xml b/indra/newview/skins/starlight/xui/en/floater_ui_preview.xml new file mode 100644 index 0000000000..df26a35f6f --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/floater_ui_preview.xml @@ -0,0 +1,420 @@ + + + +Select an editor by setting the environment variable LL_XUI_EDITOR +or the ExternalEditor setting +or specifying its path in the "Editor Path" field. + + + Primary Language: + + + + + + + Me + + + + + Person + + + + + Infohub + + + + + Land Sale + + + + land auction + + + + by owner + + + + + Go Home + + + Events: + + + + + + General + + + + + + Moderate + + + + + + Adult + + + + + + + Find on Map + + + + + + + + + + + + + + + + + + + + + + + + + Location: + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlight/xui/en/main_view.xml b/indra/newview/skins/starlight/xui/en/main_view.xml new file mode 100644 index 0000000000..f0708bbfe1 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/main_view.xml @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlight/xui/en/panel_avatar_tag.xml b/indra/newview/skins/starlight/xui/en/panel_avatar_tag.xml new file mode 100644 index 0000000000..fcdb705240 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/panel_avatar_tag.xml @@ -0,0 +1,66 @@ + + + + + + Angela Tester + + + + + The quick brown fox jumps over the lazy dog. + + diff --git a/indra/newview/skins/starlight/xui/en/panel_classified_info.xml b/indra/newview/skins/starlight/xui/en/panel_classified_info.xml new file mode 100644 index 0000000000..b3f4af97a8 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/panel_classified_info.xml @@ -0,0 +1,470 @@ + + + + Moderate + + + General Content + + + L$[PRICE] + + + [TELEPORT] teleport, [MAP] map, [PROFILE] profile + + + [mthnum,datetime,slt]/[day,datetime,slt]/[year,datetime,slt] + + + Enabled + + + Disabled + + + + + + + + +Warning: the home page specified in the General tab fails to pass this whitelist. It has been disabled until a valid entry has been added. + + + diff --git a/indra/newview/skins/starlight/xui/en/panel_my_profile.xml b/indra/newview/skins/starlight/xui/en/panel_my_profile.xml new file mode 100644 index 0000000000..bb8b7c3a35 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/panel_my_profile.xml @@ -0,0 +1,382 @@ + + + +[ACCTTYPE] +[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW] + + + + + + + + http://www.secondlife.com/account/billing.php?lang=en + + + http://www.secondlife.com/account/partners.php?lang=en + + + + + + [REG_DATE] ([AGE]) + + + [NAME] + + + [DISPLAY_NAME] + + + + + + + + + + + Resident. No payment info on file. + Linden. + + + + + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean viverra orci et justo sagittis aliquet.Nullamma lesuada mauris sit amet ipsum. adipiscing elit. Ae nean viverra orci et justo sagittis aliquet. Nullam malesuada mauris sit amet ipsum. adipiscing elit. Aenean viverra orci et justo sagittis aliquet. Nullam malesuada mauris sit amet ipsum. + + + + + + + + + + + + + + + + + Nearby Media + + + Show: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlight/xui/en/panel_notes.xml b/indra/newview/skins/starlight/xui/en/panel_notes.xml new file mode 100644 index 0000000000..7c0ac7e085 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/panel_notes.xml @@ -0,0 +1,236 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Mighty Moose of mooseville soundvillemoose + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlight/xui/en/panel_places.xml b/indra/newview/skins/starlight/xui/en/panel_places.xml new file mode 100644 index 0000000000..12309c77de --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/panel_places.xml @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlight/xui/en/panel_status_bar.xml b/indra/newview/skins/starlight/xui/en/panel_status_bar.xml new file mode 100644 index 0000000000..ad7da6fde1 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/panel_status_bar.xml @@ -0,0 +1,423 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlight/xui/en/sidepanel_appearance.xml b/indra/newview/skins/starlight/xui/en/sidepanel_appearance.xml new file mode 100644 index 0000000000..1f252a06b1 --- /dev/null +++ b/indra/newview/skins/starlight/xui/en/sidepanel_appearance.xml @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/floater_price_for_listing.xml b/indra/newview/skins/starlightcui/xui/en/floater_price_for_listing.xml new file mode 100644 index 0000000000..616bbdc47d --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/floater_price_for_listing.xml @@ -0,0 +1,81 @@ + + + + Your classified ad will run for one week from the day it is published. + +Your ad's position in the classified listings is determined by how much you choose to pay. + +The highest paid ads go to the top of the list, and appear higher in searches. + + + Price for Ad: + + + L$ + + + + + + + + + Drag to move, shift-drag to copy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [DESC] [NUM] + + + Nothing selected. + + + + + [CAPACITY_STRING] [secondlife:///app/openfloater/object_weights More info] + + + + + + + Deed + + + Deed + + + You can modify this object + + + You can modify these objects + + + You can't modify this object + + + You can't modify these objects + + + You can't modify this object across a region boundary + + + You can't modify these objects across a region boundary + + + You must select entire object to set permissions + + + Price: L$ + + + Total Price: L$ + + + Price Per: L$ + + + Mixed Price + + + Mixed Sale + + + Multiple selection + + + Name: + + + + Description: + + + + Creator: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect TestString PleaseIgnore (please.ignore) + + + Owner: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect TestString PleaseIgnore (please.ignore) + + + Last Owner: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect TestString PleaseIgnore (please.ignore) + + + Group: + + + + secondlife:///app/agent/00000000-0000-0000-0000-000000000000/inspect Loading... + + + + + + You can modify this object + + + Anyone: + + + + + + Next owner: + + + + + + + B: + + + O: + + + G: + + + E: + + + N: + + + F: + + + + + Pathfinding attributes: + + + + + + + + + Paste Position +[VALUE] + + + Paste Size +[VALUE] + + + Paste Rotation +[VALUE] + + + + + + + Position (meters) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Path Cut (begin/end) + + + + + Hollow + + + Skew + + + + + Hollow Shape + + + + + + + + + Twist (begin/end) + + + + + Taper + + + Hole Size + + + + + Top Shear + + + + + Profile Cut (begin/end) + + + Dimple (begin/end) + + + Slice (begin/end) + + + + + Taper Profile + + + + + Radius + + + Revolutions + + + + + + + + Stitching type + + + + + + + + + + Mesh Information: + + + + +High: +Medium: +Low: +Lowest: + + +[HIGHTRIS] +[MIDTRIS] +[LOWTRIS] +[LOWESTTRIS] + + + + + + + + + + + + + + + + + Linden Lab Second Life Viewer default ([FACTOR]) + + [APP_NAME] Viewer default ([FACTOR]) + + [APP_NAME_ABBR] + + [FACTOR] + + +High ↔ Med +Med ↔ Low +Low ↔ Lwst + + +[HIGH2MED] +[MED2LOW] +[LOW2LOWEST] + + + + + + This table shows the LOD change boundaries in metres from the camera. + + + + + None + Prim + Convex Hull + + Select only one primitive to edit features. + + + Edit object features: + + + + + + + + + + + + + + + + + + + + + + + Physics Shape Type: + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/floater_ui_preview.xml b/indra/newview/skins/starlightcui/xui/en/floater_ui_preview.xml new file mode 100644 index 0000000000..65bde85d2a --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/floater_ui_preview.xml @@ -0,0 +1,420 @@ + + + +Select an editor by setting the environment variable LL_XUI_EDITOR +or the ExternalEditor setting +or specifying its path in the "Editor Path" field. + + + Primary Language: + + + + + + + Me + + + + + Person + + + + + Infohub + + + + + Land Sale + + + + land auction + + + + by owner + + + + + Go Home + + + Events: + + + + + + General + + + + + + Moderate + + + + + + Adult + + + + + + + Find on Map + + + + + + + + + + + + + + + + + + + + + + + + + Location: + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/line_editor.xml b/indra/newview/skins/starlightcui/xui/en/line_editor.xml new file mode 100644 index 0000000000..b6fd4bb15f --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/line_editor.xml @@ -0,0 +1,18 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/main_view.xml b/indra/newview/skins/starlightcui/xui/en/main_view.xml new file mode 100644 index 0000000000..8f2e284a7b --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/main_view.xml @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_avatar_tag.xml b/indra/newview/skins/starlightcui/xui/en/panel_avatar_tag.xml new file mode 100644 index 0000000000..fcdb705240 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_avatar_tag.xml @@ -0,0 +1,66 @@ + + + + + + Angela Tester + + + + + The quick brown fox jumps over the lazy dog. + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_classified_info.xml b/indra/newview/skins/starlightcui/xui/en/panel_classified_info.xml new file mode 100644 index 0000000000..b3f4af97a8 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_classified_info.xml @@ -0,0 +1,470 @@ + + + + Moderate + + + General Content + + + L$[PRICE] + + + [TELEPORT] teleport, [MAP] map, [PROFILE] profile + + + [mthnum,datetime,slt]/[day,datetime,slt]/[year,datetime,slt] + + + Enabled + + + Disabled + + + + + + + + +Warning: the home page specified in the General tab fails to pass this whitelist. It has been disabled until a valid entry has been added. + + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_my_profile.xml b/indra/newview/skins/starlightcui/xui/en/panel_my_profile.xml new file mode 100644 index 0000000000..bb8b7c3a35 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_my_profile.xml @@ -0,0 +1,382 @@ + + + +[ACCTTYPE] +[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW] + + + + + + + + http://www.secondlife.com/account/billing.php?lang=en + + + http://www.secondlife.com/account/partners.php?lang=en + + + + + + [REG_DATE] ([AGE]) + + + [NAME] + + + [DISPLAY_NAME] + + + + + + + + + + + Resident. No payment info on file. + Linden. + + + + + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean viverra orci et justo sagittis aliquet.Nullamma lesuada mauris sit amet ipsum. adipiscing elit. Ae nean viverra orci et justo sagittis aliquet. Nullam malesuada mauris sit amet ipsum. adipiscing elit. Aenean viverra orci et justo sagittis aliquet. Nullam malesuada mauris sit amet ipsum. + + + + + + + + + + + + + + + + + Nearby Media + + + Show: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_notes.xml b/indra/newview/skins/starlightcui/xui/en/panel_notes.xml new file mode 100644 index 0000000000..7c0ac7e085 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_notes.xml @@ -0,0 +1,236 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Mighty Moose of mooseville soundvillemoose + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_places.xml b/indra/newview/skins/starlightcui/xui/en/panel_places.xml new file mode 100644 index 0000000000..12309c77de --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_places.xml @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_stand_stop_flying.xml b/indra/newview/skins/starlightcui/xui/en/panel_stand_stop_flying.xml new file mode 100644 index 0000000000..ee6b2b9d44 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_stand_stop_flying.xml @@ -0,0 +1,50 @@ + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/panel_status_bar.xml b/indra/newview/skins/starlightcui/xui/en/panel_status_bar.xml new file mode 100644 index 0000000000..e911fc9b6c --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/panel_status_bar.xml @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/sidepanel_appearance.xml b/indra/newview/skins/starlightcui/xui/en/sidepanel_appearance.xml new file mode 100644 index 0000000000..6a64942ed6 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/sidepanel_appearance.xml @@ -0,0 +1,167 @@ + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/chiclet_im_p2p.xml b/indra/newview/skins/starlightcui/xui/en/widgets/chiclet_im_p2p.xml new file mode 100644 index 0000000000..37144bb81b --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/chiclet_im_p2p.xml @@ -0,0 +1,56 @@ + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/clothing_list_item.xml b/indra/newview/skins/starlightcui/xui/en/widgets/clothing_list_item.xml new file mode 100644 index 0000000000..d83f44737e --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/clothing_list_item.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/combo_box.xml b/indra/newview/skins/starlightcui/xui/en/widgets/combo_box.xml new file mode 100644 index 0000000000..a2e735cb08 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/combo_box.xml @@ -0,0 +1,37 @@ + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/deletable_wearable_list_item.xml b/indra/newview/skins/starlightcui/xui/en/widgets/deletable_wearable_list_item.xml new file mode 100644 index 0000000000..bd977aa4a6 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/deletable_wearable_list_item.xml @@ -0,0 +1,43 @@ + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/drop_down.xml b/indra/newview/skins/starlightcui/xui/en/widgets/drop_down.xml new file mode 100644 index 0000000000..5260e080cb --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/drop_down.xml @@ -0,0 +1,20 @@ + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/dummy_clothing_list_item.xml b/indra/newview/skins/starlightcui/xui/en/widgets/dummy_clothing_list_item.xml new file mode 100644 index 0000000000..11bc36c01d --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/dummy_clothing_list_item.xml @@ -0,0 +1,52 @@ + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/floater.xml b/indra/newview/skins/starlightcui/xui/en/widgets/floater.xml new file mode 100644 index 0000000000..3829e1f84a --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/floater.xml @@ -0,0 +1,26 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/fs_chiclet_im_p2p.xml b/indra/newview/skins/starlightcui/xui/en/widgets/fs_chiclet_im_p2p.xml new file mode 100644 index 0000000000..07d8962d72 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/fs_chiclet_im_p2p.xml @@ -0,0 +1,56 @@ + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/gesture_combo_list.xml b/indra/newview/skins/starlightcui/xui/en/widgets/gesture_combo_list.xml new file mode 100644 index 0000000000..872d12cb87 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/gesture_combo_list.xml @@ -0,0 +1,21 @@ + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/icon.xml b/indra/newview/skins/starlightcui/xui/en/widgets/icon.xml new file mode 100644 index 0000000000..fe0cee9c59 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/icon.xml @@ -0,0 +1,8 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/inventory_list_item.xml b/indra/newview/skins/starlightcui/xui/en/widgets/inventory_list_item.xml new file mode 100644 index 0000000000..f31b247822 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/inventory_list_item.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/inventory_panel.xml b/indra/newview/skins/starlightcui/xui/en/widgets/inventory_panel.xml new file mode 100644 index 0000000000..8aea659372 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/inventory_panel.xml @@ -0,0 +1,16 @@ + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/line_editor.xml b/indra/newview/skins/starlightcui/xui/en/widgets/line_editor.xml new file mode 100644 index 0000000000..b6fd4bb15f --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/line_editor.xml @@ -0,0 +1,18 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/location_input.xml b/indra/newview/skins/starlightcui/xui/en/widgets/location_input.xml new file mode 100644 index 0000000000..4e61843aa9 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/location_input.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/menu.xml b/indra/newview/skins/starlightcui/xui/en/widgets/menu.xml new file mode 100644 index 0000000000..c074308134 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/menu.xml @@ -0,0 +1,8 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/menu_bar.xml b/indra/newview/skins/starlightcui/xui/en/widgets/menu_bar.xml new file mode 100644 index 0000000000..71a624ac04 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/menu_bar.xml @@ -0,0 +1,8 @@ + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/panel.xml b/indra/newview/skins/starlightcui/xui/en/widgets/panel.xml new file mode 100644 index 0000000000..008d06a705 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/panel.xml @@ -0,0 +1,15 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/progress_bar.xml b/indra/newview/skins/starlightcui/xui/en/widgets/progress_bar.xml new file mode 100644 index 0000000000..2a6ea05b84 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/progress_bar.xml @@ -0,0 +1,12 @@ + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/recent_inventory_panel.xml b/indra/newview/skins/starlightcui/xui/en/widgets/recent_inventory_panel.xml new file mode 100644 index 0000000000..fe0d93a9c2 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/recent_inventory_panel.xml @@ -0,0 +1,16 @@ + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/scroll_bar.xml b/indra/newview/skins/starlightcui/xui/en/widgets/scroll_bar.xml new file mode 100644 index 0000000000..05b601eadd --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/scroll_bar.xml @@ -0,0 +1,30 @@ + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/scroll_container.xml b/indra/newview/skins/starlightcui/xui/en/widgets/scroll_container.xml new file mode 100644 index 0000000000..abae7f7683 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/scroll_container.xml @@ -0,0 +1,7 @@ + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/simple_text_editor.xml b/indra/newview/skins/starlightcui/xui/en/widgets/simple_text_editor.xml new file mode 100644 index 0000000000..f9cf52c8fc --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/simple_text_editor.xml @@ -0,0 +1,27 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/slider_bar.xml b/indra/newview/skins/starlightcui/xui/en/widgets/slider_bar.xml new file mode 100644 index 0000000000..061cbfc177 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/slider_bar.xml @@ -0,0 +1,14 @@ + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/split_button.xml b/indra/newview/skins/starlightcui/xui/en/widgets/split_button.xml new file mode 100644 index 0000000000..78258bc3f0 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/split_button.xml @@ -0,0 +1,25 @@ + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/tab_container.xml b/indra/newview/skins/starlightcui/xui/en/widgets/tab_container.xml new file mode 100644 index 0000000000..ed50e4f104 --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/tab_container.xml @@ -0,0 +1,39 @@ + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/talk_button.xml b/indra/newview/skins/starlightcui/xui/en/widgets/talk_button.xml new file mode 100644 index 0000000000..fd931a896b --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/talk_button.xml @@ -0,0 +1,40 @@ + + + + + + + + diff --git a/indra/newview/skins/starlightcui/xui/en/widgets/toolbar.xml b/indra/newview/skins/starlightcui/xui/en/widgets/toolbar.xml new file mode 100644 index 0000000000..00d755cc1a --- /dev/null +++ b/indra/newview/skins/starlightcui/xui/en/widgets/toolbar.xml @@ -0,0 +1,78 @@ + + + + + + +