Ansariel 2022-09-13 20:14:22 +02:00
commit db864c11cd
131 changed files with 3760 additions and 1460 deletions

View File

@ -22,16 +22,16 @@
<key>archive</key>
<map>
<key>hash</key>
<string>f332d752a72cb524eb5db8ee6fdba3da</string>
<string>e6eecee825b9159b3be34b5fd21ef3e0</string>
<key>url</key>
<string>http://3p.firestormviewer.org/SDL2-2.0.20-linux64_bionic-221151857.tar.bz2</string>
<string>http://3p.firestormviewer.org/SDL-2.0.20-linux64-222521433.tar.bz2</string>
</map>
<key>name</key>
<string>linux64</string>
</map>
</map>
<key>version</key>
<string>1.2.15</string>
<string>2.0.20</string>
</map>
<key>gstreamer10</key>
<map>
@ -2622,16 +2622,16 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors</string>
<key>archive</key>
<map>
<key>hash</key>
<string>88fb222412b98a7f371d6bf2ff42a973</string>
<string>c7c1f7f656d155b5af852ae1ef4954d9</string>
<key>url</key>
<string>http://3p.firestormviewer.org/open_libndofdev-0.13.211211036-linux64-211211036.tar.bz2</string>
<string>http://3p.firestormviewer.org/open_libndofdev-0.13.222441031-linux64-222441031.tar.bz2</string>
</map>
<key>name</key>
<string>linux64</string>
</map>
</map>
<key>version</key>
<string>0.3.180841957</string>
<string>0.13.222441031</string>
</map>
<key>openal</key>
<map>
@ -2918,9 +2918,9 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors</string>
<key>archive</key>
<map>
<key>hash</key>
<string>f5f4bc956734e53ef99125ae9aae3a87</string>
<string>db89d5ce9695457cc1e94cf657678f1a</string>
<key>url</key>
<string>http://3p.firestormviewer.org/slvoice-3.2-linux64_bionic-220651719.tar.bz2</string>
<string>http://3p.firestormviewer.org/slvoice-3.2-linux64-222532329.tar.bz2</string>
</map>
<key>name</key>
<string>linux64</string>

View File

@ -1040,9 +1040,14 @@ BOOL LLWindowSDL::getFullscreen()
BOOL LLWindowSDL::getPosition(LLCoordScreen *position)
{
// *FIX: can anything be done with this?
position->mX = 0;
position->mY = 0;
int x;
int y;
SDL_GetWindowPosition(mWindow, &x, &y);
position->mX = x;
position->mY = y;
return TRUE;
}

View File

@ -28,7 +28,6 @@
#include "fsfloaterpartialinventory.h"
#include "llfiltereditor.h"
#include "llinventorypanel.h"
//=========================================================================

View File

@ -28,9 +28,9 @@
#define FS_FLOATERPARTIALINVENTORY_H
#include "llfloater.h"
#include "llinventorypanel.h"
class LLFilterEditor;
class LLInventoryPanel;
class FSFloaterPartialInventory : public LLFloater
{
@ -41,6 +41,8 @@ public:
BOOL postBuild() override;
void onOpen(const LLSD& key) override;
LLInventoryPanel* getInventoryPanel() const { return mInventoryList; };
private:
LLUUID mRootFolderId;
LLInventoryPanel* mInventoryList{ nullptr };

View File

@ -90,6 +90,7 @@
#include "fslslbridge.h"
#include "fsradar.h"
#include "fsassetblacklist.h"
#include "llagentpicksinfo.h"
#include "llfloaterregioninfo.h"
#include "llfloaterreporter.h"
#include "llparcel.h"
@ -503,6 +504,14 @@ void LLAvatarActions::showPick(const LLUUID& avatar_id, const LLUUID& pick_id)
// static
void LLAvatarActions::createPick()
{
// <FS:Ansariel> FIRE-7694 / BUG-932 / MAINT-1999
if (LLAgentPicksInfo::getInstance()->isPickLimitReached())
{
LLNotificationsUtil::add("PickLimitReached");
return;
}
// </FS:Ansariel>
LLFloaterProfile* profilefloater = dynamic_cast<LLFloaterProfile*>(LLFloaterReg::showInstance("profile", LLSD().with("id", gAgent.getID())));
LLViewerRegion* region = gAgent.getRegion();
if (profilefloater && region)

View File

@ -71,7 +71,7 @@ BOOL LLFloaterProfileTexture::postBuild()
mCloseButton->setCommitCallback([this](LLUICtrl*, void*) { closeFloater(); }, nullptr);
// <FS:Ansariel> Add refresh function
getChild<LLButton>("btn_refresh")->setCommitCallback([this](LLUICtrl*, void*) { refresh(); }, nullptr);
getChild<LLButton>("btn_refresh")->setCommitCallback([this](LLUICtrl*, void*) { refreshTexture(); }, nullptr);
return TRUE;
}
@ -230,7 +230,7 @@ void LLFloaterProfileTexture::onTextureLoaded(
}
// <FS:Ansariel> Add refresh function
void LLFloaterProfileTexture::refresh()
void LLFloaterProfileTexture::refreshTexture()
{
if (mImageID.notNull() && mImage.notNull())
{

View File

@ -47,7 +47,7 @@ public:
void loadAsset(const LLUUID &image_id);
// <FS:Ansariel> Add refresh function
void refresh();
void refreshTexture();
static void onTextureLoaded(

View File

@ -58,6 +58,7 @@
#include "rlvactions.h"
#include "rlvcommon.h"
// [/RLVa:KB]
#include "fsfloaterpartialinventory.h"
class LLInventoryRecentItemsPanel;
class LLAssetFilteredInventoryPanel;
@ -1899,6 +1900,11 @@ LLInventoryPanel* LLInventoryPanel::getActiveInventoryPanel(BOOL auto_open)
// </FS:Ansariel>
{
LLFloaterSidePanelContainer* inventory_floater = dynamic_cast<LLFloaterSidePanelContainer*>(*iter);
// <FS:Ansariel> Guard against nullpointer access violation
if (!inventory_floater)
continue;
inventory_panel = inventory_floater->findChild<LLSidepanelInventory>("main_panel");
if (inventory_floater && inventory_panel && inventory_floater->getVisible())
@ -1913,6 +1919,23 @@ LLInventoryPanel* LLInventoryPanel::getActiveInventoryPanel(BOOL auto_open)
}
}
// <FS:Ansariel> Show folder in new window option
LLFloaterReg::const_instance_list_t& inst_list_partial = LLFloaterReg::getFloaterList("fs_partial_inventory");
for (const auto inst : inst_list_partial)
{
if (inst->getVisible())
{
S32 z_order = gFloaterView->getZOrder(inst);
if (z_order < z_min)
{
res = static_cast<FSFloaterPartialInventory*>(inst)->getInventoryPanel();
z_min = z_order;
active_inv_floaterp = inst;
}
}
}
// </FS:Ansariel>
if (res)
{
// Make sure the floater is not minimized (STORM-438).

View File

@ -1676,8 +1676,6 @@ void LLPanelFace::updateUI(bool force_set_values /*false*/)
//mMenuClipboardColor->setEnabled(editable && single_volume);
mBtnCopyFaces->setEnabled(editable && single_volume);
mBtnPasteFaces->setEnabled(editable && !mClipboardParams.emptyMap() && (mClipboardParams.has("color") || mClipboardParams.has("texture")));
LL_INFOS() << "ADBG: enabled = " << (editable && !mClipboardParams.emptyMap() && (mClipboardParams.has("color") || mClipboardParams.has("texture")) ? "true" : "false") << LL_ENDL;
// </FS>
// Set variable values for numeric expressions

View File

@ -695,17 +695,11 @@ BOOL LLPanelPeople::postBuild()
mAllFriendList = friends_tab->getChild<LLAvatarList>("avatars_all");
mOnlineFriendList->setNoItemsCommentText(getString("no_friends_online"));
mOnlineFriendList->setShowIcons("FriendsListShowIcons");
// <FS:Ansariel> Firestorm radar
//mOnlineFriendList->showPermissions("FriendsListShowPermissions");
mOnlineFriendList->showPermissions(true);
// </FS:Ansariel> Firestorm radar
mOnlineFriendList->showPermissions("FriendsListShowPermissions");
mOnlineFriendList->setShowCompleteName(!gSavedSettings.getBOOL("FriendsListHideUsernames"));
mAllFriendList->setNoItemsCommentText(getString("no_friends"));
mAllFriendList->setShowIcons("FriendsListShowIcons");
// <FS:Ansariel> Firestorm radar
//mAllFriendList->showPermissions("FriendsListShowPermissions");
mAllFriendList->showPermissions(true);
// </FS:Ansariel> Firestorm radar
mAllFriendList->showPermissions("FriendsListShowPermissions");
mAllFriendList->setShowCompleteName(!gSavedSettings.getBOOL("FriendsListHideUsernames"));
LLPanel* nearby_tab = getChild<LLPanel>(NEARBY_TAB_NAME);

View File

@ -2493,6 +2493,7 @@ BOOL LLPanelProfileFirstLife::postBuild()
mSaveChanges->setCommitCallback([this](LLUICtrl*, void*) { onSaveDescriptionChanges(); }, nullptr);
mDiscardChanges->setCommitCallback([this](LLUICtrl*, void*) { onDiscardDescriptionChanges(); }, nullptr);
mDescriptionEdit->setKeystrokeCallback([this](LLTextEditor* caller) { onSetDescriptionDirty(); });
mPicture->setMouseUpCallback([this](LLUICtrl*, S32 x, S32 y, MASK mask) { onShowPhoto(); }); // <FS:PP> Make "first life" picture clickable
return TRUE;
}
@ -2532,6 +2533,23 @@ void LLPanelProfileFirstLife::setProfileImageUploaded(const LLUUID &image_asset_
{
mPicture->setValue(image_asset_id);
mImageId = image_asset_id;
// <FS:PP> Make "first life" picture clickable
LLFloater *floater = mFloaterProfileTextureHandle.get();
if (floater)
{
LLFloaterProfileTexture * texture_view = dynamic_cast<LLFloaterProfileTexture*>(floater);
if (mImageId.notNull())
{
texture_view->loadAsset(mImageId);
}
else
{
texture_view->resetAsset();
}
}
// </FS:PP> Make "first life" picture clickable
setProfileImageUploading(false);
}
@ -2630,6 +2648,52 @@ void LLPanelProfileFirstLife::onRemovePhoto()
}
}
// <FS:PP> Make "first life" picture clickable
void LLPanelProfileFirstLife::onShowPhoto()
{
if (!getIsLoaded())
{
return;
}
LLFloater *floater = mFloaterProfileTextureHandle.get();
if (!floater)
{
LLFloater* parent_floater = gFloaterView->getParentFloater(this);
if (parent_floater)
{
LLFloaterProfileTexture * texture_view = new LLFloaterProfileTexture(parent_floater);
mFloaterProfileTextureHandle = texture_view->getHandle();
if (mImageId.notNull())
{
texture_view->loadAsset(mImageId);
}
else
{
texture_view->resetAsset();
}
texture_view->openFloater();
texture_view->setVisibleAndFrontmost(TRUE);
parent_floater->addDependentFloater(mFloaterProfileTextureHandle);
}
}
else // already open
{
LLFloaterProfileTexture * texture_view = dynamic_cast<LLFloaterProfileTexture*>(floater);
texture_view->setMinimized(FALSE);
texture_view->setVisibleAndFrontmost(TRUE);
if (mImageId.notNull())
{
texture_view->loadAsset(mImageId);
}
else
{
texture_view->resetAsset();
}
}
}
// </FS:PP> Make "first life" picture clickable
void LLPanelProfileFirstLife::onCommitPhoto(const LLUUID& id)
{
if (mImageId == id)
@ -2655,6 +2719,22 @@ void LLPanelProfileFirstLife::onCommitPhoto(const LLUUID& id)
mPicture->setValue("Generic_Person_Large");
}
// <FS:PP> Make "first life" picture clickable
LLFloater *floater = mFloaterProfileTextureHandle.get();
if (floater)
{
LLFloaterProfileTexture * texture_view = dynamic_cast<LLFloaterProfileTexture*>(floater);
if (mImageId == LLUUID::null)
{
texture_view->resetAsset();
}
else
{
texture_view->loadAsset(mImageId);
}
}
// </FS:PP> Make "first life" picture clickable
mRemovePhoto->setEnabled(mImageId.notNull());
}
else

View File

@ -341,6 +341,13 @@ protected:
std::string mCurrentDescription;
LLUUID mImageId;
bool mHasUnsavedChanges;
// <FS:PP> Make "first life" picture clickable
private:
LLHandle<LLFloater> mFloaterProfileTextureHandle;
void onShowPhoto();
// </FS:PP> Make "first life" picture clickable
};
/**

View File

@ -567,10 +567,15 @@ void LLPanelProfilePick::setAvatarId(const LLUUID& avatar_id)
{
mPickName->setEnabled(TRUE);
mPickDescription->setEnabled(TRUE);
mSetCurrentLocationButton->setVisible(TRUE);
// <FS:Zi> Make sure the "Set Location" button is only visible when viewing own picks
// mSetCurrentLocationButton->setVisible(TRUE);
childSetVisible("set_to_curr_location_btn_lp", true);
// </FS:Zi>
}
else
{
// <FS:Zi> Make sure the "Set Location" button is only visible when viewing own picks
childSetVisible("set_to_curr_location_btn_lp", false);
mSnapshotCtrl->setEnabled(FALSE);
}
}

View File

@ -563,6 +563,14 @@ void LLViewerJoystick::updateStatus()
LL_PROFILE_ZONE_SCOPED_CATEGORY_INPUT;
#if LIB_NDOF
// <FS:Zi> FIRE-32004 - fix crash when opening joystick config and the device structure
// is not yet initialized or missing the necessary data inside
if (!mNdofDev || !mNdofDev->private_data)
{
return;
}
// </FS:Zi>
ndof_update(mNdofDev);
// <FS:Zi> FIRE-14344 - Add button preview and allow for more than 6 axes

View File

@ -5546,6 +5546,10 @@ Welche Bezeichnung soll für die Region
Bitte geben Sie einen gültigen Wert für die Zeitspanne ein!
<usetemplate name="okbutton" yestext="OK"/>
</notification>
<notification name="PickLimitReached">
Neue Auswahl kann nicht erstellt werden, da bereits die maximale Anzahl an Auswahlen erstellt wurde.
<usetemplate name="okbutton" yestext="OK"/>
</notification>
<notification name="GlobalOnlineStatusToggle">
Abhängig von der Serverauslastung kann es einen Moment dauern, bis das Umschalten der Sichtbarkeit des Online-Status effektiv wird.
<usetemplate ignoretext="Weise mich darauf hin, dass das Umschalten der Sichtbarkeit des Online-Status etwas dauern kann." name="okignore" yestext="OK"/>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Profil" name="panel_profile_firstlife">
<string name="texture_picker_label" value="Foto 1. Leben"/>
<button name="fl_upload_image" label="Foto hochladen"/>
<button name="fl_change_image" label="Foto ändern"/>
<button name="fl_remove_image" label="Foto entfernen"/>

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Interessen" name="panel_profile_interests">
<text name="I Want To:">
Ich möchte:
</text>
<check_box label="Erstellen" name="chk0"/>
<check_box label="Erkunden" name="chk1"/>
<check_box label="Treffen" name="chk2"/>
<check_box label="Angestellt werden" name="chk6"/>
<check_box label="Gruppe" name="chk3"/>
<check_box label="Kaufen" name="chk4"/>
<check_box label="Verkaufen" name="chk5"/>
<check_box label="Anstellen" name="chk7"/>
<line_editor name="want_to_edit">
(wird geladen...)
</line_editor>
<text name="Skills:">
Fähigkeiten:
</text>
<check_box label="Texturen" name="schk0"/>
<check_box label="Architektur" name="schk1"/>
<check_box label="Modellierung" name="schk3"/>
<check_box label="Eventplanung" name="schk2"/>
<check_box label="Scripting" name="schk4"/>
<check_box label="Benutzerdefinierte Charaktere" name="schk5"/>
<line_editor name="skills_edit">
(wird geladen...)
</line_editor>
<text name="Languages:">
Sprachen:
</text>
<line_editor name="languages_edit">
(wird geladen...)
</line_editor>
</panel>

View File

@ -2,13 +2,13 @@
<floater
name="avatarinfo"
height="510"
width="460"
width="485"
layout="topleft"
can_close="true"
can_resize="true"
help_topic="panel_my_profile_tab"
min_height="510"
min_width="455"
min_width="480"
positioning="centered"
save_rect="true"
title="Profile"
@ -18,7 +18,7 @@
top="0"
left="0"
height="500"
width="455"
width="480"
follows="all"
class="panel_profile"
>
@ -27,7 +27,7 @@
top_pad="5"
left="0"
height="500"
width="455"
width="480"
follows="all"
layout="topleft"
halign="center"

View File

@ -99,6 +99,9 @@
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="kick"/>
<menu_item_call.on_visible
function="Profile.EnableItem"
parameter="kick"/>
</menu_item_call>
<menu_item_call
label="Freeze"
@ -110,6 +113,9 @@
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="freeze"/>
<menu_item_call.on_visible
function="Profile.EnableItem"
parameter="freeze"/>
</menu_item_call>
<menu_item_call
label="Unfreeze"
@ -121,6 +127,9 @@
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="unfreeze"/>
<menu_item_call.on_visible
function="Profile.EnableItem"
parameter="unfreeze"/>
</menu_item_call>
<menu_item_call
label="CSR"
@ -132,6 +141,9 @@
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="csr"/>
<menu_item_call.on_visible
function="Profile.EnableItem"
parameter="csr"/>
</menu_item_call>
<menu_item_call
label="Report"

View File

@ -1552,7 +1552,7 @@ Delete pick &lt;nolink&gt;[PICK]&lt;/nolink&gt;?
icon="alert.tga"
name="ProfileUnsavedChanges"
type="alert">
You have usaved changes.
You have unsaved changes.
<tag>confirm</tag>
<tag>save</tag>
<usetemplate
@ -13542,6 +13542,18 @@ the region &quot;[REGION]&quot;?
name="okbutton"
yestext="OK"/>
</notification>
<notification
name="PickLimitReached"
label=""
type="alertmodal">
<unique/>
<tag>fail</tag>
<tag>confirm</tag>
Can't create another pick because the maximum number of picks have been created already.
<usetemplate
name="okbutton"
yestext="OK"/>
</notification>
<notification
icon="alertmodal.tga"
name="GlobalOnlineStatusToggle"

View File

@ -9,6 +9,11 @@
follows="all"
layout="topleft"
>
<string
name="texture_picker_label"
value="1st Life Picture"
/>
<loading_indicator
name="progress_indicator"
top="5"
@ -21,13 +26,14 @@
/>
<icon
name="real_world_pic"
interactable="true"
image_name="Generic_Person_Large"
follows="top|left"
layout="topleft"
top="10"
left="8"
height="160"
width="160"/>
height="200"
width="200"/>
<loading_indicator
name="image_upload_indicator"
top="79"
@ -40,8 +46,8 @@
<button
name="fl_upload_image"
label="Upload Photo"
top="102"
left="175"
top="80"
left="285"
height="20"
width="120"
follows="top|left"
@ -50,7 +56,7 @@
name="fl_change_image"
label="Change Photo"
top_pad="5"
left="175"
left="285"
height="20"
width="120"
follows="top|left"
@ -68,7 +74,7 @@
name="fl_description_edit"
trusted_content="false"
enabled="false"
top="180"
top="220"
left="6"
right="-6"
height="224"

View File

@ -36,8 +36,8 @@
name="pick_snapshot"
top="10"
left="10"
height="161"
width="260"
height="179"
width="290"
follows="left|top"
layout="topleft"
fallback_image="default_land_picture.j2c"
@ -70,7 +70,7 @@
/>
<text
name="description_label"
top_pad="10"
top_pad="5"
left="10"
height="15"
width="280"
@ -91,7 +91,7 @@
enabled="false"
top_pad="2"
left="10"
height="45"
height="35"
width="290"
follows="all"
layout="topleft"

View File

@ -2507,8 +2507,8 @@ If you continue to experience problems, please check your network and firewall s
<string name="MembershipPremiumText">My Premium membership</string>
<!-- Question strings for delete items notifications -->
<string name="DeleteItems">Delete selected [COUNT_SELECTION] items ([COUNT_TOTAL]] total)?</string>
<string name="DeleteItem">Delete selected item ([COUNT_TOTAL]] total)?</string>
<string name="DeleteItems">Delete selected [COUNT_SELECTION] items ([COUNT_TOTAL] total)?</string>
<string name="DeleteItem">Delete selected item ([COUNT_TOTAL] total)?</string>
<string name="EmptyOutfitText">There are no items in this outfit</string>

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Intereses" name="panel_profile_interests">
<text name="I Want To:">
Quiero:
</text>
<check_box label="Construye" name="chk0"/>
<check_box label="Explora" name="chk1"/>
<check_box label="Conoce" name="chk2"/>
<check_box label="Encuentra empleo" name="chk6"/>
<check_box label="Agrupa" name="chk3"/>
<check_box label="Compra" name="chk4"/>
<check_box label="Vende" name="chk5"/>
<check_box label="Contrata" name="chk7"/>
<line_editor name="want_to_edit">
(cargando...)
</line_editor>
<text name="Skills:">
Habilidades:
</text>
<check_box label="Texturas" name="schk0"/>
<check_box label="Arquitectura" name="schk1"/>
<check_box label="Modelo" name="schk3"/>
<check_box label="Planificación de eventos" name="schk2"/>
<check_box label="Preparación de scripts" name="schk4"/>
<check_box label="Personajes personalizados" name="schk5"/>
<line_editor name="skills_edit">
(cargando...)
</line_editor>
<text name="Languages:">
Idiomas:
</text>
<line_editor name="languages_edit">
(cargando...)
</line_editor>
</panel>

View File

@ -6,23 +6,28 @@
<floater.string name="Copy">
Copier dans l&apos;inventaire
</floater.string>
<layout_stack name="preview_stack">
<layout_panel name="texture_panel">
<text name="desc txt">
Description :
</text>
<text name="dimensions">
[WIDTH]px x [HEIGHT]px
</text>
<text name="aspect_ratio">
Rapport d&apos;aspect fixe
</text>
<combo_box name="combo_aspect_ratio" tool_tip="Prévisualiser avec un rapport d&apos;aspect fixe"/>
</layout_panel>
<layout_panel name="buttons_panel">
<button label="OK" name="Keep"/>
<button label="Jeter" name="Discard"/>
<button label="Enregistrer sous" name="save_tex_btn"/>
</layout_panel>
</layout_stack>
<floater.string name="DateTime">
[weekday, datetime, slt], [day, datetime, slt] [month, datetime, slt] [year, datetime, slt], [hour24, datetime, slt]:[min, datetime, slt]:[second, datetime, slt] [timezone, datetime, slt]
</floater.string>
<floater.string name="UploaderDateTime">
Publiée par [UPLOADER] : [DATE_TIME]
</floater.string>
<text name="desc txt">
Description :
</text>
<button label="Profil" name="openprofile"/>
<panel name="dimensions_panel">
<button name="copyuuid" tool_tip="Copie de l'UUID dans le presse-papiers"/>
<text name="aspect_ratio">
Ratio d&apos;aspect fixe
</text>
<combo_box name="combo_aspect_ratio" tool_tip="Prévisualiser avec un ratio d&apos;aspect fixe"/>
</panel>
<panel name="button_panel">
<button label="Abandon" name="Discard"/>
<flyout_button label="Enregistrer..." name="save_tex_btn">
<flyout_button.item label="Enreg. en TGA" name="save_item_tga"/>
<flyout_button.item label="Enreg. en PNG" name="save_item_png"/>
</flyout_button>
</panel>
</floater>

View File

@ -3,14 +3,11 @@
<panel name="panel_profile_view">
<tab_container name="panel_profile_tabs">
<panel label="Vie SL" name="panel_profile_secondlife"/>
<panel label="Feed" name="panel_profile_web"/>
<panel label="Intérêts" name="panel_profile_interests"/>
<panel label="Flux" name="panel_profile_web"/>
<panel label="Favoris" name="panel_profile_picks"/>
<panel label="Annonces" name="panel_profile_classifieds"/>
<panel label="Vie RL" name="panel_profile_firstlife"/>
<panel label="Notes" name="panel_profile_notes"/>
</tab_container>
<button label="OK" name="ok_btn" tool_tip="Enregistrer les changements apportés au profil et fermer"/>
<button label="Annuler" label_selected="Annuler" name="cancel_btn"/>
</panel>
</floater>

View File

@ -2,16 +2,13 @@
<floater name="Snapshot" title="Photos">
<floater.string name="unknown">inconnu</floater.string>
<string name="postcard_progress_str">Envoi par mail</string>
<string name="facebook_progress_str">Publication sur Facebook</string>
<string name="profile_progress_str">Publication</string>
<string name="profile_progress_str">Publication en cours</string>
<string name="inventory_progress_str">Enregistrement dans l'inventaire</string>
<string name="local_progress_str">Enregistrement sur le disque</string>
<string name="facebook_succeeded_str">Image envoyée</string>
<string name="profile_succeeded_str">Image uploadée</string>
<string name="postcard_succeeded_str">Mail envoyé !</string>
<string name="inventory_succeeded_str">Enregistré dans l'inventaire !</string>
<string name="local_succeeded_str">Enregistré sur le disque !</string>
<string name="facebook_failed_str">Erreur lors de l'envoi de votre image sur votre Timeline Facebook.</string>
<string name="profile_failed_str">Erreur lors de l'envoi de l'image sur le flux de votre profil.</string>
<string name="postcard_failed_str">Erreur lors de l'envoi du mail.</string>
<string name="inventory_failed_str">Erreur lors de l'enregistrement dans l'inventaire.</string>
@ -20,7 +17,7 @@
<button label="Actualiser" name="new_snapshot_btn"/>
<panel name="advanced_options_panel">
<text name="layer_type_label">Capturer :</text>
<combo_box label="Qualité de l'image" name="layer_types">
<combo_box label="Type d'image" name="layer_types">
<combo_box.item label="Couleurs" name="Colors"/>
<combo_box.item label="Profondeur" name="Depth"/>
<combo_box.item label="Profondeur (24 bits)" name="Depth24"/>
@ -31,90 +28,21 @@
<check_box label="Figer l'écran (plein écran)" name="freeze_frame_check"/>
<check_box label="Actualisation automatique" name="auto_snapshot_check"/>
<text name="filter_list_label">Filtre :</text>
<combo_box name="filters_combobox" tool_tip="Filtres pour l'image"><combo_box.item label="Pas de filtre" name="NoFilter"/></combo_box>
<combo_box name="filters_combobox" tool_tip="Filtres pour l'image">
<combo_box.item label="Pas de filtre" name="NoFilter"/>
</combo_box>
</panel>
<panel name="succeeded_panel">
<text name="succeeded_lbl">Réussi</text>
</panel>
<panel name="failed_panel">
<text name="failed_lbl">Erreur</text>
<text name="failed_lbl">Échec</text>
</panel>
<text name="working_lbl">En cours</text>
<text name="refresh_lbl">Actualisez pour sauvegarder.</text>
</view>
<text name="image_res_text">[WIDTH]px (Largeur) x [HEIGHT]px (Hauteur)</text>
<text name="file_size_label">[SIZE] Ko</text>
<floater name="Snapshot" title="PHOTO">
<floater.string name="unknown">
inconnu
</floater.string>
<string name="postcard_progress_str">
Envoi par e-mail
</string>
<string name="facebook_progress_str">
Publication sur Facebook
</string>
<string name="profile_progress_str">
Publication
</string>
<string name="inventory_progress_str">
Enregistrement dans l&apos;inventaire
</string>
<string name="local_progress_str">
Enregistrement sur l&apos;ordinateur
</string>
<string name="facebook_succeeded_str">
Image chargée
</string>
<string name="profile_succeeded_str">
Image chargée
</string>
<string name="postcard_succeeded_str">
Envoi par e-mail effectué !
</string>
<string name="inventory_succeeded_str">
Enregistrement dans l&apos;inventaire effectué !
</string>
<string name="local_succeeded_str">
Enregistrement sur l&apos;ordinateur effectué !
</string>
<string name="facebook_failed_str">
Échec de chargement de l&apos;image dans votre journal Facebook.
</string>
<string name="profile_failed_str">
Échec de chargement de l&apos;image sur le flux de votre profil.
</string>
<string name="postcard_failed_str">
Échec d&apos;envoi par e-mail.
</string>
<string name="inventory_failed_str">
Échec d&apos;enregistrement dans l&apos;inventaire.
</string>
<string name="local_failed_str">
Échec d&apos;enregistrement sur l&apos;ordinateur.
</string>
<button label="ACTUALISER" name="new_snapshot_btn"/>
<panel name="advanced_options_panel">
<text name="layer_type_label">
Capturer :
</text>
<combo_box label="Couches d&apos;images" name="layer_types">
<combo_box.item label="Couleurs" name="Colors"/>
<combo_box.item label="Profondeur" name="Depth"/>
</combo_box>
<check_box label="Interface" name="ui_check"/>
<check_box label="HUD" name="hud_check"/>
<check_box label="Arrêt sur image (plein écran)" name="freeze_frame_check"/>
<check_box label="Actualisation automatique" name="auto_snapshot_check"/>
<text name="filter_list_label">
Filtre :
</text>
<combo_box name="filters_combobox" tool_tip="Filtres d&apos;image">
<combo_box.item label="Aucun filtre" name="NoFilter"/>
</combo_box>
</panel>
<text name="image_res_text">
[WIDTH] px (largeur) x [HEIGHT] px (hauteur)
[WIDTH]px (Largeur) x [HEIGHT]px (Hauteur)
</text>
<text name="file_size_label">
[SIZE] Ko

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Image Actions">
<menu_item_call label="Charger une photo" name="upload_photo" />
<menu_item_call label="Changer la photo" name="change_photo" />
<menu_item_call label="Supprimer la photo" name="remove_photo" />
</toggleable_menu>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Copier le nom d'affichage" name="copy_display" />
<menu_item_call label="Copier le nom" name="copy_name" />
<menu_item_call label="Copier l'UUID" name="copy_id" />
<menu_item_call label="Copier l'URI" name="copy_uri" />
</toggleable_menu>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="profile_overflow_menu">
<!-- <menu_item_call label="Carte" name="show_on_map" />
<menu_item_call label="Payer" name="pay" /> -->
<menu_item_call label="Partager" name="share" />
<menu_item_call label="Appeler" name="call" />
<!-- <menu_item_check label="Bloquer/Débloquer" name="block_unblock" /> -->
<menu_item_call label="Ajouter à la liste de contacts" name="add_to_contact_set" />
<menu_item_call label="Copier le nom" name="copy_name_to_clipboard" />
<menu_item_call label="Copier l'URI" name="copy_uri_to_clipboard" />
<menu_item_call label="Copier l'UUID" name="copy_key_to_clipboard" />
<menu_item_call label="Éjecter" name="kick" />
<menu_item_call label="Immobiliser" name="freeze" />
<menu_item_call label="Désimmobiliser" name="unfreeze" />
<menu_item_call label="CSR" name="csr" />
<menu_item_call label="Signaler" name="report" />
</toggleable_menu>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Menu">
<menu_item_call label="Message IM" name="im" />
<menu_item_call label="Proposer une téléportation" name="offer_teleport" />
<menu_item_call label="Demander une téléportation" name="request_teleport" />
<menu_item_call label="Appel vocal" name="voice_call" />
<menu_item_call label="Journaux de discussion..." name="chat_history" />
<menu_item_call label="Ajouter aux amis" name="add_friend" />
<menu_item_call label="Supprimer un ami" name="remove_friend" />
<menu_item_call label="Inviter au groupe..." name="invite_to_group" />
<menu_item_call label="Permissions" name="agent_permissions" />
<menu_item_call label="Carte" name="map" />
<menu_item_call label="Partager" name="share" />
<menu_item_call label="Payer" name="pay" />
<menu_item_check label="Bloquer/Débloquer" name="block_unblock" />
<menu_item_call label="Copier le nom d'affichage" name="copy_display_name" />
<menu_item_call label="Copier le nom" name="copy_name" />
<menu_item_call label="Copier l'UUID" name="copy_id" />
</toggleable_menu>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Menu Self">
<menu_item_call label="Modifier le nom d'affichage" name="edit_display_name" />
<menu_item_call label="Changer de partenaire" name="edit_partner" />
<menu_item_call label="Charger une photo" name="upload_photo" />
<menu_item_call label="Changer de photo" name="change_photo" />
<menu_item_call label="Supprimer la photo" name="remove_photo" />
<menu_item_call label="Copier le nom d'affichage" name="copy_display_name" />
<menu_item_call label="Copier le nom" name="copy_name" />
<menu_item_call label="Copier l'UUID" name="copy_id" />
</toggleable_menu>

View File

@ -2955,9 +2955,6 @@ Veuillez sélectionner un terrain plus petit.
<notification name="SystemMessage">
[MESSAGE]
</notification>
<notification name="FacebookConnect">
[MESSAGE]
</notification>
<notification name="FlickrConnect">
[MESSAGE]
</notification>

View File

@ -1,12 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel name="block_list_panel">
<panel label="bottom_panel" name="blocked_buttons_panel">
<panel name="blocked_buttons_panel">
<filter_editor label="Filtrer" name="blocked_filter_input"/>
<menu_button name="blocked_gear_btn" tool_tip="Actions sur la personne ou l'objet sélectionné"/>
<menu_button name="view_btn" tool_tip="Options de tri"/>
<menu_button name="plus_btn" tool_tip="Sélectionnez un résident ou un objet à ignorer"/>
<button name="unblock_btn" tool_tip="Supprimer le résident ou l'objet des éléments ignorés"/>
<menu_button name="plus_btn" tool_tip="Sélectionnez un résident ou un objet à bloquer"/>
<button name="unblock_btn" tool_tip="Supprimer le résident ou l'objet des éléments bloqués"/>
</panel>
<text name="block_limit">
Bloqué(e)s : [COUNT] ([LIMIT] max.)
</text>
<fs_scroll_list name="block_list">
<fs_scroll_list.columns name="item_name" label="Nom"/>
<fs_scroll_list.columns name="item_type" label="Type"/>

View File

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel name="group_list_item">
<text name="group_name" value="Inconnu"/>
<button name="visibility_hide_btn" tool_tip="Masquer le groupe sur mon profil"/>
<button name="visibility_show_btn" tool_tip="Afficher le groupe sur mon profil"/>
<button name="info_btn" tool_tip="En savoir plus"/>
<button name="profile_btn" tool_tip="Voir le profil"/>
</panel>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Side tray panel -->
<panel label="Résidents" name="people_panel">
<string name="no_recent_people" value="Personne de récent. Pour rechercher des résidents avec qui passer du temps, voir [secondlife:///app/search/people Rechercher] ou [secondlife:///app/worldmap Carte du monde]."/>
<string name="no_recent_people" value="Personne ne s'est manifesté récemment."/>
<string name="no_filtered_recent_people" value="Vous n&apos;avez pas trouvé ce que vous cherchiez ? Essayez [secondlife:///app/search/people/[SEARCH_TERM] Rechercher]."/>
<string name="no_one_near" value="Personne près de vous. Pour rechercher des résidents avec qui passer du temps, voir [secondlife:///app/search/people Rechercher] ou [secondlife:///app/worldmap Carte du monde]."/>
<string name="no_one_filtered_near" value="Vous n&apos;avez pas trouvé ce que vous cherchiez ? Essayez [secondlife:///app/search/people/[SEARCH_TERM] Rechercher]."/>
@ -19,32 +19,52 @@ Pour rechercher des résidents avec qui passer du temps, utilisez [secondlife://
<string name="MiniMapToolTipMsg" value="[REGION](Carte : double-clic ; Panoramique : Maj + faire glisser)"/>
<string name="AltMiniMapToolTipMsg" value="[REGION](Téléportation : double-clic ; Panoramique : Maj + faire glisser)"/>
<string name="GroupCountWithInfo" value="Vous appartenez à [COUNT] groupes, et pouvez en rejoindre [REMAINING] autres. [secondlife:/// Vous en voulez plus ?]"/>
<panel.string name="empty_list">
Ce cercle est vide.
</panel.string>
<panel.string name="no_sets">
Pas de cercles
</panel.string>
<panel.string name="all_sets">
Tous les cercles
</panel.string>
<panel.string name="pseudonyms">
Alias
</panel.string>
<panel.string name="AllFriendsTitle">
Tous ([ALL])
</panel.string>
<panel.string name="OnlineFriendsTitle">
En ligne ([ONLINE])
</panel.string>
<tab_container name="tabs">
<panel label="PRÈS DE VOUS" name="nearby_panel">
<panel label="bottom_panel" name="nearby_buttons_panel">
<panel label="Prés de vous" name="nearby_panel">
<!-- FS:Ansariel: Firestorm radar
<panel name="nearby_buttons_panel">
<filter_editor label="Filtrer les personnes" name="nearby_filter_input"/>
<button name="gear_btn" tool_tip="Actions sur la personne sélectionnée"/>
<menu_button name="nearby_view_btn" tool_tip="Options d&apos;affichage/de tri"/>
<button name="add_friend_btn" tool_tip="Proposer à ce résident de devenir votre ami"/>
<dnd_button name="nearby_del_btn" tool_tip="Supprimer la personne sélectionnée des amis"/>
</panel>
-->
</panel>
<panel label="AMIS" name="friends_panel">
<panel label="bottom_panel" name="friends_buttons_panel">
<panel label="Amis" name="friends_panel">
<panel name="friends_buttons_panel">
<filter_editor label="Filtrer les personnes" name="friends_filter_input"/>
<button name="gear_btn" tool_tip="Actions sur la personne sélectionnée"/>
<menu_button name="friends_view_btn" tool_tip="Options d&apos;affichage/de tri"/>
<button name="friends_add_btn" tool_tip="Proposer à ce résident de devenir votre ami"/>
<button name="GlobalOnlineStatusToggle" tool_tip="Basculer la visibilité du statut global de présence ligne"/>
<dnd_button name="friends_del_btn" tool_tip="Supprimer la personne sélectionnée des amis"/>
</panel>
<accordion name="friends_accordion">
<accordion_tab name="tab_online" title="En ligne"/>
<accordion_tab name="tab_all" title="Tout"/>
<accordion_tab name="tab_suggested_friends" title="Personnes avec lesquelles vous aimeriez peut-être devenir ami(e)"/>
</accordion>
<tab_container name="friends_accordion">
<panel name="tab_online" title="En ligne"/>
<panel name="tab_all" title="Tout"/>
</tab_container>
</panel>
<panel label="GROUPES" name="groups_panel">
<panel label="bottom_panel" name="groups_buttons_panel">
<panel label="Groupes" name="groups_panel">
<panel name="groups_buttons_panel">
<filter_editor label="Filtrer les groupes" name="groups_filter_input"/>
<menu_button name="groups_gear_btn" tool_tip="Actions sur le groupe sélectionné"/>
<menu_button name="groups_view_btn" tool_tip="Options d&apos;affichage/de tri"/>
@ -55,8 +75,8 @@ Pour rechercher des résidents avec qui passer du temps, utilisez [secondlife://
Vous appartenez à [COUNT] groupes, et pouvez en rejoindre [REMAINING] autres.
</text>
</panel>
<panel label="RÉCENT" name="recent_panel">
<panel label="bottom_panel" name="recent_buttons_panel">
<panel label="Récent" name="recent_panel">
<panel name="recent_buttons_panel">
<filter_editor label="Filtrer les personnes" name="recent_filter_input"/>
<button name="gear_btn" tool_tip="Actions sur la personne sélectionnée"/>
<menu_button name="recent_view_btn" tool_tip="Options d&apos;affichage/de tri"/>
@ -64,8 +84,11 @@ Pour rechercher des résidents avec qui passer du temps, utilisez [secondlife://
<dnd_button name="recent_del_btn" tool_tip="Supprimer la personne sélectionnée des amis"/>
</panel>
</panel>
<panel label="BLOQUÉ" name="blocked_panel">
<panel label="Bloqué" name="blocked_panel">
<panel label="Résidents et objets ignorés" name="panel_block_list_sidetray"/>
</panel>
<panel label="Cercles" name="contact_sets_panel">
<panel name="panel_people_contacts_sidetray" label="Cercles de contacts"/>
</panel>
</tab_container>
</panel>

View File

@ -104,7 +104,7 @@
<text name="area_search_beacon_color_label">Couleur de la balise de recherche zonière : </text>
<color_swatch name="area_search_beacon_color" tool_tip="Choix de la couleur de la balise de recherche zonière"/>
<text name="notecard_editor_color_label">
Couleurs de la notice :
Couleurs des notices :
</text>
<text name="notecard_editor_writable_text_color_label">
Texte:

View File

@ -30,81 +30,77 @@
<string name="save_label">
Enregistrer
</string>
<scroll_container name="profile_scroll">
<panel name="info_scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Cliquer pour sélectionner une image"/>
<layout_stack name="info_panel">
<layout_panel name="main_info_panel">
<text_editor name="classified_name">
[name]
</text_editor>
<text name="classified_location_label" value="Endroit :"/>
<text_editor name="classified_location" value="[loading...]"/>
<text name="content_type_label" value="Type de contenu :"/>
<text_editor name="content_type" value="[content type]"/>
<text name="category_label" value="Catégorie :"/>
<text_editor name="category" value="[category]"/>
<text name="creation_date_label" value="Date de création :"/>
<text_editor name="creation_date" tool_tip="Date de création" value="[date]"/>
<text name="price_for_listing_label" value="Coût de l&apos;annonce :"/>
<text_editor name="price_for_listing" tool_tip="Coût de lannonce.">
[PRICE]
</text_editor>
<layout_stack name="main_classifieds_stack">
<layout_panel name="scroll_layout_panel">
<scroll_container name="profile_scroll">
<panel name="info_scroll_content_panel">
<icon name="edit_icon" tool_tip="Cliquer pour sélectionner une image"/>
<layout_stack name="info_panel">
<layout_panel name="main_info_panel">
<text name="classified_location_label" value="Endroit :"/>
<text name="content_type_label" value="Type de contenu :"/>
<text name="category_label" value="Catégorie :"/>
<text name="creation_date_label" value="Date de création :"/>
<text_editor name="creation_date" tool_tip="Date de création"/>
<text name="price_for_listing_label" value="Coût de l&apos;annonce :"/>
<text_editor name="price_for_listing" tool_tip="Coût de lannonce."/>
</layout_panel>
<layout_panel name="clickthrough_layout_panel">
<text name="click_through_label" value="Clics :"/>
<text_editor name="click_through_text" tool_tip="Parcourir les données en cliquant"/>
</layout_panel>
<layout_panel name="auto_renew_layout_panel">
<text name="auto_renew_label" value="Renouv. auto :"/>
<text name="auto_renew" value="Activé"/>
</layout_panel>
<layout_panel name="descr_layout_panel">
<text name="classified_desc_label" value="Description :"/>
</layout_panel>
</layout_stack>
<panel name="edit_panel">
<text name="Name:">
Titre :
</text>
<text name="description_label">
Description :
</text>
<text name="location_label">
Endroit :
</text>
<text name="classified_location_edit">
en cours de chargement...
</text>
<button label="Définir sur lemplacement actuel" name="set_to_curr_location_btn"/>
<text name="category_label" value="Catégorie :"/>
<text name="content_type_label" value="Type de contenu :"/>
<icons_combo_box label="Contenu Général" name="content_type_edit">
<icons_combo_box.item label="Contenu Modéré" name="mature_ci"/>
<icons_combo_box.item label="Contenu Général" name="pg_ci"/>
</icons_combo_box>
<check_box label="Renouvellement auto toutes les semaines" name="auto_renew_edit"/>
</panel>
</panel>
</scroll_container>
</layout_panel>
<layout_panel name="util_buttons_lp">
<layout_stack name="util_buttons_stack">
<layout_panel name="teleport_btn_lp">
<button label="Téléportation" name="teleport_btn"/>
</layout_panel>
<layout_panel name="clickthrough_layout_panel">
<text name="click_through_label" value="Clics :"/>
<text_editor name="click_through_text" tool_tip="Parcourir les données en cliquant" value="[clicks]"/>
<layout_panel name="map_btn_lp">
<button label="Carte" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="auto_renew_layout_panel">
<text name="auto_renew_label" value="Renouv. auto :"/>
<text name="auto_renew" value="Activé"/>
</layout_panel>
<layout_panel name="descr_layout_panel">
<text name="classified_desc_label" value="Description :"/>
<text_editor name="classified_desc" value="[description]"/>
<layout_panel name="edit_btn_lp">
<button label="Modifier" name="edit_btn"/>
</layout_panel>
</layout_stack>
<panel name="edit_panel">
<text name="Name:">
Titre :
</text>
<text name="description_label">
Description :
</text>
<text name="location_label">
Endroit :
</text>
<text name="classified_location_edit">
en cours de chargement...
</text>
<button label="Définir sur lemplacement actuel" name="set_to_curr_location_btn"/>
<text name="category_label" value="Catégorie :"/>
<text name="content_type_label" value="Type de contenu :"/>
<icons_combo_box label="Contenu Général" name="content_type_edit">
<icons_combo_box.item label="Contenu Modéré" name="mature_ci" value="Adulte"/>
<icons_combo_box.item label="Contenu Général" name="pg_ci" value="PG"/>
</icons_combo_box>
<check_box label="Renouvellement auto toutes les semaines" name="auto_renew_edit"/>
<text name="price_for_listing_edit_label" value="Coût de l&apos;annonce :"/>
<spinner label="L$" name="price_for_listing_edit" tool_tip="Coût de lannonce." value="50"/>
</panel>
</panel>
</scroll_container>
<layout_stack name="edit_btns_pnl">
<layout_panel name="teleport_btn_lp">
<button label="Téléportation" name="teleport_btn"/>
</layout_panel>
<layout_panel name="map_btn_lp">
<button label="Carte" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Modifier" name="edit_btn"/>
</layout_panel>
<layout_panel name="save_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="Annuler" name="cancel_btn"/>
<layout_panel name="publish_layout_panel">
<layout_stack name="publish_stack">
<layout_panel name="cancel_btn_lp">
<button label="Annuler" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</panel>

View File

@ -1,9 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Petite annonce" name="panel_profile_classifieds">
<panel name="panel_profile_classifieds" label="Petite annonce">
<string name="no_classifieds" value="Pas de petites annonces"/>
<button label="Nouveau..." name="new_btn"/>
<button label="Supprimer..." name="delete_btn"/>
<text name="classifieds_panel_text">
En cours de chargement...
</text>
<layout_stack name="main_stack">
<layout_panel name="buttons_header">
<button name="new_btn" label="Nouvelle..." tool_tip="Créer une nouvelle petite annonce à l'emplacement actuel"/>
<button name="delete_btn" label="Supprimer..." tool_tip="Supprime la petite annonce sélectionnée"/>
</layout_panel>
<layout_panel name="main_body">
<text name="classifieds_panel_text">
En cours de chargement...
</text>
</layout_panel>
</layout_stack>
</panel>

View File

@ -1,2 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Profil" name="panel_profile_firstlife"/>
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_profile_firstlife" label="Profil">
<string name="texture_picker_label" value="Photo RL" />
<button name="fl_upload_image" label="Charger une image" />
<button name="fl_change_image" label="Changer l'image" />
<button name="fl_remove_image" label="Supprimer l'image" />
<button name="fl_save_changes" label="Enregistrer" />
<button name="fl_discard_changes" label="Annuler" />
</panel>

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Centres d&apos;intérêt" name="panel_profile_interests">
<text name="I Want To:">
Je veux :
</text>
<check_box label="Construire" name="chk0"/>
<check_box label="Explorer" name="chk1"/>
<check_box label="Rencontrer" name="chk2"/>
<check_box label="Être recruté" name="chk6"/>
<check_box label="Grouper" name="chk3"/>
<check_box label="Acheter" name="chk4"/>
<check_box label="Vendre" name="chk5"/>
<check_box label="Louer" name="chk7"/>
<line_editor name="want_to_edit">
(en cours de chargement...)
</line_editor>
<text name="Skills:">
Compétences :
</text>
<check_box label="Textures" name="schk0"/>
<check_box label="Architecture" name="schk1"/>
<check_box label="Modèle" name="schk3"/>
<check_box label="Planification des événements" name="schk2"/>
<check_box label="Langage de scripts" name="schk4"/>
<check_box label="Personnages personnalisés" name="schk5"/>
<line_editor name="skills_edit">
(en cours de chargement...)
</line_editor>
<text name="Languages:">
Langues :
</text>
<line_editor name="languages_edit">
(en cours de chargement...)
</line_editor>
</panel>

View File

@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Notes &amp; respect de la vie privée" name="panel_notes">
<text name="status_message" value="Notes personnelles sur cet avatar:"/>
<text name="status_message2" value="Autoriser cet avatar à :"/>
<check_box label="Voir quand je suis en ligne" name="status_check"/>
<check_box label="Me trouver sur la carte du monde" name="map_check"/>
<check_box label="Modifier, supprimer ou prendre mes objets" name="objects_check"/>
<text name="status_message" value="Prenez des notes sur cette personne ici. Personne d'autre ne peut voir vos notes."/>
<button name="notes_save_changes" label="Enregistrer" />
<button name="notes_discard_changes" label="Annuler" />
</panel>

View File

@ -3,11 +3,46 @@
<panel.string name="location_notice">
(mise à jour après enregistrement)
</panel.string>
<line_editor name="pick_location">
En cours de chargement...
</line_editor>
<button label="Téléportation" name="teleport_btn"/>
<button label="Voir sur la carte" name="show_on_map_btn"/>
<button label="Définir l&apos;emplacement" name="set_to_curr_location_btn" tool_tip="Définir sur lemplacement actuel"/>
<button label="Enregistrer les favoris" name="save_changes_btn"/>
<layout_stack name="main_pick_stack">
<layout_panel name="main_pick_lp">
<text name="title_label">
Nom :
</text>
<text name="description_label">
Description :
</text>
<text name="location_label">
Lieu :
</text>
<line_editor name="pick_location">
Chargement en cours...
</line_editor>
</layout_panel>
<layout_panel name="actions_lp">
<layout_stack name="actions_stack">
<layout_panel name="map_btn_lp">
<button name="show_on_map_btn" label="Montrer sur carte" />
</layout_panel>
<layout_panel name="tp_btn_lp">
<button name="teleport_btn" label="Téléportation" />
</layout_panel>
<layout_panel name="set_to_curr_location_btn_lp">
<button name="set_to_curr_location_btn" label="Définir le lieu" tool_tip="Régler sur l'emplacement actuel" />
</layout_panel>
</layout_stack>
</layout_panel>
<layout_panel name="save_changes_lp">
<layout_stack name="save_changes_stack">
<layout_panel name="create_btn_lp">
<button name="create_changes_btn" label="Créer un lieu" />
</layout_panel>
<layout_panel name="save_btn_lp">
<button name="save_changes_btn" label="Enregistrer le lieu" />
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button name="cancel_changes_btn" label="Annuler" />
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</panel>

View File

@ -1,12 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Favoris" name="panel_picks">
<string name="no_picks" value="Pas de favoris"/>
<text name="Tell everyone about your favorite places in Second Life.">
Faites connaître aux autres résidents vos endroits favoris dans [GRID].
</text>
<button label="Nouveau..." name="new_btn"/>
<button label="Supprimer..." name="delete_btn"/>
<text name="picks_panel_text">
En cours de chargement...
</text>
<layout_stack name="main_stack">
<layout_panel name="buttons_header">
<text name="header_text">
Faites connaître aux autres résidents vos endroits favoris dans [GRID].
</text>
<button label="Nouveau..." name="new_btn"/>
<button label="Supprimer..." name="delete_btn"/>
</layout_panel>
<layout_panel name="main_body">
<text name="picks_panel_text">
En cours de chargement...
</text>
</layout_panel>
</layout_stack>
</panel>

View File

@ -6,53 +6,44 @@
<string name="status_offline">
Déconnecté
</string>
<string name="payment_update_link_url">
http://www.secondlife.com/account/billing.php?lang=en
</string>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=en
</string>
<string name="my_account_link_url" value="http://secondlife.com/account"/>
<string name="no_partner_text" value="Aucun"/>
<string name="no_group_text" value="Aucun"/>
<string name="name_text_args">
[NAME]
</string>
<string name="display_name_text_args">
[DISPLAY_NAME]
</string>
<string name="FSDev" value="Développeur"/>
<string name="FSSupp" value="Assistance"/>
<string name="FSQualityAssurance" value="Suivi des anomalies"/>
<string name="FSGW" value="Portail"/>
<text name="name_label" value="Nom :"/>
<button label="Nom :" name="set_name" tool_tip="Définir un nom d&apos;affichage"/>
<panel name="name_holder">
<text_editor name="complete_name" value="(en cours de chargement...)"/>
<menu_button name="copy_btn" tool_tip="Options de copie" />
</panel>
<button label="Nom :" name="set_name" tool_tip="Définir un nom d&apos;affichage"/>
<icon tool_tip="Cet(te) ami(e) peut voir mon statut en ligne" name="can_see_online" />
<icon tool_tip="Cet(te) ami(e) ne peut pas voir mon statut en ligne" name="cant_see_online" />
<icon tool_tip="Cet(te) ami(e) peut me voir sur la carte" name="can_see_on_map" />
<icon tool_tip="Cet(te) ami(e) ne peut pas me voir sur la carte" name="cant_see_on_map" />
<icon tool_tip="Cet(te) ami(e) peut modifier mes objets" name="can_edit_objects" />
<icon tool_tip="Cet(te) ami(e) ne peut pas modifier mes objets" name="cant_edit_objects" />
<text name="Key:" value="Clé :" />
<text_editor name="user_key" value="(en cours de chargement...)"/>
<layout_stack name="imagepositioner">
<layout_panel name="image_action_panel">
<menu_button name="image_action_btn" tool_tip="Effectuer des actions liées à la photo du profil" />
</layout_panel>
<layout_panel name="label_stack">
<text name="status" value="Statut inconnu"/>
<text name="label" value="Date de naissance:"/>
<text_editor name="register_date" value="(en cours de chargement...)"/>
<text_editor name="user_age" value="(en cours de chargement...)"/>
<text name="label2" value="Compte :"/>
<text name="partner_label" value="Partenaire :"/>
</layout_panel>
</layout_stack>
<text name="About:" value="Info :" />
<text name="Groups:" value="Groupes :"/>
<button label="+" label_selected="+" name="group_invite" tool_tip="Inviter dans le groupe"/>
<layout_stack name="aboutpositioner">
<layout_panel name="about_stack">
<text name="About:" value="À propos :"/>
</layout_panel>
<layout_panel name="give_stack">
<text name="Give item:" value="Donner des objets :"/>
<text name="Give inventory" tool_tip="Placer les objets de l&apos;inventaire ici pour les donner à cette personne">
Placer les objets de l&apos;inventaire ici.
</text>
</layout_panel>
</layout_stack>
<button name="group_invite" tool_tip="Inviter dans le groupe"/>
<text name="Give item:" value="Donner :" />
<text name="Give inventory" tool_tip="Déposez les objets ici pour les donner à cette personne.">
Déposez l'objet ici.
</text>
<layout_stack name="buttonstack">
<layout_panel name="left_buttonstack">
<button label="Situer sur la carte" label_selected="Situer sur la carte" name="show_on_map_btn" tool_tip="Localiser le Résident sur la carte"/>
@ -60,7 +51,7 @@
</layout_panel>
<layout_panel name="middle_buttonstack">
<button label="Proposer de téléporter" label_selected="Proposer de téléporter" name="teleport" tool_tip="Proposer une téléportation au Résident"/>
<button label="Message instantané" label_selected="Message instantané" name="im" tool_tip="Ouvrir une session IM."/>
<button label="Message instantané" label_selected="Message instantané" name="im" tool_tip="Ouvrir une session de messagerie privée (IM)."/>
</layout_panel>
<layout_panel name="right_buttonstack">
<button label="Ajouter un ami" label_selected="Ajouter un ami" name="add_friend" tool_tip="Proposer à ce résident de devenir votre ami"/>
@ -68,5 +59,7 @@
<button label="Débloquer" name="unblock" tool_tip="Débloquer ce Résident"/>
</layout_panel>
</layout_stack>
<check_box label="Afficher avec la recherche" name="show_in_search_checkbox"/>
<check_box label="Afficher dans la recherche" name="show_in_search_checkbox" tool_tip="Permettez aux usagers de vous voir dans les résultats de recherche"/>
<button name="save_description_changes" label="Enregistrer" />
<button name="discard_description_changes" label="Annuler" />
</panel>

View File

@ -1,12 +1,4 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Web" name="panel_profile_web">
<panel.string name="LoadTime" value="Heure de chargement : [TIME] secondes"/>
<line_editor name="url_edit">
(en cours de chargement..)
</line_editor>
<flyout_button label="Charger" name="load" tool_tip="Charger ce profil avec le navigateur Web incorporé">
<flyout_button.item label="Ouvrir dans mon navigateur Web" name="open_item"/>
<flyout_button.item label="Ouvrir dans un navigateur externe" name="home_item"/>
</flyout_button>
<button name="web_profile_popout_btn" tool_tip="Profil de fenêtres web"/>
</panel>

View File

@ -5376,10 +5376,10 @@ Si le problème persiste, vérifiez la configuration de votre réseau et de votr
Mon abonnement Premium
</string>
<string name="DeleteItems">
Supprimer les [COUNT_SELECTION] articles sélectionnés ([COUNT_TOTAL]] total) ?
Supprimer les [COUNT_SELECTION] articles sélectionnés ([COUNT_TOTAL] total) ?
</string>
<string name="DeleteItem">
Supprimer l&apos;article sélectionné ([COUNT_TOTAL]] total) ?
Supprimer l&apos;article sélectionné ([COUNT_TOTAL] total) ?
</string>
<string name="EmptyOutfitText">
Cette tenue ne contient aucun article.

View File

@ -4897,6 +4897,9 @@ per la regione &quot;[REGION]&quot;
<notification name="SnoozeDurationInvalidInput">
Inserire un numero valido per la durata del blocco temporaneo chat.
</notification>
<notification name="PickLimitReached">
E' stato raggiunto il numero massimo di preferiti. Non se ne possono aggiungere altri.
</notification>
<notification name="GlobalOnlineStatusToggle">
A causa del carico sul server, la modifica collettiva dello stato di visibilità può impiegare tempo per diventare efficace. Ci vuole pazienza.
<usetemplate ignoretext="Informa che la modifica dello stato di visibilità può essere ritardata" name="okignore" />

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Interessi" name="panel_profile_interests">
<text name="I Want To:">
Desidero:
</text>
<check_box label="Costruire" name="chk0"/>
<check_box label="Esplorare" name="chk1"/>
<check_box label="Incontrare" name="chk2"/>
<check_box label="Essere assunto" name="chk6"/>
<check_box label="Gruppo" name="chk3"/>
<check_box label="Acquistare" name="chk4"/>
<check_box label="Vendere" name="chk5"/>
<check_box label="Assumere" name="chk7"/>
<line_editor name="want_to_edit">
(caricamento in corso...)
</line_editor>
<text name="Skills:">
Abilità:
</text>
<check_box label="Texture" name="schk0"/>
<check_box label="Architettura" name="schk1"/>
<check_box label="Realizzazione modelli 3D" name="schk3"/>
<check_box label="Organizzazione eventi" name="schk2"/>
<check_box label="Scripting" name="schk4"/>
<check_box label="Personaggi personalizzati" name="schk5"/>
<line_editor name="skills_edit">
(caricamento in corso...)
</line_editor>
<text name="Languages:">
Lingue:
</text>
<line_editor name="languages_edit">
(caricamento in corso...)
</line_editor>
</panel>

View File

@ -5461,6 +5461,13 @@ Flickrの認証に失敗しました。もう一度試してみて下さい。
<usetemplate name="okbutton" yestext="OK"/>
</notification>
<notification name="PickLimitReached" label="">
<unique/>
<tag>fail</tag>
<tag>confirm</tag>
既にピック数の上限に達しているため、新しいピックを追加することはできません。
<usetemplate name="okbutton" yestext="OK"/>
</notification>
<notification name="GlobalOnlineStatusToggle">
サーバ負荷のため、多数のオンラインステータス切替が有効になるまでにはしばらく時間がかかります。このままお待ち下さい。
<usetemplate ignoretext="オンラインステータスの切り替えに時間がかかる時は通知する" name="okignore" yestext="OK"/>

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="趣味" name="panel_profile_interests">
<text name="I Want To:">
次の内容を実行:
</text>
<check_box label="作る" name="chk0"/>
<check_box label="探検" name="chk1"/>
<check_box label="出会う" name="chk2"/>
<check_box label="雇ってもらう" name="chk6"/>
<check_box label="グループ" name="chk3"/>
<check_box label="買う" name="chk4"/>
<check_box label="販売する" name="chk5"/>
<check_box label="雇う" name="chk7"/>
<line_editor name="want_to_edit">
(ロード中...)
</line_editor>
<text name="Skills:">
スキル:
</text>
<check_box label="テクスチャ" name="schk0"/>
<check_box label="建築" name="schk1"/>
<check_box label="モデリング" name="schk3"/>
<check_box label="イベント計画" name="schk2"/>
<check_box label="スクリプト" name="schk4"/>
<check_box label="キャラクターのカスタマイズ" name="schk5"/>
<line_editor name="skills_edit">
(ロード中...)
</line_editor>
<text name="Languages:">
言語:
</text>
<line_editor name="languages_edit">
(ロード中...)
</line_editor>
</panel>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<floater name="floater_classified" title="Reklama" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="Display Name" title="Zmień Wyświetlane Imię">
<text name="info_text">
Imię, które nadałaś/eś Twojemu awatarowi jest nazywane Wyświetlanym Imieniem. Możesz je zmienić raz w tygodniu.
Twoje Wyświetlane Imię to takie, które inni widzą nad Twoją głową. Możesz je zmienić raz w tygodniu.
</text>
<text name="lockout_text">
Nie możesz zmienić swojego Imienia do: [TIME].

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="avatarinfo" title="Profil">
<panel name="panel_profile_view">
<tab_container name="panel_profile_tabs">
<panel name="panel_profile_secondlife" label="Rezydent" />
<panel name="panel_profile_web" label="Sieć" />
<panel name="panel_profile_picks" label="Miejsca" />
<panel name="panel_profile_classifieds" label="Reklamy" />
<panel name="panel_profile_firstlife" label="Więcej" />
<panel name="panel_profile_notes" label="Notatki" />
</tab_container>
</panel>
</floater>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="profile_permissions">
<string name="description_string" value="Zezwól [AGENT_NAME] na:" />
<text name="perm_description" value="Zezwól tej osobie:" />
<check_box name="online_check" label="Widzieć gdy jestem online" />
<check_box name="map_check" label="Znajdować mnie na mapie" />
<check_box name="objects_check" label="Edytować, usuwać lub zabierać moje obiekty" />
<button name="perms_btn_cancel" label="Anuluj" />
</floater>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="profile_texture">
<layout_stack name="preview_stack">
<layout_panel name="buttons_panel">
<layout_stack name="buttons_stack">
<layout_panel name="close_panel">
<button label="Zamknij" name="close_btn" />
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</floater>

View File

@ -37,4 +37,5 @@
<menu_item_call label="Odśwież tekstury" name="Texture Refresh"/>
<menu_item_call label="Zrzuć XML" name="Dump XML"/>
<menu_item_call label="Blokuj właściciela cząsteczek" name="Mute Particle"/>
<menu_item_call label="Zobacz profil" name="show_avatar_profile" />
</context_menu>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Image Actions">
<menu_item_call label="Prześlij obraz" name="upload_photo" />
<menu_item_call label="Zmień obraz" name="change_photo" />
<menu_item_call label="Usuń obraz" name="remove_photo" />
</toggleable_menu>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Kopiuj Wyświetlane Imię" name="copy_display" />
<menu_item_call label="Kopiuj imię" name="copy_name" />
<menu_item_call label="Kopiuj UUID" name="copy_id" />
<menu_item_call label="Kopiuj URI" name="copy_uri" />
</toggleable_menu>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="profile_overflow_menu">
<!-- <menu_item_call label="Mapa" name="show_on_map" />
<menu_item_call label="Zapłać" name="pay" /> -->
<menu_item_call label="Udostępnij" name="share" />
<menu_item_call label="Zadzwoń" name="call" />
<!-- <menu_item_check label="Blokuj/Odblokuj" name="block_unblock" /> -->
<menu_item_call label="Dodaj do Zestawu Kontaktów" name="add_to_contact_set" />
<menu_item_call label="Kopiuj imię" name="copy_name_to_clipboard" />
<menu_item_call label="Kopiuj URI" name="copy_uri_to_clipboard" />
<menu_item_call label="Kopiuj UUID" name="copy_key_to_clipboard" />
<menu_item_call label="Wyrzuć" name="kick" />
<menu_item_call label="Unieruchom" name="freeze" />
<menu_item_call label="Zezwól na ruch" name="unfreeze" />
<menu_item_call label="Zgłoś" name="report" />
</toggleable_menu>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Menu">
<menu_item_call label="Wiadomość IM" name="im" />
<menu_item_call label="Proponuj teleport" name="offer_teleport" />
<menu_item_call label="Poproś o teleport" name="request_teleport" />
<menu_item_call label="Rozmowa głosowa" name="voice_call" />
<menu_item_call label="Logi czatu..." name="chat_history" />
<menu_item_call label="Dodaj do znajomych" name="add_friend" />
<menu_item_call label="Usuń znajomego" name="remove_friend" />
<menu_item_call label="Zaproś do grupy..." name="invite_to_group" />
<menu_item_call label="Uprawnienia" name="agent_permissions" />
<menu_item_call label="Mapa" name="map" />
<menu_item_call label="Udostępnij" name="share" />
<menu_item_call label="Zapłać" name="pay" />
<menu_item_check label="Blokuj/Odblokuj" name="block_unblock" />
<menu_item_call label="Kopiuj Wyświetlane Imię" name="copy_display_name" />
<menu_item_call label="Kopiuj imię" name="copy_name" />
<menu_item_call label="Kopiuj UUID" name="copy_id" />
</toggleable_menu>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<!-- <menu_item_call label="Mapa" name="show_on_map"/>
<menu_item_call label="Zapłać" name="pay"/> -->
<menu_item_call label="Udostępnij" name="share"/>
<menu_item_call label="Rozmowa" name="call"/>
<!-- <menu_item_call label="Blokuj" name="block"/>
<menu_item_call label="Odblokuj" name="unblock"/> -->
<menu_item_call label="Dodaj do Zestawu Kontaktów" name="add_to_contact_set" />
<menu_item_call label="Kopiuj imię" name="copy_name_to_clipboard"/>
<menu_item_call label="Kopiuj URI" name="copy_uri_to_clipboard"/>
<menu_item_call label="Kopiuj UUID" name="copy_key_to_clipboard"/>
<menu_item_call label="Wyrzuć" name="kick"/>
<menu_item_call label="Unieruchom" name="freeze"/>
<menu_item_call label="Zezwól na ruch" name="unfreeze"/>
<menu_item_call label="Zgłoś" name="report"/>
</toggleable_menu>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Menu Self">
<menu_item_call label="Edytuj Wyświetlane Imię" name="edit_display_name" />
<menu_item_call label="Edytuj partnera" name="edit_partner" />
<menu_item_call label="Prześlij obraz" name="upload_photo" />
<menu_item_call label="Zmień obraz" name="change_photo" />
<menu_item_call label="Usuń obraz" name="remove_photo" />
<menu_item_call label="Kopiuj Wyświetlane Imię" name="copy_display_name" />
<menu_item_call label="Kopiuj imię" name="copy_name" />
<menu_item_call label="Kopiuj UUID" name="copy_id" />
</toggleable_menu>

View File

@ -504,10 +504,22 @@ Czy na pewno chcesz kontynuować?
<notification name="ClassifiedInsufficientFunds">
Nie posiadasz wystarczających środków aby dodać reklamę.
</notification>
<notification name="DeleteAvatarPick">
<notification name="ProfileDeleteClassified">
Usunąć reklamę &lt;nolink&gt;[CLASSIFIED]&lt;/nolink&gt;?
<usetemplate name="okcancelbuttons" notext="Anuluj" />
</notification>
<notification name="ProfileDeletePick">
Usunąć miejsce &lt;nolink&gt;[PICK]&lt;/nolink&gt;?
<usetemplate name="okcancelbuttons" notext="Anuluj" />
</notification>
<notification name="ProfileUnpublishedClassified">
Masz nieopublikowane reklamy. Przepadną, jeśli zamkniesz okno.
<usetemplate name="okcancelbuttons" notext="Anuluj" />
</notification>
<notification name="ProfileUnsavedChanges">
Masz niezapisane zmiany.
<usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Odrzuć" yestext="Zapisz" />
</notification>
<notification name="DeleteOutfits">
Skasować wybrane stroje?
<usetemplate name="okcancelbuttons" notext="Anuluj" />
@ -5050,6 +5062,9 @@ Czy chcesz autoryzować [APP_NAME] do przesyłania zdjęć na Flickr?
<notification name="SnoozeDurationInvalidInput">
Okres tymczasowego wyciszenia czatu grupowego musi być liczbą!
</notification>
<notification name="PickLimitReached">
Nie można utworzyć kolejnego Miejsca, ponieważ limit ich ilości został osiągnięty.
</notification>
<notification name="GlobalOnlineStatusToggle">
Ze względu na obciążenie serwera masowa zmiana widoczności online może zająć trochę czasu. Prosimy o cierpliwość.
<usetemplate ignoretext="Informuj mnie, że masowa zmiana widoczności online może zająć trochę czasu" name="okignore" />

View File

@ -48,9 +48,6 @@
<layout_panel name="show_on_map_btn_lp">
<button label="Mapa" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Edytuj" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Edytuj reklamę" name="panel_edit_classified">
<panel.string name="location_notice">
(zostanie zaktualizowane po zapisaniu)
</panel.string>
<string name="publish_label">
Publikuj
</string>
<string name="save_label">
Zapisz
</string>
<text name="title">
Edytuj reklamę
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon name="edit_icon" tool_tip="Kliknij by wybrać teksturę"/>
</panel>
<text name="Name:">
Tytuł:
</text>
<text name="description_label">
Opis:
</text>
<text name="location_label">
Lokalizacja:
</text>
<text name="classified_location">
ładowanie...
</text>
<button label="Ustaw na bieżącą lokalizację" name="set_to_curr_location_btn"/>
<text name="category_label" value="Kategoria:"/>
<text name="content_type_label" value="Typ zawartości:"/>
<icons_combo_box label="Treść General" name="content_type">
<icons_combo_box.item label="Treść Moderate" name="mature_ci"/>
<icons_combo_box.item label="Treść General" name="pg_ci"/>
</icons_combo_box>
<check_box label="Ponawiaj automatycznie co tydzień" name="auto_renew"/>
<text name="price_for_listing_label" value="Koszt listowania:"/>
<spinner name="price_for_listing" tool_tip="Koszt listowania reklamy."/>
</panel>
</scroll_container>
<panel name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="show_on_map_btn_lp">
<button label="Anuluj" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,37 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Edytuj Miejsce" name="panel_edit_pick">
<panel.string name="location_notice">
(aktualizacja nastąpi po zapisaniu)
</panel.string>
<text name="title">
Edytuj Miejsce
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon name="edit_icon" tool_tip="Kliknij aby wybrać teksturę"/>
<text name="Name:">
Tytuł:
</text>
<text name="description_label">
Opis:
</text>
<text name="location_label">
Lokalizacja:
</text>
<text name="pick_location">
ładowanie...
</text>
<button label="Ustaw na bieżącą lokalizację" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Zapisz Miejsce" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="Anuluj" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Edycja profilu" name="edit_profile_panel">
<string name="FSDev" value=" Programista"/>
<string name="FSSupp" value=" Wsparcie"/>
<string name="FSQualityAssurance" value=" Łowca błędów"/>
<string name="AcctTypeResident" value="Rezydent"/>
<string name="AcctTypeTrial" value="Próbne"/>
<string name="AcctTypeCharterMember" value="Założyciel"/>
<string name="AcctTypeEmployee" value="Pracownik Linden Lab"/>
<string name="PaymentInfoUsed" value="Płatności: Dane użyte"/>
<string name="PaymentInfoOnFile" value="Płatności: Dane znane"/>
<string name="NoPaymentInfoOnFile" value="Płatności: Dane nieznane"/>
<string name="AgeVerified" value="Wiek zweryfikowany"/>
<string name="NotAgeVerified" value="Wiek niezweryfikowany"/>
<string name="no_partner_text" value="Brak"/>
<tab_container name="profile_accordion">
<panel name="sl_data_panel" title="Awatar">
<text name="display_name_label" value="Wyświetlane imię:"/>
<text name="solo_username_label" value="Nazwa użytkownika:"/>
<button name="set_name" tool_tip="Ustaw wyświetlane imię"/>
<text name="user_name" value="(ładowanie...)"/>
<text name="solo_user_name" value="(ładowanie...)"/>
<text name="user_name_small" value="(ładowanie...)"/>
<text name="user_label" value="Użytkownik:"/>
<text name="user_slid" value="(ładowanie...)"/>
<panel name="lifes_images_panel">
<icon name="2nd_life_edit_icon" tool_tip="Kliknij, aby wybrać obrazek"/>
</panel>
<check_box label="Pokaż w wyszukiwarce" name="show_in_search_checkbox"/>
<text name="title_acc_status_text" value="Konto:"/>
<text_editor name="acc_status_text" value="Rezydent. Płatności: Dane nieznane."/>
<text name="my_account_link" value="[[URL] Idź do Tablicy]"/>
<text name="title_partner_text" value="Partner:"/>
<panel name="partner_data_panel">
<text initial_value="(pobieranie)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] Edytuj]"/>
</panel>
<panel name="rl_data_panel" title="Więcej">
<text name="rl_picture_caption" value="Dodatkowe zdjęcie"/>
<panel name="first_life_image_panel">
<icon name="real_world_edit_icon" tool_tip="Kliknij, aby wybrać obrazek"/>
</panel>
<text name="title_homepage_text">
Strona www:
</text>
</panel>
</tab_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="Zapisz zmiany" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Anuluj" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="group_list_item">
<text name="group_name" value="Nieznana" />
<button name="profile_btn" tool_tip="Pokaż profil" />
<text name="group_name" value="Nieznana" />
<button name="visibility_hide_btn" tool_tip="Ukryj grupę w moim profilu" />
<button name="visibility_show_btn" tool_tip="Pokaż grupę w moim profilu" />
<button name="info_btn" tool_tip="Więcej informacji" />
<button name="profile_btn" tool_tip="Pokaż profil" />
</panel>

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel name="panel_pick_info">
<text name="title" value="Info o Miejscu"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[nazwa]" />
<text_editor name="pick_location" value="[wczytywanie...]" />
<text_editor name="pick_desc" value="[opis]" />
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Teleportuj" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Mapa" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Edytuj" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel name="panel_picks" label="Miejsca">
<string name="no_picks" value="Brak Miejsc"/>
<string name="no_classifieds" value="Brak reklam"/>
<tab_container name="accordion">
<panel name="tab_picks" title="Miejsca"/>
<panel name="tab_classifieds" title="Reklamy"/>
</tab_container>
<panel name="edit_panel">
<button name="new_btn" tool_tip="Stwórz nowe Miejsce lub reklamę w obecnej lokalizacji"/>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button name="info_btn" tool_tip="Pokaż informacje o Miejscu"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Teleportuj" name="teleport_btn" tool_tip="Teleportuj do odpowiadającego obszaru"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Mapa" name="show_on_map_btn" tool_tip="Pokaż obszar na mapie świata"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_profile_classified">
<panel.string name="type_mature">
Treść Moderate
</panel.string>
<panel.string name="type_pg">
Treść General
</panel.string>
<panel.string name="l$_price">
[PRICE]L$
</panel.string>
<panel.string name="click_through_text_fmt">
[TELEPORT] teleport, [MAP] mapa, [PROFILE] profil
</panel.string>
<panel.string name="date_fmt">
[day,datetime,slt]/[mthnum,datetime,slt]/[year,datetime,slt]
</panel.string>
<panel.string name="auto_renew_on">
Włączone
</panel.string>
<panel.string name="auto_renew_off">
Wyłączone
</panel.string>
<panel.string name="location_notice">
(zaktualizuje się po zapisaniu)
</panel.string>
<string name="publish_label">
Publikuj
</string>
<string name="save_label">
Zapisz
</string>
<layout_stack name="main_classifieds_stack">
<layout_panel name="scroll_layout_panel">
<scroll_container name="profile_scroll">
<panel name="info_scroll_content_panel">
<icon name="edit_icon" tool_tip="Kliknij by wybrać obraz" />
<layout_stack name="info_panel">
<layout_panel name="main_info_panel">
<text name="classified_location_label" value="Lokalizacja:" />
<text name="content_type_label" value="Zawartość:" />
<text name="category_label" value="Kategoria:" />
<text name="creation_date_label" value="Utworzono:" />
<text_editor name="creation_date" tool_tip="Data utworzenia" />
<text name="price_for_listing_label" value="Koszt listowania:" />
<text_editor name="price_for_listing" tool_tip="Koszt listowania reklamy." />
</layout_panel>
<layout_panel name="clickthrough_layout_panel">
<text name="click_through_label" value="Kliki:" />
<text_editor name="click_through_text" tool_tip="Dane dotyczące przeklików" />
</layout_panel>
<layout_panel name="auto_renew_layout_panel">
<text name="auto_renew_label" value="Autoodnawianie:" />
<text name="auto_renew" value="Włączone" />
</layout_panel>
<layout_panel name="descr_layout_panel">
<text name="classified_desc_label" value="Opis:" />
</layout_panel>
</layout_stack>
<panel name="edit_panel">
<text name="Name:">
Tytuł:
</text>
<text name="description_label">
Opis:
</text>
<text name="location_label">
Lokalizacja:
</text>
<text name="classified_location_edit">
ładowanie...
</text>
<button name="set_to_curr_location_btn" label="Ustaw na bieżącą lokalizację" />
<text name="category_label" value="Kategoria:" />
<text name="content_type_label" value="Zawartość:" />
<icons_combo_box name="content_type_edit" label="Treść General">
<icons_combo_box.item name="mature_ci" label="Treść Moderate" />
<icons_combo_box.item name="pg_ci" label="Treść General" />
</icons_combo_box>
<check_box name="auto_renew_edit" label="Auto-ponawiaj co tydzień" />
</panel>
</panel>
</scroll_container>
</layout_panel>
<layout_panel name="util_buttons_lp">
<layout_stack name="util_buttons_stack">
<layout_panel name="teleport_btn_lp">
<button name="teleport_btn" label="Teleportuj" />
</layout_panel>
<layout_panel name="map_btn_lp">
<button name="show_on_map_btn" label="Mapa" />
</layout_panel>
<layout_panel name="edit_btn_lp">
<button name="edit_btn" label="Edytuj" />
</layout_panel>
</layout_stack>
</layout_panel>
<layout_panel name="publish_layout_panel">
<layout_stack name="publish_stack">
<layout_panel name="cancel_btn_lp">
<button name="cancel_btn" label="Anuluj" />
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</panel>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_profile_classifieds" label="Reklamy">
<string name="no_classifieds" value="Brak reklam" />
<layout_stack name="main_stack">
<layout_panel name="buttons_header">
<button name="new_btn" label="Nowa..." tool_tip="Utwórz nową reklamę w obecnej lokalizacji" />
<button name="delete_btn" label="Usuń..." tool_tip="Usuń aktualnie wybraną reklamę" />
</layout_panel>
<layout_panel name="main_body">
<text name="classifieds_panel_text">
Ładowanie...
</text>
</layout_panel>
</layout_stack>
</panel>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_profile_firstlife" label="Profil">
<string name="texture_picker_label" value="Zdjęcie z Pierwszego Życia" />
<button name="fl_upload_image" label="Prześlij obraz" />
<button name="fl_change_image" label="Zmień obraz" />
<button name="fl_remove_image" label="Usuń obraz" />
<button name="fl_save_changes" label="Zapisz" />
<button name="fl_discard_changes" label="Odrzuć" />
</panel>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_notes" label="Notatki i prywatność">
<text name="status_message" value="Twoje notatki o tej osobie. Nikt inny nie może ich zobaczyć." />
<button name="notes_save_changes" label="Zapisz" />
<button name="notes_discard_changes" label="Odrzuć" />
</panel>

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_pick_info">
<panel.string name="location_notice">
(zaktualizuje się po zapisaniu)
</panel.string>
<layout_stack name="main_pick_stack">
<layout_panel name="main_pick_lp">
<text name="title_label">
Nazwa:
</text>
<text name="description_label">
Opis:
</text>
<text name="location_label">
Lokalizacja:
</text>
<line_editor name="pick_location">
Ładowanie...
</line_editor>
</layout_panel>
<layout_panel name="actions_lp">
<layout_stack name="actions_stack">
<layout_panel name="map_btn_lp">
<button name="show_on_map_btn" label="Pokaż na mapie" />
</layout_panel>
<layout_panel name="tp_btn_lp">
<button name="teleport_btn" label="Teleportuj" />
</layout_panel>
<layout_panel name="set_to_curr_location_btn_lp">
<button name="set_to_curr_location_btn" label="Ustaw lokalizację" tool_tip="Ustaw na obecną lokalizację" />
</layout_panel>
</layout_stack>
</layout_panel>
<layout_panel name="save_changes_lp">
<layout_stack name="save_changes_stack">
<layout_panel name="create_btn_lp">
<button name="create_changes_btn" label="Utwórz" />
</layout_panel>
<layout_panel name="save_btn_lp">
<button name="save_changes_btn" label="Zapisz" />
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button name="cancel_changes_btn" label="Anuluj" />
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</panel>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_picks" label="Miejsca">
<string name="no_picks" value="Brak Miejsc" />
<layout_stack name="main_stack">
<layout_panel name="buttons_header">
<text name="header_text">
Pokaż innym swoje ulubione miejsca w [GRID].
</text>
<button name="new_btn" label="Nowe..." tool_tip="Utwórz nowe Miejsce w obecnej lokalizacji" />
<button name="delete_btn" label="Usuń..." tool_tip="Usuń aktualnie wybrane Miejsce" />
</layout_panel>
<layout_panel name="main_body">
<text name="picks_panel_text">
Ładowanie...
</text>
</layout_panel>
</layout_stack>
</panel>

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_profile" label="Profil">
<string name="no_partner_text" value="Brak" />
<string name="no_group_text" value="Brak" />
<string name="FSDev" value=" Programista" />
<string name="FSSupp" value=" Wsparcie" />
<string name="FSQualityAssurance" value=" Łowca błędów" />
<string name="texture_picker_label" value="Zdjęcie profilowe" />
<text name="name_label" value="Imię:" />
<panel name="name_holder">
<text_editor name="complete_name" value="(ładowanie...)" />
<menu_button name="copy_btn" tool_tip="Opcje kopiowania" />
</panel>
<button name="set_name" tool_tip="Ustaw Imię Wyświetlane" />
<icon tool_tip="Znajomy może zobaczyć mój status online" name="can_see_online" />
<icon tool_tip="Znajomy nie może zobaczyć mojego statusu online" name="cant_see_online" />
<icon tool_tip="Znajomy może mnie zobaczyć na mapie" name="can_see_on_map" />
<icon tool_tip="Znajomy nie może mnie zobaczyć na mapie" name="cant_see_on_map" />
<icon tool_tip="Znajomy może edytować moje obiekty" name="can_edit_objects" />
<icon tool_tip="Znajomy nie może edytować moich obiektów" name="cant_edit_objects" />
<text name="Key:" value="Klucz:" />
<text_editor name="user_key" value="(ładowanie...)" />
<layout_stack name="imagepositioner">
<layout_panel name="image_action_panel">
<menu_button name="image_action_btn" tool_tip="Wykonaj czynności związane ze zdjęciem profilowym" />
</layout_panel>
<layout_panel name="label_stack">
<text name="label" value="Urodziny:" />
<text_editor name="user_age" value="(ładowanie...)" />
<text name="label2" value="Konto:" />
</layout_panel>
</layout_stack>
<text name="About:" value="Info:" />
<text name="Groups:" value="Grupy:" />
<button name="group_invite" tool_tip="Zaproś do grupy" />
<text name="Give item:" value="Podaruj:" />
<text name="Give inventory" tool_tip="Upuść przedmiot w tym miejscu, aby dać go tej osobie.">
Upuść przedmiot w tym miejscu.
</text>
<layout_stack name="buttonstack">
<layout_panel name="left_buttonstack">
<button name="show_on_map_btn" label="Znajdź na mapie" tool_tip="Znajdź Rezydenta na mapie" label_selected="Znajdź na mapie" />
<button name="pay" label="Zapłać" tool_tip="Zapłać temu Rezydentowi" label_selected="Zapłać" />
</layout_panel>
<layout_panel name="middle_buttonstack">
<button name="teleport" label="Proponuj teleport" tool_tip="Zaproponuj teleport Rezydentowi" label_selected="Proponuj teleport" />
<button name="im" label="Czat prywatny (IM)" tool_tip="Rozpocznij nową sesję czatu prywatnego (IM)" label_selected="Czat prywatny (IM)" />
</layout_panel>
<layout_panel name="right_buttonstack">
<button name="add_friend" label="Dodaj znajomego" tool_tip="Zaproponuj znajomość Rezydentowi" label_selected="Dodaj znajomego" />
<button name="block" label="Zablokuj" tool_tip="Zablokuj tego Rezydenta" />
<button name="unblock" label="Odblokuj" tool_tip="Odblokuj tego Rezydenta" />
</layout_panel>
</layout_stack>
<check_box name="show_in_search" label="Pokaż w wyszukiwarce" tool_tip="Pozwól innym zobaczyć Cię w wynikach wyszukiwania" />
<button name="save_description_changes" label="Zapisz" />
<button name="discard_description_changes" label="Odrzuć" />
</panel>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_profile_web" label="Sieć">
<panel.string name="LoadTime" value="Załadowano w: [TIME] sekund" />
</panel>

View File

@ -2727,26 +2727,26 @@ Jeśli ciągle otrzymujesz tą wiadomość, to skontaktuj się z pomocą technic
(zostanie zaktualizowane po publikacji)
</string>
<string name="NoPicksClassifiedsText">
Nie dodałeś/aś nic do Ulubionych i Reklam. Kliknij na przycisk + poniżej, aby dodać miejsce do Ulubionych lub Reklam.
</string>
<string name="NoAvatarPicksClassifiedsText">
Brak ulubionych miejsc/reklam
</string>
<string name="PicksClassifiedsLoadingText">
Ładowanie...
Nie dodano nic do Miejsc i Reklam. Kliknij na przycisk Nowe, aby utworzyć Miejsce lub Reklamę.
</string>
<string name="NoPicksText">
Nie masz żadnych ulubionych miejsc
Nie dodano żadnych Miejsc. Kliknij na przycisk Nowe, aby utworzyć Miejsce.
</string>
<string name="NoClassifiedsText">
Nie dodano żadnych reklam. Kliknij na przycisk Nowa, aby utworzyć reklamę.
</string>
<string name="NoAvatarPicksClassifiedsText">
Użytkownik nie ma ulubionych miejsc ani reklam
</string>
<string name="NoAvatarPicksText">
Użytkownik nie ma ulubionych miejsc
</string>
<string name="NoClassifiedsText">
Nie masz żadnych reklam. Kliknij na przycisk Plus poniżej, aby jakąś utworzyć.
</string>
<string name="NoAvatarClassifiedsText">
Użytkownik nie ma reklam
</string>
<string name="PicksClassifiedsLoadingText">
Ładowanie...
</string>
<string name="MultiPreviewTitle">
Podgląd
</string>
@ -5132,10 +5132,10 @@ Jeśli problemy będą występowały nadal, proszę sprawdź sieć i ustawienia
Moje członkostwo Premium
</string>
<string name="DeleteItems">
Usunąć [COUNT_SELECTION] zaznaczonych obiektów ([COUNT_TOTAL]] łącznie)?
Usunąć [COUNT_SELECTION] zaznaczonych obiektów ([COUNT_TOTAL] łącznie)?
</string>
<string name="DeleteItem">
Usunąć zaznaczony obiekt ([COUNT_TOTAL]] łącznie)?
Usunąć zaznaczony obiekt ([COUNT_TOTAL] łącznie)?
</string>
<string name="EmptyOutfitText">
W tym stroju nie ma elementów

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Interesses" name="panel_profile_interests">
<text name="I Want To:">
Quero:
</text>
<check_box label="Crie" name="chk0"/>
<check_box label="Explore" name="chk1"/>
<check_box label="Encontrar" name="chk2"/>
<check_box label="Seja contratado" name="chk6"/>
<check_box label="Grupo" name="chk3"/>
<check_box label="Comprar" name="chk4"/>
<check_box label="Venda" name="chk5"/>
<check_box label="Contratar" name="chk7"/>
<line_editor name="want_to_edit">
(carregando...)
</line_editor>
<text name="Skills:">
Habilidades:
</text>
<check_box label="Texturas" name="schk0"/>
<check_box label="Arquitetura" name="schk1"/>
<check_box label="Modelo" name="schk3"/>
<check_box label="Planejamento de evento" name="schk2"/>
<check_box label="Scripts" name="schk4"/>
<check_box label="Personagens personalizados" name="schk5"/>
<line_editor name="skills_edit">
(carregando...)
</line_editor>
<text name="Languages:">
Idiomas:
</text>
<line_editor name="languages_edit">
(carregando...)
</line_editor>
</panel>

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<floater name="floater_classified" title="Реклама">
</floater>

View File

@ -3,9 +3,9 @@
<panel name="panel_profile_view">
<tab_container name="panel_profile_tabs">
<panel label="2я жизнь" name="panel_profile_secondlife" />
<panel label="Feed" name="panel_profile_web" />
<panel label="Канал" name="panel_profile_web" />
<panel label="Интересы" name="panel_profile_interests" />
<panel label="Места" name="panel_profile_picks" />
<panel label="Подборки" name="panel_profile_picks" />
<panel label="Реклама" name="panel_profile_classifieds" />
<panel label="1я жизнь" name="panel_profile_firstlife" />
<panel label="Заметки" name="panel_profile_notes" />

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="profile_permissions">
<string name="description_string" value="Разрешить [AGENT_NAME]:" />
<text name="perm_description" value="Разрешить пользователю:"/>
<check_box name="online_check" label="Увидеть, когда я в сети"/>
<check_box name="map_check" label="Найди меня на карте мира"/>
<check_box name="objects_check" label="Править, удалять или брать мои объекты"/>
<button name="perms_btn_ok" label="Да"/>
<button name="perms_btn_cancel" label="Отмена"/>
</floater>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="profile_texture">
<layout_stack name="preview_stack">
<layout_panel name="buttons_panel">
<layout_stack name="buttons_stack">
<layout_panel name="close_panel">
<button label="Закрыть" name="close_btn"/>
</layout_panel>
</layout_stack>
</layout_panel>
</layout_stack>
</floater>

View File

@ -61,7 +61,7 @@
<!-- bottom static -->
<line_editor name="TextureKey" tool_tip="Ключ Текстуры"/>
<button name="TextureKeyApply" label="Прим. UUID" width="100" tool_tip="Применить этот UUID"/>
<button label="ОК" label_selected="ОК" name="Select" left="150"/>
<button label="Да" label_selected="Да" name="Select" left="150"/>
<button label="Отмена" label_selected="Отмена" name="Cancel"/>
<check_box initial_value="true" label="Применить сейчас" name="apply_immediate_check" width="200"/>
</floater>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<context_menu name="Attachment Pie">
<menu_item_call label="Коснуться" name="Attachment Object Touch"/>
<!--menu_item_call label="Встать" name="Stand Up"/>-->
<menu_item_call label="Показать в инвентаре" name="Show original"/>
<menu_item_call label="Редактировать" name="Edit..."/>
<menu_item_call label="Отсоеденить" name="Detach"/>
<context_menu label="Сохранить как" name="Export Menu">

View File

@ -2,8 +2,8 @@
<context_menu name="Self Pie">
<menu_item_call label="Сесть" name="Sit Down Here"/>
<menu_item_call label="Встать" name="Stand Up"/>
<context_menu label="Снять &gt;" name="Take Off &gt;">
<context_menu label="Одежду &gt;" name="Clothes &gt;">
<context_menu label="Снять" name="Take Off &gt;">
<context_menu label="Одежду" name="Clothes &gt;">
<menu_item_call label="Рубашку" name="Shirt"/>
<menu_item_call label="Штаны" name="Pants"/>
<menu_item_call label="Юбку" name="Skirt"/>
@ -38,4 +38,5 @@
<menu_item_call label="Обновить текстуру" name="Texture Refresh"/>
<menu_item_call label="Дамп XML" name="Dump XML"/>
<menu_item_call label="Блокировать владельца частиц" name="Mute Particle"/>
<menu_item_call label="Смотреть Профиль" name="show_avatar_profile"/>
</context_menu>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Color Menu">
<menu_item_call label="Копировать" name="params_copy"/>
<menu_item_call label="Вставить" name="params_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Features Menu">
<menu_item_call label="Копировать" name="params_copy"/>
<menu_item_call label="Вставить" name="params_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Light Menu">
<menu_item_call label="Копировать" name="params_copy"/>
<menu_item_call label="Вставить" name="params_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Object Menu">
<menu_item_call label="Копировать" name="params_copy"/>
<menu_item_call label="Вставить" name="params_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Position Menu">
<menu_item_call label="Копировать всё" name="psr_copy" />
<menu_item_call label="Копировать позицию" name="pos_copy"/>
<menu_item_call label="Вставить всё" name="psr_paste"/>
<menu_item_call label="Вставить позицию" name="pos_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Rotation Menu">
<menu_item_call label="Копировать всё" name="psr_copy"/>
<menu_item_call label="Копировать вращение" name="rot_copy"/>
<menu_item_call label="Вставить всё" name="psr_paste"/>
<menu_item_call label="Вставить вращение" name="rot_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Size Menu">
<menu_item_call label="Копировать всё" name="psr_copy"/>
<menu_item_call label="Копировать размер" name="size_copy"/>
<menu_item_call label="Вставить всё" name="psr_paste"/>
<menu_item_call label="Вставить размер" name="size_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Copy Paste Texture Menu">
<menu_item_call label="Копировать" name="params_copy"/>
<menu_item_call label="Вставить" name="params_paste"/>
</toggleable_menu>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Avatar Profile Image Actions">
<menu_item_call label="Загрузить Фото" name="upload_photo"/>
<menu_item_call label="Сменить Фото" name="change_photo"/>
<menu_item_call label="Удалить Фото" name="remove_photo"/>
</toggleable_menu>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Копировать Отображаемое Имя" name="copy_display"/>
<menu_item_call label="Копировать Имя пользователя" name="copy_name"/>
<menu_item_call label="Копировать UUID" name="copy_id"/>
<menu_item_call label="Копировать URI" name="copy_uri"/>
</toggleable_menu>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="profile_overflow_menu">
<!-- <menu_item_call label="Карта" name="show_on_map"/>
<menu_item_call label="Платить" name="pay"/> -->
<!--<menu_item_call label="Карта" name="show_on_map"/>
<menu_item_call label="Платить" name="pay"/>-->
<menu_item_call label="Поделиться" name="share"/>
<menu_item_call label="Звонок" name="call"/>
<!-- <menu_item_call label="Заблокировать" name="block"/>
<menu_item_call label="Разблокировать" name="unblock"/> -->
<menu_item_call label="Вызов" name="call"/>
<!--<menu_item_check label="Блокировать/Разблокировать" name="block_unblock"/>-->
<menu_item_call label="Добавить в набор контактов" name="add_to_contact_set"/>
<menu_item_call label="Копировать имя" name="copy_name_to_clipboard"/>
<menu_item_call label="Копировать Имя" name="copy_name_to_clipboard"/>
<menu_item_call label="Копировать URI" name="copy_uri_to_clipboard"/>
<menu_item_call label="Копировать UUID" name="copy_key_to_clipboard"/>
<menu_item_call label="Выкинуть" name="kick"/>
<menu_item_call label="Заморозить" name="freeze"/>
<menu_item_call label="Разморозить" name="unfreeze"/>
<menu_item_call label="Сообщить" name="report"/>
<menu_item_call label="CSR" name="csr"/>
<menu_item_call label="Жалоба" name="report"/>
</toggleable_menu>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Копировать отображаемое имя" name="copy_display"/>
<menu_item_call label="Копировать имя агента" name="copy_name"/>
<menu_item_call label="Копировать Id агента" name="copy_id"/>
</toggleable_menu>

Some files were not shown because too many files have changed in this diff Show More