Ansariel 2022-09-15 19:56:19 +02:00
commit 1f3b96dd9c
71 changed files with 233 additions and 2029 deletions

View File

@ -2164,6 +2164,12 @@ void LLLineEditor::draw()
ime_pos.mX = (S32) (ime_pos.mX * LLUI::getScaleFactor().mV[VX]);
ime_pos.mY = (S32) (ime_pos.mY * LLUI::getScaleFactor().mV[VY]);
// <FS:Zi> IME - International input compositing, i.e. for Japanese / Chinese text input
#if LL_SDL2
static LLUICachedControl<S32> sdl2_ime_default_vertical_offset("SDL2IMEDefaultVerticalOffset");
ime_pos.mY += sdl2_ime_default_vertical_offset;
#endif
// </FS:Zi>
getWindow()->setLanguageTextInput( ime_pos );
}
}
@ -2313,12 +2319,21 @@ void LLLineEditor::setFocus( BOOL new_state )
if (new_state)
{
// <FS:Zi> IME - International input compositing, i.e. for Japanese / Chinese text input
#if LL_SDL2
// Linux/SDL2 doesn't currently allow to disable IME, so we remove the restrictions on
// password entry fields and prevalidated input fields. Otherwise those fields would
// be completely inaccessible.
getWindow()->allowLanguageTextInput(this, true);
#else
// </FS:Zi>
// Allow Language Text Input only when this LineEditor has
// no prevalidate function attached. This criterion works
// fine on 1.15.0.2, since all prevalidate func reject any
// non-ASCII characters. I'm not sure on future versions,
// however.
getWindow()->allowLanguageTextInput(this, mPrevalidateFunc == NULL);
#endif // <FS:Zi>
}
}
@ -2498,7 +2513,16 @@ void LLLineEditor::updateAllowingLanguageInput()
// test app, no window available
return;
}
// <FS:Zi> IME - International input compositing, i.e. for Japanese / Chinese text input
#if LL_SDL2
// Linux/SDL2 doesn't currently allow to disable IME, so we remove the restrictions on
// password entry fields and prevalidated input fields. Otherwise those fields would
// be completely inaccessible.
if (hasFocus() && !mReadOnly)
#else
// </FS:Zi>
if (hasFocus() && !mReadOnly && !mDrawAsterixes && mPrevalidateFunc == NULL)
#endif // <FS:Zi>
{
window->allowLanguageTextInput(this, TRUE);
}

View File

@ -645,6 +645,12 @@ void LLTextBase::drawCursor()
ime_pos.mX = (S32) (ime_pos.mX * LLUI::getScaleFactor().mV[VX]);
ime_pos.mY = (S32) (ime_pos.mY * LLUI::getScaleFactor().mV[VY]);
// <FS:Zi> IME - International input compositing, i.e. for Japanese / Chinese text input
#if LL_SDL2
static LLUICachedControl<S32> sdl2_ime_default_vertical_offset("SDL2IMEDefaultVerticalOffset");
ime_pos.mY += sdl2_ime_default_vertical_offset;
#endif
// </FS:Zi>
getWindow()->setLanguageTextInput( ime_pos );
}
}

View File

@ -39,6 +39,7 @@
#include "llstring.h"
#include "lldir.h"
#include "llfindlocale.h"
#include "llframetimer.h"
#ifdef LL_GLIB
#include <glib.h>
@ -390,6 +391,10 @@ LLWindowSDL::LLWindowSDL(LLWindowCallbacks* callbacks,
mIsMinimized = -1;
mFSAASamples = fsaa_samples;
// IME - International input compositing, i.e. for Japanese / Chinese text input
// Preeditor means here the actual XUI input field currently in use
mPreeditor = nullptr;
#if LL_X11
mSDL_XWindowID = None;
mSDL_Display = NULL;
@ -654,6 +659,10 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B
SDL_SetHint( SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR, "0" );
SDL_SetHint(SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH, "1");
// IME - International input compositing, i.e. for Japanese / Chinese text input
// Request the IME interface to show over-the-top compositing while typing
SDL_SetHint( SDL_HINT_IME_INTERNAL_EDITING, "1");
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO ) < 0 )
{
LL_INFOS() << "sdl_init() failed! " << SDL_GetError() << LL_ENDL;
@ -1758,6 +1767,7 @@ void LLWindowSDL::gatherInput()
static int rightClick = 0;
static Uint32 lastLeftDown = 0;
static Uint32 lastRightDown = 0;
static U64 previousTextinputTime = 0;
SDL_Event event;
// Handle all outstanding SDL events
@ -1796,9 +1806,10 @@ void LLWindowSDL::gatherInput()
else
handleUnicodeUTF16(key, mKeyModifiers);
}
previousTextinputTime = LLFrameTimer::getTotalTime();
break;
}
case SDL_KEYDOWN:
mKeyVirtualKey = event.key.keysym.sym;
mKeyModifiers = event.key.keysym.mod;
@ -1810,6 +1821,19 @@ void LLWindowSDL::gatherInput()
mKeyVirtualKey = SDLK_RETURN;
}
if (mKeyVirtualKey == SDLK_RETURN)
{
// block spurious enter key events that break up IME entered lines in teh wrong places
U64 eventTimeDiff = LLFrameTimer::getTotalTime() - previousTextinputTime;
previousTextinputTime = 0;
if (eventTimeDiff < 20000)
{
LL_INFOS() << "SDL_KEYDOWN(SDLK_RETURN) event came too fast after SDL_TEXTINPUT, blocked - Time: " << eventTimeDiff << LL_ENDL;
break;
}
}
gKeyboard->handleKeyDown(mKeyVirtualKey, mKeyModifiers );
// <FS:ND> Slightly hacky :| To make the viewer honor enter (eg to accept form input) we've to not only send handleKeyDown but also send a
@ -2646,4 +2670,51 @@ void LLWindowSDL::toggleVSync(bool enable_vsync)
}
// </FS:Zi>
// IME - International input compositing, i.e. for Japanese / Chinese text input
// Put the IME window at the right place (near current text input).
// Point coordinates should be the top of the current text line.
void LLWindowSDL::setLanguageTextInput(const LLCoordGL& position)
{
LLCoordWindow win_pos;
convertCoords( position, &win_pos );
SDL_Rect r;
r.x = win_pos.mX;
r.y = win_pos.mY;
r.w = 500;
r.h = 16;
SDL_SetTextInputRect(&r);
}
// IME - International input compositing, i.e. for Japanese / Chinese text input
void LLWindowSDL::allowLanguageTextInput(LLPreeditor *preeditor, BOOL b)
{
if (preeditor != mPreeditor && !b)
{
// This condition may occur with a call to
// setEnabled(BOOL) from LLTextEditor or LLLineEditor
// when the control is not focused.
// We need to silently ignore the case so that
// the language input status of the focused control
// is not disturbed.
return;
}
// Take care of old and new preeditors.
if (preeditor != mPreeditor || !b)
{
mPreeditor = (b ? preeditor : nullptr);
}
if (b)
{
SDL_StartTextInput();
}
else
{
SDL_StopTextInput();
}
}
#endif // LL_SDL

View File

@ -128,6 +128,9 @@ public:
/*virtual*/ void *getPlatformWindow();
/*virtual*/ void bringToFront();
/*virtual*/ void allowLanguageTextInput(LLPreeditor* preeditor, BOOL b);
/*virtual*/ void setLanguageTextInput(const LLCoordGL& pos);
/*virtual*/ void spawnWebBrowser(const std::string& escaped_url, bool async);
/*virtual*/ void openFile(const std::string& file_name);
@ -201,6 +204,7 @@ protected:
SDL_Surface* mSurface;
SDL_GLContext mContext;
SDL_Cursor* mSDLCursors[UI_CURSOR_COUNT];
LLPreeditor* mPreeditor;
std::string mWindowTitle;
double mOriginalAspectRatio;

View File

@ -26214,5 +26214,38 @@ Change of this parameter will affect the layout of buttons in notification toast
<key>Value</key>
<integer>0</integer>
</map>
<key>SDL2IMEDefaultVerticalOffset</key>
<map>
<key>Comment</key>
<string>Default vertical offset to apply to the international input method editor for Japanese, Chinese, etc.</string>
<key>Persist</key>
<integer>1</integer>
<key>Type</key>
<string>S32</string>
<key>Value</key>
<integer>18</integer>
</map>
<key>SDL2IMEChatHistoryVerticalOffset</key>
<map>
<key>Comment</key>
<string>Chat History: Vertical offset to apply to the international input method editor for Japanese, Chinese, etc.</string>
<key>Persist</key>
<integer>1</integer>
<key>Type</key>
<string>S32</string>
<key>Value</key>
<integer>14</integer>
</map>
<key>SDL2IMEMediaVerticalOffset</key>
<map>
<key>Comment</key>
<string>Media: Vertical offset to apply to the international input method editor for Japanese, Chinese, etc.</string>
<key>Persist</key>
<integer>1</integer>
<key>Type</key>
<string>S32</string>
<key>Value</key>
<integer>-4</integer>
</map>
</map>
</llsd>

View File

@ -69,6 +69,10 @@
#include "llviewermenu.h"
#include "llviewernetwork.h"
#if LL_SDL2
#include "llwindow.h"
#endif
#include "fscommon.h"
#include "llchatentry.h"
#include "llfocusmgr.h"
@ -1267,6 +1271,50 @@ FSChatHistory::~FSChatHistory()
this->clear();
}
void FSChatHistory::updateChatInputLine()
{
if(!mChatInputLine)
{
// get our focus root
LLUICtrl* focusRoot=findRootMostFocusRoot();
if(focusRoot)
{
// focus on the next item that is a text input control
focusRoot->focusNextItem(true);
// remember the control's pointer if it really is a LLLineEditor
mChatInputLine = dynamic_cast<LLChatEntry*>(gFocusMgr.getKeyboardFocus());
}
}
}
#if LL_SDL2
void FSChatHistory::setFocus(BOOL b)
{
LLTextEditor::setFocus(b);
// IME - International input compositing, i.e. for Japanese / Chinese text input
updateChatInputLine();
if (b && mChatInputLine)
{
// Make sure the IME is in the right place, on top of the input line
LLRect screen_pos = mChatInputLine->calcScreenRect();
LLCoordGL ime_pos(screen_pos.mLeft, screen_pos.mBottom + gSavedSettings.getS32("SDL2IMEChatHistoryVerticalOffset"));
// shift by a few pixels so the IME doesn't pop to the left side when the input
// field is very close to the left edge
ime_pos.mX = (S32) (ime_pos.mX * LLUI::getScaleFactor().mV[VX]) + 5;
ime_pos.mY = (S32) (ime_pos.mY * LLUI::getScaleFactor().mV[VY]);
getWindow()->setLanguageTextInput(ime_pos);
}
// this floater is not an LLPreeditor but we are only interested in the pointer anyway
// so hopefully we will get away with this
getWindow()->allowLanguageTextInput((LLPreeditor*) this, true);
}
#endif
void FSChatHistory::initFromParams(const FSChatHistory::Params& p)
{
// initialize the LLTextEditor base class first ... -Zi
@ -1851,19 +1899,8 @@ BOOL FSChatHistory::handleUnicodeCharHere(llwchar uni_char)
return LLTextEditor::handleUnicodeCharHere(uni_char);
}
// we don't know which is our chat input line yet
if(!mChatInputLine)
{
// get our focus root
LLUICtrl* focusRoot=findRootMostFocusRoot();
if(focusRoot)
{
// focus on the next item that is a text input control
focusRoot->focusNextItem(true);
// remember the control's pointer if it really is a LLLineEditor
mChatInputLine = dynamic_cast<LLChatEntry*>(gFocusMgr.getKeyboardFocus());
}
}
// we might not know which is our chat input line yet
updateChatInputLine();
// do we know our chat input line now?
if(mChatInputLine)

View File

@ -96,8 +96,17 @@ class FSChatHistory : public LLTextEditor // <FS:Zi> FIRE-8600: TAB out of chat
*/
LLView* getHeader(const LLChat& chat,const LLStyle::Params& style_params, const LLSD& args);
// try to fill in mChatInputLine
void updateChatInputLine();
public:
~FSChatHistory();
#if LL_SDL2
// IME - International input compositing, i.e. for Japanese / Chinese text input
/* virtual */ void setFocus(BOOL b);
#endif
LLSD getValue() const;
void initFromParams(const Params&);

View File

@ -48,6 +48,12 @@
#include "llviewermenu.h"
#include "llviewermenufile.h" // LLFilePickerThread
// <FS:Zi> IME - International input compositing, i.e. for Japanese / Chinese text input
#if LL_SDL2
#include "llwindow.h"
#endif
// </FS:Zi>
// linden library includes
#include "llfocusmgr.h"
#include "llsdutil.h"
@ -411,6 +417,34 @@ void LLMediaCtrl::onFocusLost()
// This might go away later.
void LLMediaCtrl::setFocus(BOOL b)
{
// <FS:Zi> IME - International input compositing, i.e. for Japanese / Chinese text input
#if LL_SDL2
// IME - International input compositing, i.e. for Japanese / Chinese text input
// Caveat: we currently don't know the position of the input cursor inside the
// media control box, so the IME will pop up somewhere at the top instead,
// which is not ideal and needs more research
if (b)
{
// Make sure the IME is in the right place, on top of the input line
LLRect screen_pos = calcScreenRect();
LLCoordGL ime_pos(screen_pos.mLeft, screen_pos.mTop + gSavedSettings.getS32("SDL2IMEMediaVerticalOffset"));
// shift by a few pixels so the IME doesn't pop to the left side when the nedia
// control is very close to the left edge
ime_pos.mX = (S32) (ime_pos.mX * LLUI::getScaleFactor().mV[VX]) + 5;
ime_pos.mY = (S32) (ime_pos.mY * LLUI::getScaleFactor().mV[VY]);
getWindow()->setLanguageTextInput(ime_pos);
}
// this floater is not an LLPreeditor but we are only interested in the pointer anyway
// so hopefully we will get away with this
getWindow()->allowLanguageTextInput((LLPreeditor*) this, b);
#endif
// </FS:Zi>
if (b)
{
onFocusReceived();

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<menu_item_call label="Kort" name="show_on_map"/>
<menu_item_call label="Betal" name="pay"/>
<menu_item_call label="Del" name="share"/>
<menu_item_call label="Blokér" name="block"/>
<menu_item_call label="Fjern blokering" name="unblock"/>
<menu_item_call label="Spark" name="kick"/>
<menu_item_call label="Frys" name="freeze"/>
<menu_item_call label="Fjern frys" name="unfreeze"/>
<menu_item_call label="Kundeservicemedarbejder (CSR)" name="csr"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Redigér annoncer" name="panel_edit_classified">
<panel.string name="location_notice">
(vil blive opdateret efter gemning)
</panel.string>
<string name="publish_label">
Publicér
</string>
<string name="save_label">
Gem
</string>
<text name="title">
Rediger annonce
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Klik for at vælge et billede"/>
</panel>
<text name="Name:">
Titel:
</text>
<text name="description_label">
Beskrivelse:
</text>
<text name="location_label">
Lokation:
</text>
<text name="classified_location">
henter...
</text>
<button label="Sæt til nuværende lokation" name="set_to_curr_location_btn"/>
<text name="category_label" value="Kategori:"/>
<text name="content_type_label" value="Indholdstype:"/>
<icons_combo_box label="Generelt" name="content_type">
<icons_combo_box.item label="Moderat" name="mature_ci" value="Voksent"/>
<icons_combo_box.item label="Generelt" name="pg_ci" value="PG"/>
</icons_combo_box>
<check_box label="Forny automatisk hver uge" name="auto_renew"/>
<text name="price_for_listing_label" value="Pris for optagelse:"/>
<spinner label="L$" name="price_for_listing" tool_tip="Pris for optagelse." value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Annullér" 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="Redigér Pick" name="panel_edit_pick">
<panel.string name="location_notice">
(vil blive opdateret ved gemning)
</panel.string>
<text name="title">
Redigér favorit
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Klik for at vælge billede"/>
<text name="Name:">
Titel:
</text>
<text name="description_label">
Beskrivelse:
</text>
<text name="location_label">
Lokation:
</text>
<text name="pick_location">
henter...
</text>
<button label="Sæt til nuværende lokation" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Gem valgte" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="Annullér" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,73 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Redigér profil" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE]
[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW]
</string>
<!-- The previous line was [PAYMENTINFO] [AGEVERIFICATION], but they're not
sending the latter any more. ...TS -->
<string
name="FSDev"
value=" Developer" />
<string
name="FSSupp"
value=" Support" />
<string
name="FSQualityAssurance"
value=" Bug Hunter" />
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="Beboer"/>
<string name="AcctTypeTrial" value="På prøve"/>
<string name="AcctTypeCharterMember" value="æresmedlem"/>
<string name="AcctTypeEmployee" value="Linden Lab medarbejder"/>
<string name="PaymentInfoUsed" value="Betalende medlem"/>
<string name="PaymentInfoOnFile" value="Registreret betalende"/>
<string name="NoPaymentInfoOnFile" value="Ingen betalingsinfo"/>
<string name="AgeVerified" value="Alders-checket"/>
<string name="NotAgeVerified" value="Ikke alders-checket"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=da
</string>
<string name="no_partner_text" value="Ingen"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="data_panel">
<text name="display_name_label" value="Visningsnavn:"/>
<text name="solo_username_label" value="Bugernavn:"/>
<button name="set_name" tool_tip="Sæt visningsnavn"/>
<text name="user_label" value="Brugernavn:"/>
<panel name="lifes_images_panel">
<icon label="" name="2nd_life_edit_icon" tool_tip="Klik for at vælge et billede"/>
</panel>
<panel name="first_life_image_panel">
<text name="real_world_photo_title_text" value="Real World:"/>
</panel>
<icon label="" name="real_world_edit_icon" tool_tip="Klik for at vælge et billede"/>
<text name="title_homepage_text">
Hjemmeside:
</text>
<check_box label="Vis mig i søgeresultater" name="show_in_search_checkbox"/>
<text name="title_acc_status_text" value="Min konto:"/>
<text_editor name="acc_status_text" value="Beboer. Ingen betalingsinfo."/>
<text name="my_account_link" value="[[URL] Go to My Dashboard]"/>
<text name="title_partner_text" value="Min partner:"/>
<panel name="partner_data_panel">
<text initial_value="(henter)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] Edit]"/>
</panel>
</panel>
</scroll_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="Gem ændringer" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Annullér" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="Favorit info"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[name]"/>
<text_editor name="pick_location" value="[loading...]"/>
<text_editor name="pick_desc" value="[description]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Teleport" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Kort" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Rediger" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Favoritter" name="panel_picks">
<string name="no_picks" value="Ingen favoritter"/>
<string name="no_classifieds" value="Ingen annoncer"/>
<accordion name="accordion">
<accordion_tab name="tab_picks" title="Favoritter"/>
<accordion_tab name="tab_classifieds" title="Annoncer"/>
</accordion>
<panel label="bottom_panel" name="edit_panel">
<layout_stack name="edit_panel_ls">
<layout_panel name="gear_menu_btn">
<button name="new_btn" tool_tip="Opret favorit eller annonce på nuværende lokation"/>
</layout_panel>
</layout_stack>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="Info" name="info_btn" tool_tip="Vis favoritinformation"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Teleport" name="teleport_btn" tool_tip="Teleportér til tilsvarende område"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Kort" name="show_on_map_btn" tool_tip="Vis tilsvarende område på verdenskort"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu name="Conversation Gear Menu">
<menu_item_check label="Farbe" name="Color"/>
<menu_item_check label="Transparenz" name="Transparency"/>
<menu_item_check label="Leuchten" name="Glow"/>
<menu_item_check label="Textur" name="Diffuse"/>
<menu_item_check label="Holprigkeit" name="Normal"/>
<menu_item_check label="Glanz" name="Specular"/>
<menu_item_check label="Mapping" name="Mapping"/>
<menu_item_check label="Medien" name="Media"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Anzeige bearbeiten" name="panel_edit_classified">
<panel.string name="location_notice">
(wird nach Speichern aktualisiert)
</panel.string>
<string name="publish_label">
Veröffentlichen
</string>
<string name="save_label">
Speichern
</string>
<text name="title">
Anzeige bearbeiten
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Klicken, um ein Bild auszuwählen"/>
</panel>
<text name="Name:">
Titel:
</text>
<text name="description_label">
Beschreibung:
</text>
<text name="location_label">
Standort:
</text>
<text name="classified_location">
wird geladen...
</text>
<button label="Aktuellen Standort verwenden" name="set_to_curr_location_btn"/>
<text name="category_label" value="Kategorie:"/>
<text name="content_type_label" value="Inhaltsart:"/>
<icons_combo_box label="Genereller Inhalt" name="content_type">
<icons_combo_box.item label="Moderater Inhalt" name="mature_ci" value="Moderat"/>
<icons_combo_box.item label="Genereller Inhalt" name="pg_ci" value="G"/>
</icons_combo_box>
<check_box label="Jede Woche automatisch erneuern" name="auto_renew"/>
<text name="price_for_listing_label" value="Preis für Anzeige:"/>
<spinner label="L$" name="price_for_listing" tool_tip="Preis für Anzeige." value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="Abbrechen" 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="Auswahl bearbeiten" name="panel_edit_pick">
<panel.string name="location_notice">
(wird nach Speichern aktualisiert)
</panel.string>
<text name="title">
Auswahl bearbeiten
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Klicken, um ein Bild auszuwählen"/>
<text name="Name:">
Titel:
</text>
<text name="description_label">
Beschreibung:
</text>
<text name="location_label">
Standort:
</text>
<text name="pick_location">
wird geladen...
</text>
<button label="Aktuellen Standort verwenden" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Auswahl speichern" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="Abbrechen" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,80 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Profil bearbeiten" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE]
[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW]
</string>
<!-- The previous line was [PAYMENTINFO] [AGEVERIFICATION], but they're not
sending the latter any more. ...TS -->
<string
name="FSDev"
value="-Entwickler" />
<string
name="FSSupp"
value="-Support" />
<string
name="FSQualityAssurance"
value="-Bug-Hunter" />
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="Einwohner"/>
<string name="AcctTypeTrial" value="Test"/>
<string name="AcctTypeCharterMember" value="Charta-Mitglied"/>
<string name="AcctTypeEmployee" value="Linden Lab-Mitarbeiter"/>
<string name="PaymentInfoUsed" value="Zahlungsinfo verwendet"/>
<string name="PaymentInfoOnFile" value="Zahlungsinfo archiviert"/>
<string name="NoPaymentInfoOnFile" value="Keine Zahlungsinfo archiviert"/>
<string name="AgeVerified" value="Altersgeprüft"/>
<string name="NotAgeVerified" value="Nicht altersgeprüft"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=de
</string>
<string name="my_account_link_url">
http://de.secondlife.com/my
</string>
<string name="no_partner_text" value="Keiner"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="data_panel">
<text name="display_name_label" value="Anzeigename:"/>
<text name="solo_username_label" value="Benutzername:"/>
<button name="set_name" tool_tip="Anzeigenamen festlegen"/>
<text name="user_label" value="Benutzername:"/>
<panel name="lifes_images_panel">
<panel name="second_life_image_panel">
<text name="second_life_photo_title_text" value="[CURRENT_GRID]:"/>
</panel>
<icon label="" name="2nd_life_edit_icon" tool_tip="Klicken, um ein Bild auszuwählen"/>
</panel>
<panel name="first_life_image_panel">
<text name="real_world_photo_title_text" value="Echtes Leben:"/>
</panel>
<icon label="" name="real_world_edit_icon" tool_tip="Klicken, um ein Bild auszuwählen"/>
<text name="title_homepage_text">
Webseite:
</text>
<line_editor name="homepage_edit" value="http://"/>
<check_box label="In Suchergebnissen anzeigen" name="show_in_search_checkbox"/>
<text name="title_acc_status_text" value="Mein Konto:"/>
<text_editor name="acc_status_text" value="Einwohner. Keine Zahlungsinfo archiviert."/>
<text name="my_account_link" value="[[URL] Meine Startseite aufrufen]"/>
<text name="title_partner_text" value="Mein Partner:"/>
<panel name="partner_data_panel">
<text initial_value="(wird in Datenbank gesucht)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] bearbeiten]"/>
</panel>
</panel>
</scroll_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="Änderungen speichern" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Abbrechen" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="Auswahl-Info"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[name]"/>
<text_editor name="pick_location" value="[wird geladen...]"/>
<text_editor name="pick_desc" value="[description]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Teleportieren" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Karte" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Bearbeiten" 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 label="Auswahl" name="panel_picks">
<string name="no_picks" value="Keine Auswahl"/>
<string name="no_classifieds" value="Keine Anzeigen"/>
<tab_container name="accordion">
<panel name="tab_picks" title="Auswahl"/>
<panel name="tab_classifieds" title="Anzeigen"/>
</tab_container>
<panel label="bottom_panel" name="edit_panel">
<button name="new_btn" tool_tip="An aktuellem Standort neue Auswahl oder Anzeige erstellen"/>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="Info" name="info_btn" tool_tip="Informationen zur Auswahl anzeigen"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Teleportieren" name="teleport_btn" tool_tip="Zu entsprechendem Standort teleportieren"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Karte" name="show_on_map_btn" tool_tip="Den entsprechenden Standort auf der Karte anzeigen"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Copiar Nombre mostrado" name="copy_display"/>
<menu_item_call label="Copiar Nombre de agente" name="copy_name"/>
<menu_item_call label="Copiar ID de agente" name="copy_id"/>
</toggleable_menu>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<menu_item_call label="Compartir" name="share"/>
<menu_item_call label="Llamar" name="call"/>
<menu_item_call label="Copiar nombre" name="copy_name_to_clipboard"/>
<menu_item_call label="Copiar URI" name="copy_uri_to_clipboard"/>
<menu_item_call label="Copiar UUID" name="copy_key_to_clipboard"/>
<menu_item_call label="Expulsar" name="kick"/>
<menu_item_call label="Congelar" name="freeze"/>
<menu_item_call label="Descongelar" name="unfreeze"/>
<menu_item_call label="CSR" name="csr"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Editar el clasificado" name="panel_edit_classified">
<panel.string name="location_notice">
(se actualizará tras guardarlo)
</panel.string>
<string name="publish_label">
Publicar
</string>
<string name="save_label">
Guardar
</string>
<text name="title">
Editar el clasificado
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Pulsa para elegir una imagen"/>
</panel>
<text name="Name:">
Título:
</text>
<text name="description_label">
Descripción:
</text>
<text name="location_label">
Localización:
</text>
<text name="classified_location">
cargando...
</text>
<button label="Configurar en esta posición" name="set_to_curr_location_btn"/>
<text name="category_label" value="Categoría:"/>
<text name="content_type_label" value="Tipo de contenido:"/>
<icons_combo_box label="Contenido general" name="content_type">
<icons_combo_box.item label="Contenido moderado" name="mature_ci" value="Moderado"/>
<icons_combo_box.item label="Contenido general" name="pg_ci" value="General"/>
</icons_combo_box>
<check_box label="Renovar automáticamente cada semana" name="auto_renew"/>
<text name="price_for_listing_label" value="Precio por publicarlo:"/>
<spinner label="L$" name="price_for_listing" tool_tip="Precio por publicarlo." value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="Cancelar" 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="Editar el destacado" name="panel_edit_pick">
<panel.string name="location_notice">
(se actualizará tras guardarlo)
</panel.string>
<text name="title">
Editar el destacado
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Pulsa para elegir una imagen"/>
<text name="Name:">
Título:
</text>
<text name="description_label">
Descripción:
</text>
<text name="location_label">
Posición:
</text>
<text name="pick_location">
cargando...
</text>
<button label="Configurar en mi posición" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Guardar" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="Cancelar" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,65 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Editar mi perfil" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE] [PAYMENTINFO] [FSDEV][FSSUPP][FSQA][FSGW][FIRESTORM]
</string>
<string name="FSDev" value="Desarrollador "/>
<string name="FSSupp" value="Soporte " />
<string name="FSQualityAssurance" value="Bug Hunter " />
<string name="FSGW" value="Gateway "/>
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="Residente"/>
<string name="AcctTypeTrial" value="Prueba"/>
<string name="AcctTypeCharterMember" value="Miembro fundador"/>
<string name="AcctTypeEmployee" value="Empleado de Linden Lab"/>
<string name="PaymentInfoUsed" value="Ha usado una forma de pago"/>
<string name="PaymentInfoOnFile" value="Hay info. de la forma de pago"/>
<string name="NoPaymentInfoOnFile" value="Sin info. de la forma de pago"/>
<string name="AgeVerified" value="Edad verificada"/>
<string name="NotAgeVerified" value="Edad no verificada"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=es
</string>
<string name="no_partner_text" value="Ninguna"/>
<tab_container name="profile_accordion">
<panel name="sl_data_panel" title="Avatar">
<text name="display_name_label" value="Displayname:"/>
<text name="solo_username_label" value="Nombre de usuario:"/>
<button name="set_name" tool_tip="Establecer Displayname"/>
<text name="user_name" value="(cargando...)"/>
<text name="solo_user_name" value="(cargando...)"/>
<text name="user_label" value="Nombre de usuario:"/>
<text name="user_slid" value="(cargando...)"/>
<panel name="lifes_images_panel">
<icon name="2nd_life_edit_icon" tool_tip="Pulsa para elegir una imagen"/>
</panel>
<check_box label="Mostrarme en resultados de búsqueda" name="show_in_search_checkbox"/>
<text name="title_acc_status_text" value="Información de cuenta:"/>
<text_editor name="acc_status_text" value="Residente. Sin información de pago."/>
<text name="my_account_link" value="[[URL] Ir a mi panel de control]"/>
<text name="title_partner_text" value="Pareja:"/>
<text name="partner_edit_link" value="[[URL] Editar]"/>
</panel>
<panel name="rl_data_panel" title="Más información">
<text name="rl_picture_caption" value="Imagen adicional"/>
<panel name="first_life_image_panel">
<icon name="real_world_edit_icon" tool_tip="Pulsa para elegir una imagen"/>
</panel>
<text name="title_homepage_text">
Página web:
</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="Guardar cambios" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Cancelar" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="Datos del destacado"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[nombre]"/>
<text_editor name="pick_location" value="[cargando...]"/>
<text_editor name="pick_desc" value="[descripción]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Teleporte" 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="Editar" 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 label="Destacados" name="panel_picks">
<string name="no_picks" value="No hay destacados"/>
<string name="no_classifieds" value="No hay clasificados"/>
<accordion name="accordion">
<accordion_tab name="tab_picks" title="Destacados"/>
<accordion_tab name="tab_classifieds" title="Clasificados"/>
</accordion>
<panel label="bottom_panel" name="edit_panel">
<button name="new_btn" tool_tip="Crear un nuevo destacado o clasificado de la posición actual"/>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="Información" name="info_btn" tool_tip="Mostrar la información del destacado"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Teleporte" name="teleport_btn" tool_tip="Teleportar a esta zona"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Mapa" name="show_on_map_btn" tool_tip="Mostrar esta zona en el mapa del mundo"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Copier le Nom d&apos;affichage" name="copy_display"/>
<menu_item_call label="Copier le Nom de l&apos;agent" name="copy_name"/>
<menu_item_call label="Copier l&apos;ID de l&apos;agent" name="copy_id"/>
</toggleable_menu>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<menu_item_call label="Partager" name="share"/>
<menu_item_call label="Appel vocal" name="call"/>
<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="Geler" name="freeze"/>
<menu_item_call label="Dégeler" name="unfreeze"/>
<menu_item_call label="CSR" name="csr"/>
<menu_item_call label="Signaler" name="report"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Modifier la petite annonce" name="panel_edit_classified">
<panel.string name="location_notice">
(mise à jour après l&apos;enregistrement)
</panel.string>
<string name="publish_label">
Publier
</string>
<string name="save_label">
Enregistrer
</string>
<text name="title">
Modifier la petite annonce
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Cliquer pour sélectionner une image"/>
</panel>
<text name="Name:">
Titre :
</text>
<text name="description_label">
Description :
</text>
<text name="location_label">
Lieu :
</text>
<text name="classified_location">
en cours de chargement...
</text>
<button label="Définir sur l&apos;emplacement 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">
<icons_combo_box.item label="Contenu Modéré" name="mature_ci" value="Mature"/>
<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"/>
<text name="price_for_listing_label" value="Coût de l&apos;annonce :"/>
<spinner label="L$" name="price_for_listing" tool_tip="Coût de l&apos;annonce." value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_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>
</layout_stack>
</panel>
</panel>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Modifier le favori" name="panel_edit_pick">
<panel.string name="location_notice">(mise à jour après enregistrement)</panel.string>
<text name="title">Modifier le favori</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon name="edit_icon" tool_tip="Cliquez pour sélectionner une image"/>
<text name="Name:">Titre :</text>
<text name="description_label">Description :</text>
<text name="location_label">Emplacement :</text>
<text name="pick_location">Chargement ...</text>
<button label="Définir à l'emplacement actuel" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1"><button label="Enregistrer le favori" name="save_changes_btn"/></layout_panel>
<layout_panel name="layout_panel2"><button label="Annuler" name="cancel_btn"/></layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Modification du profil" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE]
[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW]
</string>
<string name="RegisterDateFormat">[REG_DATE] ([AGE])</string>
<tab_container name="profile_accordion">
<panel name="sl_data_panel" title="Avatar">
<button name="set_name" tool_tip="Définir un nom d'affichage"/>
<panel name="lifes_images_panel"><icon name="2nd_life_edit_icon" tool_tip="Cliquez pour sélectionner une image"/></panel>
<check_box label="Me lister dans les résultats de recherche" name="show_in_search_checkbox"/>
</panel>
<panel name="rl_data_panel" title="Plus d'infos">
<panel name="first_life_image_panel"><icon name="real_world_edit_icon" tool_tip="Cliquez pour sélectionner une image"/></panel>
<text name="title_homepage_text">Site Web :</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="Enregistrer" name="save_btn"/></layout_panel>
<layout_panel name="show_on_map_btn_lp"><button label="Annuler" name="cancel_btn"/></layout_panel>
</layout_stack>
</panel>
</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="Favori"/>
<scroll_container name="profile_scroll" >
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="(Chargement...)" />
<text_editor name="pick_location" value="(Chargement...)"/>
<text_editor name="pick_desc" value="(Chargement...)"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Téléporter" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_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_stack>
</panel>
</panel>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Favoris" name="panel_picks">
<string name="no_picks" value="Pas de favoris"/>
<string name="no_classifieds" value="Pas d'annonces"/>
<tab_container name="accordion">
<panel name="tab_picks" title="Favoris"/>
<panel name="tab_classifieds" title="Annonces"/>
</tab_container>
<panel label="bottom_panel" name="edit_panel">
<button name="new_btn" tool_tip="Créez un nouveau favori ou une annonce à l'emplacement actuel"/>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp"><button label="Infos" name="info_btn" tool_tip="Afficher les informations du favori"/></layout_panel>
<layout_panel name="teleport_btn_lp"><button label="Téléporter" name="teleport_btn" tool_tip="Se téléporter à l'endroit correspondant"/></layout_panel>
<layout_panel name="show_on_map_btn_lp"><button label="Carte" name="show_on_map_btn" tool_tip="Afficher l'endroit correspondant sur la carte"/></layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Copia Nome Visualizzato" name="copy_display"/>
<menu_item_call label="Copia Nome Agente" name="copy_name"/>
<menu_item_call label="Copia ID Agente" name="copy_id"/>
</toggleable_menu>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<menu_item_call label="Condividi" name="share"/>
<menu_item_call label="Chiama" name="call"/>
<menu_item_call label="Copia nome" name="copy_name_to_clipboard"/>
<menu_item_call label="Copia URI" name="copy_uri_to_clipboard"/>
<menu_item_call label="Copia UUID" name="copy_key_to_clipboard"/>
<menu_item_call label="Espelli" name="kick"/>
<menu_item_call label="Congela" name="freeze"/>
<menu_item_call label="Scongela" name="unfreeze"/>
<menu_item_call label="CSR" name="csr"/>
<menu_item_call label="Segnala" name="report"/>
</toggleable_menu>

View File

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Modifica inserzione" name="panel_edit_classified">
<panel.string name="location_notice">
(si aggiornerà dopo il salvataggio)
</panel.string>
<string name="publish_label">
Pubblica
</string>
<string name="save_label">
Salva
</string>
<text name="title">
Modifica inserzione
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Clicca per selezionare un&apos;immagine"/>
</panel>
<text name="Name:">
Titolo:
</text>
<text name="description_label">
Descrizione:
</text>
<text name="location_label">
Luogo:
</text>
<text name="classified_location">
caricamento...
</text>
<button label="Imposta come luogo attuale" name="set_to_curr_location_btn"/>
<text name="category_label" value="Categoria:"/>
<text name="content_type_label" value="Tipo di contenuto:"/>
<icons_combo_box label="Contenuto generale" name="content_type">
<icons_combo_box.item label="Contenuto moderato" name="mature_ci" value="Moderato"/>
<icons_combo_box.item label="Contenuto generale" name="pg_ci" value="Generale"/>
</icons_combo_box>
<check_box label="Rinnovo automatico ogni settimana" name="auto_renew"/>
<text name="price_for_listing_label" value="Prezzo per inserzione:"/>
<spinner name="price_for_listing" tool_tip="Prezzo per inserzione:"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="cancel_btn_lp">
<button label="Annulla" 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="Modifica preferito" name="panel_edit_pick">
<panel.string name="location_notice">
(si aggiornerà dopo il salvataggio)
</panel.string>
<text name="title">
Modifica preferito
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Clicca per selezionare un&apos;immagine"/>
<text name="Name:">
Titolo:
</text>
<text name="description_label">
Descrizione:
</text>
<text name="location_label">
Luogo:
</text>
<text name="pick_location">
caricamento...
</text>
<button label="Imposta come luogo attuale" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Salva luogo preferito" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="Annulla" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,57 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Modifica profilo" name="edit_profile_panel">
<string name="FSDev" value=" Programmatore"/>
<string name="FSSupp" value=" Supporto"/>
<string name="FSQualityAssurance" value=" Controllo qualità"/>
<string name="AcctTypeResident" value="Residente"/>
<string name="AcctTypeTrial" value="Prova"/>
<string name="AcctTypeCharterMember" value="Membro privilegiato"/>
<string name="AcctTypeEmployee" value="Impiegato della Linden Lab"/>
<string name="PaymentInfoUsed" value="Info di pagamento usate"/>
<string name="PaymentInfoOnFile" value="Info di pagamento in archivio"/>
<string name="NoPaymentInfoOnFile" value="Nessuna info di pagamento"/>
<string name="AgeVerified" value="Età verificata"/>
<string name="NotAgeVerified" value="Età non verificata"/>
<string name="no_partner_text" value="Nessuno"/>
<tab_container name="profile_accordion">
<panel name="sl_data_panel" title="Avatar">
<text name="display_name_label" value="Nome visualizzato:"/>
<text name="solo_username_label" value="Nome utente:"/>
<button name="set_name" tool_tip="Imposta nome visualizzato"/>
<text name="user_name" value="(caricamento...)"/>
<text name="solo_user_name" value="(caricamento...)"/>
<text name="user_name_small" value="(caricamento...)"/>
<text name="user_label" value="Nome utente:"/>
<text name="user_slid" value="(caricamento...)"/>
<panel name="lifes_images_panel">
<icon name="2nd_life_edit_icon" tool_tip="Clicca per selezionare un&apos;immagine"/>
</panel>
<check_box label="Mostra nelle ricerche" name="show_in_search_checkbox"/>
<text_editor name="acc_status_text" value="Residente. Nessuna informazione di pagamento."/>
<text name="my_account_link" value="[[URL] vai al pannello]"/>
<panel name="partner_data_panel">
<text initial_value="(caricamento)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] Modifica]"/>
</panel>
<panel name="rl_data_panel" title="Altro">
<text name="rl_picture_caption" value="Altra immagine"/>
<panel name="first_life_image_panel">
<icon name="real_world_edit_icon" tool_tip="Clicca per selezionare un&apos;immagine"/>
</panel>
<text name="title_homepage_text">
Pagina web:
</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="Salva modifiche" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Annulla" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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 preferito"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[nome]"/>
<text_editor name="pick_location" value="[caricamento...]"/>
<text_editor name="pick_desc" value="[descrizione]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Teleport" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Mappa" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Modifica" 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 label="Preferiti" name="panel_picks">
<string name="no_picks" value="Nessun luogo preferito"/>
<string name="no_classifieds" value="Nessuna inserzione"/>
<tab_container name="accordion">
<panel name="tab_picks" title="Preferiti"/>
<panel name="tab_classifieds" title="Inserzioni pubblicitarie"/>
</tab_container>
<panel name="edit_panel">
<button name="new_btn" tool_tip="Crea un preferito o una inserzione in questo luogo"/>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="Informazioni" name="info_btn" tool_tip="Mostra informazioni sul luogo selezionato"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Teleport" name="teleport_btn" tool_tip="Teleport al luogo selezionato"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Mappa" name="show_on_map_btn" tool_tip="Mostra il luogo selezionato sulla mappa"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

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>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<menu_item_call label="共有" name="share"/>
<menu_item_call label="ボイスコール" name="call" />
<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="CSR" name="csr"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="クラシファイド広告の編集" name="panel_edit_classified">
<panel.string name="location_notice">
(掲載後更新)
</panel.string>
<string name="publish_label">
掲載
</string>
<string name="save_label">
保存
</string>
<text name="title">
クラシファイド広告の編集
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="クリックして画像を選択"/>
</panel>
<text name="Name:">
タイトル:
</text>
<text name="description_label">
説明:
</text>
<text name="location_label">
位置:
</text>
<text name="classified_location">
ローディング...
</text>
<button label="現在地に設定" name="set_to_curr_location_btn"/>
<text name="category_label" value="カテゴリ:"/>
<text name="content_type_label" value="内容の種類:"/>
<icons_combo_box label="「General」コンテンツ" name="content_type">
<icons_combo_box.item label="「Moderate」コンテンツ" name="mature_ci" value="Mature"/>
<icons_combo_box.item label="「General」コンテンツ" name="pg_ci" value="PG"/>
</icons_combo_box>
<check_box label="毎週自動更新" name="auto_renew"/>
<text name="price_for_listing_label" value="掲載価格:"/>
<spinner label="L$" name="price_for_listing" tool_tip="掲載価格" value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="キャンセル" 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="ピック編集" name="panel_edit_pick">
<panel.string name="location_notice">
(掲載後更新)
</panel.string>
<text name="title">
ピック編集
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="クリックして画像を選択"/>
<text name="Name:">
タイトル:
</text>
<text name="description_label">
説明:
</text>
<text name="location_label">
場所:
</text>
<text name="pick_location">
ローディング...
</text>
<button label="現在地に設定" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="ピックを保存" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="取り消し" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,84 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="プロフィールの編集" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE]
[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW]
</string>
<!-- The previous line was [PAYMENTINFO] [AGEVERIFICATION], but they're not
sending the latter any more. ...TS -->
<string
name="FSDev"
value=" Developer" />
<string
name="FSSupp"
value=" Support" />
<string
name="FSQualityAssurance"
value=" Bug Hunter" />
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="住人"/>
<string name="AcctTypeTrial" value="トライアル"/>
<string name="AcctTypeCharterMember" value="創立メンバー"/>
<string name="AcctTypeEmployee" value="Linden Lab 従業員"/>
<string name="PaymentInfoUsed" value="支払情報使用履歴あり"/>
<string name="PaymentInfoOnFile" value="支払情報登録済"/>
<string name="NoPaymentInfoOnFile" value="支払情報未登録"/>
<string name="AgeVerified" value="年齢確認済"/>
<string name="NotAgeVerified" value="年齢未確認"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=ja
</string>
<string name="my_account_link_url">
http://jp.secondlife.com/my
</string>
<string name="no_partner_text" value="なし"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="data_panel">
<text name="display_name_label" value="表示名:"/>
<text name="solo_username_label" value="ユーザー名:"/>
<button name="set_name" tool_tip="表示名を設定"/>
<text name="solo_user_name" value="Hamilton Hitchings"/>
<text name="user_name" value="Hamilton Hitchings"/>
<text name="user_name_small" value="Hamilton Hitchings"/>
<text name="user_label" value="ユーザー名:"/>
<text name="user_slid" value="hamilton.linden"/>
<panel name="lifes_images_panel">
<panel name="second_life_image_panel">
<text name="second_life_photo_title_text" value="[CURRENT_GRID]"/>
</panel>
<icon label="" name="2nd_life_edit_icon" tool_tip="クリックして画像を選択"/>
</panel>
<panel name="first_life_image_panel">
<text name="real_world_photo_title_text" value="現実世界:"/>
</panel>
<icon label="" name="real_world_edit_icon" tool_tip="クリックして画像を選択"/>
<text name="title_homepage_text">
Web サイト:
</text>
<line_editor name="homepage_edit" value="http://"/>
<check_box label="検索結果に表示" name="show_in_search_checkbox"/>
<text name="title_acc_status_text" value="マイアカウント:"/>
<text_editor name="acc_status_text" value="住人。 支払情報未登録。"/>
<text name="my_account_link" value="[[URL] マイアカウントに移動]"/>
<text name="title_partner_text" value="マイパートナー:"/>
<panel name="partner_data_panel">
<text initial_value="(取得中)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] 編集]" width="100"/>
</panel>
</panel>
</scroll_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="変更を保存" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="取り消し" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="ピックの情報"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[name]"/>
<text_editor name="pick_location" value="[loading...]"/>
<text_editor name="pick_desc" value="[description]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="テレポート" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="地図" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="編集" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="ピック" name="panel_picks">
<string name="no_picks" value="ピックなし"/>
<string name="no_classifieds" value="クラシファイド広告なし"/>
<accordion name="accordion">
<accordion_tab name="tab_picks" title="ピック"/>
<accordion_tab name="tab_classifieds" title="クラシファイド広告"/>
</accordion>
<panel label="bottom_panel" name="edit_panel">
<layout_stack name="edit_panel_ls">
<layout_panel name="gear_menu_btn">
<button name="new_btn" tool_tip="現在地の新しいピック、またはクラシファイド広告を作成します"/>
</layout_panel>
</layout_stack>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="情報" name="info_btn" tool_tip="ピックの情報を表示"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="テレポート" name="teleport_btn" tool_tip="該当するエリアにテレポート"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="地図" name="show_on_map_btn" tool_tip="世界地図に該当するエリアを表示"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -16,7 +16,7 @@
Łączenie: [CALLEE_NAME]
</text>
<text name="calling">
Dzwonienie: [CALEE_NAME]
Dzwonienie: [CALLEE_NAME]
</text>
<text name="noanswer">
Brak odpowiedzi. Proszę spróbować później.

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xui_version>
1.0
</xui_version>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Exibir Cópia do Nome" name="copy_display"/>
<menu_item_call label="Copiar Nome do Agente" name="copy_name"/>
<menu_item_call label="Copiar Id do Agente" name="copy_id"/>
</toggleable_menu>

View File

@ -1,12 +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="Pagar" name="pay"/>
<menu_item_call label="Compartilhar" name="share"/>
<menu_item_call label="Bloquear" name="block"/>
<menu_item_call label="Desbloquear" name="unblock"/>
<menu_item_call label="Chutar" name="kick"/>
<menu_item_call label="Congelar" name="freeze"/>
<menu_item_call label="Descongelar" name="unfreeze"/>
<menu_item_call label="CSR" name="csr"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Editar anúncio" name="panel_edit_classified">
<panel.string name="location_notice">
(salvar para atualizar)
</panel.string>
<string name="publish_label">
Publicar
</string>
<string name="save_label">
Salvar
</string>
<text name="title">
Editar anúncio
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Selecione uma imagem"/>
</panel>
<text name="Name:">
Cargo:
</text>
<text name="description_label">
Descrição:
</text>
<text name="location_label">
Localização:
</text>
<text name="classified_location">
Carregando...
</text>
<button label="Usar configuração local" name="set_to_curr_location_btn"/>
<text name="category_label" value="Categoria:"/>
<text name="content_type_label" value="Tipo de conteúdo:"/>
<icons_combo_box label="Público geral" name="content_type">
<icons_combo_box.item label="Moderado" name="mature_ci" value="Adulto"/>
<icons_combo_box.item label="Público geral" name="pg_ci" value="Adequado para menores"/>
</icons_combo_box>
<check_box label="Renovação automática semanal" name="auto_renew"/>
<text name="price_for_listing_label" value="Preço do anúncio:"/>
<spinner label="L$" name="price_for_listing" tool_tip="Preço do anúncio" value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="Cancelar" 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="Editar destaques" name="panel_edit_pick">
<panel.string name="location_notice">
(salvar para atualizar)
</panel.string>
<text name="title">
Editar destaques
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Selecione uma imagem"/>
<text name="Name:">
Cargo:
</text>
<text name="description_label">
Descrição:
</text>
<text name="location_label">
Localização:
</text>
<text name="pick_location">
Carregando...
</text>
<button label="Usar configuração local" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Salvar destaque" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="Cancelar" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,72 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Editar perfil" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE] [PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW]
</string>
<!-- The previous line was [PAYMENTINFO] [AGEVERIFICATION], but they're not
sending the latter any more. ...TS -->
<string
name="FSDev"
value=" Developer" />
<string
name="FSSupp"
value=" Support" />
<string
name="FSQualityAssurance"
value=" Bug Hunter" />
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="Residente"/>
<string name="AcctTypeTrial" value="Teste"/>
<string name="AcctTypeCharterMember" value="Estatuto do membro"/>
<string name="AcctTypeEmployee" value="Contratado da Linden Lab"/>
<string name="PaymentInfoUsed" value="Infor. de pagamento utilizadas"/>
<string name="PaymentInfoOnFile" value="Infor. de pagamento no arquivo"/>
<string name="NoPaymentInfoOnFile" value="Sem infor. de pagamento no arquivo"/>
<string name="AgeVerified" value="Idade Verificada"/>
<string name="NotAgeVerified" value="Idade não Verificada"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=pt
</string>
<string name="no_partner_text" value="Nenhum"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="data_panel">
<text name="display_name_label" value="Nome de tela:"/>
<text name="solo_username_label" value="Nome de usuário:"/>
<button name="set_name" tool_tip="Definir nome de tela"/>
<text name="user_label" value="Nome de usuário:"/>
<panel name="lifes_images_panel">
<icon label="" name="2nd_life_edit_icon" tool_tip="Selecione uma imagem"/>
</panel>
<panel name="first_life_image_panel">
<text name="real_world_photo_title_text" value="Mundo real:"/>
</panel>
<icon label="" name="real_world_edit_icon" tool_tip="Selecione uma imagem"/>
<text name="title_homepage_text">
Página web:
</text>
<check_box label="Mostrar nos resultados de busca" name="show_in_search_checkbox"/>
<text name="title_acc_status_text" value="Minha conta:"/>
<text_editor name="acc_status_text" value="Residente. Dados de pagamento: não constam"/>
<text name="my_account_link" value="[[URL] Abrir meu painel]"/>
<text name="title_partner_text" value="Parceiro(a):"/>
<panel name="partner_data_panel">
<text initial_value="(pesquisando)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] Editar]"/>
</panel>
</panel>
</scroll_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="Salvar alterações" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Cancelar" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="Detalhes do destaque"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[NAME]"/>
<text_editor name="pick_location" value="[carregando...]"/>
<text_editor name="pick_desc" value="[descrição]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Teletransportar" 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="Editar" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Destaques" name="panel_picks">
<string name="no_picks" value="Sem destaques"/>
<string name="no_classifieds" value="Sem classificados"/>
<accordion name="accordion">
<accordion_tab name="tab_picks" title="Destaques"/>
<accordion_tab name="tab_classifieds" title="Classificados"/>
</accordion>
<panel label="bottom_panel" name="edit_panel">
<layout_stack name="edit_panel_ls">
<layout_panel name="gear_menu_btn">
<button name="new_btn" tool_tip="Criar um novo destaque ou classificado na localização atual"/>
</layout_panel>
</layout_stack>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="Info" name="info_btn" tool_tip="Exibir dados do destaque"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Teletransportar" name="teleport_btn" tool_tip="Teletransportar para a área correspondente"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Mapa" name="show_on_map_btn" tool_tip="Exibir a área correspondente no Mapa Mundi"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="CopyMenu">
<menu_item_call label="Görünen Adı Kopyala" name="copy_display"/>
<menu_item_call label="Aracı Adını Kopyala" name="copy_name"/>
<menu_item_call label="Aracı Kimliğini Kopyala" name="copy_id"/>
</toggleable_menu>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu name="profile_overflow_menu">
<menu_item_call label="Harita" name="show_on_map"/>
<menu_item_call label="Öde" name="pay"/>
<menu_item_call label="Paylaş" name="share"/>
<menu_item_call label="Engelle" name="block"/>
<menu_item_call label="Engellemeyi Kaldır" name="unblock"/>
<menu_item_call label=ıkar" name="kick"/>
<menu_item_call label="Dondur" name="freeze"/>
<menu_item_call label="Çöz" name="unfreeze"/>
<menu_item_call label="CSR" name="csr"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="İlanı Düzenle" name="panel_edit_classified">
<panel.string name="location_notice">
(kaydedildikten sonra güncelleştirilir)
</panel.string>
<string name="publish_label">
Yayınla
</string>
<string name="save_label">
Kaydet
</string>
<text name="title">
İlanı Düzenle
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="Bir görüntü seçmek için tıklayın"/>
</panel>
<text name="Name:">
Başlık:
</text>
<text name="description_label">
ıklama:
</text>
<text name="location_label">
Konum:
</text>
<text name="classified_location">
yükleniyor...
</text>
<button label="Geçerli Konuma Ayarla" name="set_to_curr_location_btn"/>
<text name="category_label" value="Kategori:"/>
<text name="content_type_label" value="İçerik türü:"/>
<icons_combo_box label="Genel İçerik" name="content_type">
<icons_combo_box.item label="Orta Seviyede İçerik" name="mature_ci" value="Orta Seviyede"/>
<icons_combo_box.item label="Genel İçerik" name="pg_ci" value="PG"/>
</icons_combo_box>
<check_box label="Her hafta otomatik yenile" name="auto_renew"/>
<text name="price_for_listing_label" value="İlan ücreti:"/>
<spinner label="L$" name="price_for_listing" tool_tip="İlan ücreti." value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="İptal Et" 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="Favori Düzenle" name="panel_edit_pick">
<panel.string name="location_notice">
(kaydedildikten sonra güncelleştirilir)
</panel.string>
<text name="title">
Seçme Düzenle
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="Bir görüntü seçmek için tıklayın"/>
<text name="Name:">
Başlık:
</text>
<text name="description_label">
ıklama:
</text>
<text name="location_label">
Konum:
</text>
<text name="pick_location">
yükleniyor...
</text>
<button label="Geçerli Konuma Ayarla" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Seçme Kaydet" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="İptal" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Profil Düzenlemesi" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE]
[PAYMENTINFO] [AGEVERIFICATION]
</string>
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="Sakin"/>
<string name="AcctTypeTrial" value="Deneme"/>
<string name="AcctTypeCharterMember" value="Ayrıcalıklı Üye"/>
<string name="AcctTypeEmployee" value="Linden Lab Çalışanı"/>
<string name="PaymentInfoUsed" value="Kullanılan Ödeme Bilgisi"/>
<string name="PaymentInfoOnFile" value="Dosyadaki Ödeme Bilgisi"/>
<string name="NoPaymentInfoOnFile" value="Dosyada Ödeme Bilgisi Yok"/>
<string name="AgeVerified" value="Yaşı Doğrulanmış"/>
<string name="NotAgeVerified" value="Yaşı Doğrulanmamış"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=en
</string>
<string name="my_account_link_url">
http://secondlife.com/my
</string>
<string name="no_partner_text" value="Hiçbiri"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="data_panel">
<text name="display_name_label" value="Ekran Adı:"/>
<text name="solo_username_label" value="Kullanıcı Adı:"/>
<button name="set_name" tool_tip="Ekran Adını Ayarla"/>
<text name="user_label" value="Kullanıcı Adı:"/>
<panel name="lifes_images_panel">
<panel name="second_life_image_panel">
<text name="second_life_photo_title_text" value="[SECOND_LIFE]:"/>
</panel>
<icon label="" name="2nd_life_edit_icon" tool_tip="Bir görüntü seçmek için tıklayın"/>
</panel>
<panel name="first_life_image_panel">
<text name="real_world_photo_title_text" value="Gerçek Dünya:"/>
</panel>
<icon label="" name="real_world_edit_icon" tool_tip="Bir görüntü seçmek için tıklayın"/>
<text name="title_homepage_text">
Ana sayfa:
</text>
<line_editor name="homepage_edit" value="http://"/>
<text name="title_acc_status_text" value="Hesabım:"/>
<text_editor name="acc_status_text" value="Sakin. Dosyada ödeme bilgisi yok."/>
<text name="my_account_link" value="[[URL] Kontrol Panelime Git]"/>
<text name="title_partner_text" value="Partnerim:"/>
<panel name="partner_data_panel">
<text initial_value="(alınıyor)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] Düzenle]"/>
</panel>
</panel>
</scroll_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="Değişiklikleri Kaydet" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="İptal" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="Seçme Bilgileri"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[ad]"/>
<text_editor name="pick_location" value="[yükleniyor...]"/>
<text_editor name="pick_desc" value="[açıklama]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="Işınla" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Harita" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="Düzenle" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="Favorilerim" name="panel_picks">
<string name="no_picks" value="Seçme Yok"/>
<string name="no_classifieds" value="İlan Yok"/>
<accordion name="accordion">
<accordion_tab name="tab_picks" title="Seçmelerim"/>
<accordion_tab name="tab_classifieds" title="İlanlar"/>
</accordion>
<panel label="bottom_panel" name="edit_panel">
<layout_stack name="edit_panel_ls">
<layout_panel name="gear_menu_btn">
<button name="new_btn" tool_tip="Mevcut konumda yeni bir seçme veya ilan oluşturun"/>
</layout_panel>
</layout_stack>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="Bilgi" name="info_btn" tool_tip="Seçme bilgilerini göster"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="Işınla" name="teleport_btn" tool_tip="İlişkili alana ışınlanın"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="Harita" name="show_on_map_btn" tool_tip="İlişkili alanı Dünya Haritasında göster"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

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>

View File

@ -1,12 +0,0 @@
<?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="share"/>
<menu_item_call label="封鎖" name="block"/>
<menu_item_call label="解除封鎖" name="unblock"/>
<menu_item_call label="踢出" name="kick"/>
<menu_item_call label="凍結" name="freeze"/>
<menu_item_call label="解凍" name="unfreeze"/>
<menu_item_call label="客服" name="csr"/>
</toggleable_menu>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="編輯個人廣告" name="panel_edit_classified">
<panel.string name="location_notice">
(儲存後將會更新)
</panel.string>
<string name="publish_label">
發布
</string>
<string name="save_label">
儲存
</string>
<text name="title">
編輯個人廣告
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="snapshot_panel">
<icon label="" name="edit_icon" tool_tip="點按以選擇圖像"/>
</panel>
<text name="Name:">
標題:
</text>
<text name="description_label">
描述:
</text>
<text name="location_label">
位置:
</text>
<text name="classified_location">
載入中...
</text>
<button label="設定為目前位置" name="set_to_curr_location_btn"/>
<text name="category_label" value="分類:"/>
<text name="content_type_label" value="內容類型:"/>
<icons_combo_box label="一般普級內容" name="content_type">
<icons_combo_box.item label="適度成人內容" name="mature_ci" value="適度成人"/>
<icons_combo_box.item label="一般普級內容" name="pg_ci" value="一般普級"/>
</icons_combo_box>
<check_box label="每星期自動續訂" name="auto_renew"/>
<text name="price_for_listing_label" value="刊登費:"/>
<spinner label="L$" name="price_for_listing" tool_tip="刊登費。" value="50"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="[LABEL]" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="cancel_btn_lp">
<button label="取消" 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="編輯精選地點" name="panel_edit_pick">
<panel.string name="location_notice">
(儲存後將會更新)
</panel.string>
<text name="title">
編輯精選地點
</text>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<icon label="" name="edit_icon" tool_tip="點按以選擇圖像"/>
<text name="Name:">
標題:
</text>
<text name="description_label">
描述:
</text>
<text name="location_label">
位置:
</text>
<text name="pick_location">
載入中...
</text>
<button label="設定為目前位置" name="set_to_curr_location_btn"/>
</panel>
</scroll_container>
<panel label="bottom_panel" name="bottom_panel">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="儲存精選地點" name="save_changes_btn"/>
</layout_panel>
<layout_panel name="layout_panel2">
<button label="取消" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,79 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="檔案編輯" name="edit_profile_panel">
<string name="CaptionTextAcctInfo">
[ACCTTYPE]
[PAYMENTINFO] [FIRESTORM][FSDEV][FSSUPP][FSQA][FSGW]
</string>
<!-- The previous line was [PAYMENTINFO] [AGEVERIFICATION], but they're not
sending the latter any more. ...TS -->
<string
name="FSDev"
value=" Developer" />
<string
name="FSSupp"
value=" Support" />
<string
name="FSQualityAssurance"
value=" Bug Hunter" />
<string name="RegisterDateFormat">
[REG_DATE] ([AGE])
</string>
<string name="AcctTypeResident" value="居民"/>
<string name="AcctTypeTrial" value="試用"/>
<string name="AcctTypeCharterMember" value="老牌 Charter 成員"/>
<string name="AcctTypeEmployee" value="林登實驗室員工"/>
<string name="PaymentInfoUsed" value="使用的付款資料"/>
<string name="PaymentInfoOnFile" value="預留付款資料"/>
<string name="NoPaymentInfoOnFile" value="未預留付款資料"/>
<string name="AgeVerified" value="通過年齡驗證"/>
<string name="NotAgeVerified" value="未通過年齡驗證"/>
<string name="partner_edit_link_url">
http://www.secondlife.com/account/partners.php?lang=en
</string>
<string name="my_account_link_url">
http://secondlife.com/my
</string>
<string name="no_partner_text" value="無"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<panel name="data_panel">
<text name="display_name_label" value="顯示名稱:"/>
<text name="solo_username_label" value="使用者名稱:"/>
<button name="set_name" tool_tip="設定顯示名稱"/>
<text name="user_label" value="使用者名稱:"/>
<panel name="lifes_images_panel">
<panel name="second_life_image_panel">
<text name="second_life_photo_title_text" value="[CURRENT_GRID]:"/>
</panel>
<icon label="" name="2nd_life_edit_icon" tool_tip="點按以選擇圖像"/>
</panel>
<panel name="first_life_image_panel">
<text name="real_world_photo_title_text" value="真實世界:"/>
</panel>
<icon label="" name="real_world_edit_icon" tool_tip="點按以選擇圖像"/>
<text name="title_homepage_text">
首頁:
</text>
<line_editor name="homepage_edit" value="http://"/>
<text name="title_acc_status_text" value="我的帳戶:"/>
<text_editor name="acc_status_text" value="居民。 未預留付款資料。"/>
<text name="my_account_link" value="[[URL] 前往我的塗鴉牆]"/>
<text name="title_partner_text" value="我的配偶:"/>
<panel name="partner_data_panel">
<text initial_value="(檢索中)" name="partner_text"/>
</panel>
<text name="partner_edit_link" value="[[URL] 編輯]"/>
</panel>
</panel>
</scroll_container>
<panel name="profile_me_buttons_panel">
<layout_stack name="bottom_panel_ls">
<layout_panel name="save_changes_btn_lp">
<button label="儲存變更" name="save_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="取消" name="cancel_btn"/>
</layout_panel>
</layout_stack>
</panel>
</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="精選地點資訊"/>
<scroll_container name="profile_scroll">
<panel name="scroll_content_panel">
<text_editor name="pick_name" value="[name]"/>
<text_editor name="pick_location" value="[loading...]"/>
<text_editor name="pick_desc" value="[description]"/>
</panel>
</scroll_container>
<panel name="buttons">
<layout_stack name="layout_stack1">
<layout_panel name="layout_panel1">
<button label="瞬間傳送" name="teleport_btn"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="地圖" name="show_on_map_btn"/>
</layout_panel>
<layout_panel name="edit_btn_lp">
<button label="編輯" name="edit_btn"/>
</layout_panel>
</layout_stack>
</panel>
</panel>

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel label="精選地點" name="panel_picks">
<string name="no_picks" value="無精選地點"/>
<string name="no_classifieds" value="禁止個人廣告"/>
<accordion name="accordion">
<accordion_tab name="tab_picks" title="精選地點"/>
<accordion_tab name="tab_classifieds" title="個人廣告"/>
</accordion>
<panel label="bottom_panel" name="edit_panel">
<layout_stack name="edit_panel_ls">
<layout_panel name="gear_menu_btn">
<button name="new_btn" tool_tip="以目前位置建立新的精選地點或個人廣告"/>
</layout_panel>
</layout_stack>
</panel>
<panel name="buttons_cucks">
<layout_stack name="buttons_cucks_ls">
<layout_panel name="info_btn_lp">
<button label="資訊" name="info_btn" tool_tip="顯示精選地點資訊"/>
</layout_panel>
<layout_panel name="teleport_btn_lp">
<button label="瞬間傳送" name="teleport_btn" tool_tip="瞬間傳送到的區域"/>
</layout_panel>
<layout_panel name="show_on_map_btn_lp">
<button label="地圖" name="show_on_map_btn" tool_tip="在世界地圖上顯示相對應的區域"/>
</layout_panel>
</layout_stack>
</panel>
</panel>