Fix English Inventory UI To translate other languages

This commit is contained in:
Damian Zhaoying
2012-07-15 23:56:58 -03:00
parent 0243c61ea1
commit 9dc1897b35
5 changed files with 399 additions and 1092 deletions

View File

@@ -50,7 +50,7 @@
<on_click filter="" function="Inventory.DoCreate" userdata="gesture" />
</menu_item_call>
<menu bottom_delta="0" color="MenuDefaultBgColor" drop_shadow="true" height="175" left="0"
mouse_opaque="false" name="New Clothes" opaque="true" tear_off="false"
label="New Clothes" mouse_opaque="false" name="New Clothes" opaque="true" tear_off="false"
width="125">
<menu_item_call bottom_delta="-18" height="18" label="New Shirt" left="0" mouse_opaque="true"
name="New Shirt" width="128">
@@ -102,7 +102,7 @@
</menu_item_call>
</menu>
<menu bottom_delta="0" color="MenuDefaultBgColor" drop_shadow="true" height="175" left="0"
mouse_opaque="false" name="New Body Parts" opaque="true" tear_off="false"
label="New Body Parts" mouse_opaque="false" name="New Body Parts" opaque="true" tear_off="false"
width="125">
<menu_item_call bottom_delta="-18" height="18" label="New Shape" left="0" mouse_opaque="true"
name="New Shape" width="128">

View File

@@ -2,6 +2,7 @@
<floater name="Inventory" title="Inventario">
<search_editor label="Escribe aquí para buscar" name="inventory search editor"/>
<button label="" name="collapse_btn" tool_tip="Cerrar Todo" />
<button label="" name="Inventory.ExpandAll" tool_tip="Expandir Todo"/>
<text name="group_titles_textbox">
Filtro Rápido:
</text>
@@ -13,7 +14,7 @@
Animaciones
</string>
<string name="filter_type_callingcard">
Tarjestas de Llamada
Tarjetas de Llamada
</string>
<string name="filter_type_wearable">
Ropas / Partes de Cuerpo
@@ -88,141 +89,61 @@
Personalizado...
</combo_item>
</combo_box>
<tab_container name="inventory filter tabs" follows="left|top|right|bottom"
bottom_delta="-487" height="480" left="2" width="463"
mouse_opaque="false" tab_position="top">
<inventory_panel allow_multi_select="true" border="true" bottom="-507"
follows="left|top|right|bottom" height="491" label="All Items" left="1"
mouse_opaque="true" name="All Items" sort_order="InventorySortOrder"
width="461" />
<inventory_panel allow_multi_select="true" border="true" bottom_delta="0"
follows="left|top|right|bottom" height="491" label="Recent Items"
left_delta="0" mouse_opaque="true" name="Recent Items"
sort_order="RecentItemsSortOrder" width="461" />
<inventory_panel allow_multi_select="true" border="true" bottom_delta="0"
follows="left|top|right|bottom" height="491" label="Worn Items"
left_delta="0" mouse_opaque="true" name="Worn Items"
sort_order="WornItemsSortOrder" width="461" />
</tab_container>
<menu_bar name="Inventory Menu">
<tab_container name="inventory filter tabs" >
<inventory_panel label="Todos los Items" name="All Items"/>
<inventory_panel label="Items Recientes" name="Recent Items"/>
<inventory_panel label="Items Vestidos" name="Worn Items"/>
</tab_container>
<menu_bar name="Inventory Menu">
<menu label="Archivo" name="File">
<menu_item_call label="Abrir" name="Open">
<on_click filter="" function="Inventory.DoToSelected" userdata="open" />
</menu_item_call>
<menu_item_call label="Abrir" name="Open"></menu_item_call>
<menu_item_separator name="separator"/>
<menu_item_call label="Nueva Ventana" name="New Window">
<on_click filter="" function="Inventory.NewWindow" userdata="" />
</menu_item_call>
<menu_item_call label="Nueva Ventana" name="New Window"></menu_item_call>
<menu_item_separator name="separator2"/>
<menu_item_call label="Mostrar Filtros" name="Show Filters">
<on_click filter="" function="Inventory.ShowFilters" userdata="" />
</menu_item_call>
<menu_item_call label="Restablecer Filtros" name="Reset Current">
<on_click filter="" function="Inventory.ResetFilter" userdata="" />
</menu_item_call>
<menu_item_call label="Cerrar todas las Carpetas" name="Close All Folders">
<on_click filter="" function="Inventory.CloseAllFolders" userdata="" />
</menu_item_call>
<menu_item_call label="Mostrar Filtros" name="Show Filters"></menu_item_call>
<menu_item_call label="Restablecer Filtros" name="Reset Current"></menu_item_call>
<menu_item_call label="Cerrar todas las Carpetas" name="Close All Folders"></menu_item_call>
<menu_item_separator name="separator3"/>
<menu_item_call label="Vaciar la Papelera" name="Empty Trash">
<on_click filter="" function="Inventory.EmptyTrash" userdata="" />
</menu_item_call>
<menu_item_call label="Actualizar Inventario" name="Refresh Inventory">
<on_click filter="" function="Inventory.RefreshInvModel" userdata="" />
</menu_item_call>
<menu_item_call label="Vaciar la Papelera" name="Empty Trash"></menu_item_call>
<menu_item_call label="Actualizar Inventario" name="Refresh Inventory"></menu_item_call>
</menu>
<menu label="Crear" name="Create">
<menu_item_call label="Nueva Carpeta" name="New Folder">
<on_click filter="" function="Inventory.DoCreate" userdata="category" />
</menu_item_call>
<menu_item_call label="Nuevo Script" name="New Script">
<on_click filter="" function="Inventory.DoCreate" userdata="lsl" />
</menu_item_call>
<menu_item_call label="Nueva Nota" name="New Note">
<on_click filter="" function="Inventory.DoCreate" userdata="notecard" />
</menu_item_call>
<menu_item_call label="Nuevo Gesto" name="New Gesture">
<on_click filter="" function="Inventory.DoCreate" userdata="gesture" />
</menu_item_call>
<menu name="New Clothes">
<menu_item_call label="Nueva Camisa" name="New Shirt">
<on_click filter="" function="Inventory.DoCreate" userdata="shirt" />
</menu_item_call>
<menu_item_call label="Nuevos Pantalones" name="New Pants">
<on_click filter="" function="Inventory.DoCreate" userdata="pants" />
</menu_item_call>
<menu_item_call label="Nuevos Zapatos" name="New Shoes">
<on_click filter="" function="Inventory.DoCreate" userdata="shoes" />
</menu_item_call>
<menu_item_call label="Nuevas Medias" name="New Socks">
<on_click filter="" function="Inventory.DoCreate" userdata="socks" />
</menu_item_call>
<menu_item_call label="Nueva Chaqueta" name="New Jacket">
<on_click filter="" function="Inventory.DoCreate" userdata="jacket" />
</menu_item_call>
<menu_item_call label="Nueva Falda" name="New Skirt">
<on_click filter="" function="Inventory.DoCreate" userdata="skirt" />
</menu_item_call>
<menu_item_call label="Nuevos Guantes" name="New Gloves">
<on_click filter="" function="Inventory.DoCreate" userdata="gloves" />
</menu_item_call>
<menu_item_call label="Nueva Camiseta" name="New Undershirt">
<on_click filter="" function="Inventory.DoCreate" userdata="undershirt" />
</menu_item_call>
<menu_item_call label="Nueva Ropa Interior" name="New Underpants">
<on_click filter="" function="Inventory.DoCreate" userdata="underpants" />
</menu_item_call>
<menu_item_call label="Nuevo Tatuaje" name="New Tattoo">
<on_click filter="" function="Inventory.DoCreate" userdata="tattoo" />
</menu_item_call>
<menu_item_call label="Nueva Capa Alfa" name="New Alpha">
<on_click filter="" function="Inventory.DoCreate" userdata="alpha" />
</menu_item_call>
<menu_item_call label="Nueva Física" name="New Physics">
<on_click filter="" function="Inventory.DoCreate" userdata="physics" />
</menu_item_call>
<menu_item_call label="Nueva Carpeta" name="New Folder"></menu_item_call>
<menu_item_call label="Nuevo Script" name="New Script"></menu_item_call>
<menu_item_call label="Nueva Nota" name="New Note"></menu_item_call>
<menu_item_call label="Nuevo Gesto" name="New Gesture"></menu_item_call>
<menu label="Ropas Nuevas" name="New Clothes">
<menu_item_call label="Nueva Camisa" name="New Shirt"></menu_item_call>
<menu_item_call label="Nuevos Pantalones" name="New Pants"></menu_item_call>
<menu_item_call label="Nuevos Zapatos" name="New Shoes"></menu_item_call>
<menu_item_call label="Nuevas Medias" name="New Socks"></menu_item_call>
<menu_item_call label="Nueva Chaqueta" name="New Jacket"></menu_item_call>
<menu_item_call label="Nueva Falda" name="New Skirt"></menu_item_call>
<menu_item_call label="Nuevos Guantes" name="New Gloves"></menu_item_call>
<menu_item_call label="Nueva Camiseta" name="New Undershirt"></menu_item_call>
<menu_item_call label="Nueva Ropa Interior" name="New Underpants"></menu_item_call>
<menu_item_call label="Nuevo Tatuaje" name="New Tattoo"></menu_item_call>
<menu_item_call label="Nueva Capa Alfa" name="New Alpha"></menu_item_call>
<menu_item_call label="Nueva Física" name="New Physics"></menu_item_call>
</menu>
<menu name="New Body Parts">
<menu_item_call label="Nueva Forma" name="New Shape">
<on_click filter="" function="Inventory.DoCreate" userdata="shape" />
</menu_item_call>
<menu_item_call label="Nueva Piel" name="New Skin">
<on_click filter="" function="Inventory.DoCreate" userdata="skin" />
</menu_item_call>
<menu_item_call label="Nuevo Pelo" name="New Hair">
<on_click filter="" function="Inventory.DoCreate" userdata="hair" />
</menu_item_call>
<menu_item_call label="Nuevos Ojos" name="New Eyes">
<on_click filter="" function="Inventory.DoCreate" userdata="eyes" />
</menu_item_call>
<menu label="Partes de Cuerpo Nuevas" name="New Body Parts">
<menu_item_call label="Nueva Forma" name="New Shape"></menu_item_call>
<menu_item_call label="Nueva Piel" name="New Skin"></menu_item_call>
<menu_item_call label="Nuevo Pelo" name="New Hair"></menu_item_call>
<menu_item_call label="Nuevos Ojos" name="New Eyes"></menu_item_call>
</menu>
</menu>
<menu label="Ordenar" name="Sort">
<menu_item_check label="Por Nombre" name="By Name">
<on_click filter="" function="Inventory.SetSortBy" userdata="name" />
</menu_item_check>
<menu_item_check label="Por Fecha" name="By Date">
<on_click filter="" function="Inventory.SetSortBy" userdata="date" />
</menu_item_check>
<menu_item_check label="Por Nombre" name="By Name"></menu_item_check>
<menu_item_check label="Por Fecha" name="By Date"></menu_item_check>
<menu_item_separator name="separator"/>
<menu_item_check label="Carpetas, siempre por Nombre" name="Folders Always By Name">
<on_click filter="" function="Inventory.SetSortBy" userdata="foldersalwaysbyname" />
</menu_item_check>
<menu_item_check label="Carpeta de Sistema al Principio" name="System Folders To Top">
<on_click filter="" function="Inventory.SetSortBy" userdata="systemfolderstotop" />
</menu_item_check>
<menu_item_check label="Carpetas, siempre por Nombre" name="Folders Always By Name"></menu_item_check>
<menu_item_check label="Carpeta de Sistema al Principio" name="System Folders To Top"></menu_item_check>
</menu>
<menu label="Buscar" name="Search">
<menu_item_check label="Nombre del Item" name="Item name">
<on_click filter="" function="Inventory.SetSearchType" userdata="name" />
</menu_item_check>
<menu_item_check label="Descripción del Item" name="Item description">
<on_click filter="" function="Inventory.SetSearchType" userdata="description" />
</menu_item_check>
<menu_item_check label="Creador del Item" name="Item creatorr">
<on_click filter="" function="Inventory.SetSearchType" userdata="creator" />
</menu_item_check>
<menu_item_check label="Nombre del Item" name="Item name"></menu_item_check>
<menu_item_check label="Descripción del Item" name="Item description"></menu_item_check>
<menu_item_check label="Creador del Item" name="Item creatorr"></menu_item_check>
</menu>
</menu_bar>
</floater>

View File

@@ -1,230 +1,97 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu name="Popup">
<menu_item_call name="Task Buy" label="Comprar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="task_buy" />
</menu_item_call>
<menu_item_call name="Task Open" label="Abrir" >
<on_click filter="" function="Inventory.DoToSelected" userdata="task_open" />
</menu_item_call>
<menu_item_call name="Task Play" label="Reproducir" >
<on_click filter="" function="Inventory.DoToSelected" userdata="task_play" />
</menu_item_call>
<menu_item_call name="Task Properties" label="Propiedades" >
<on_click filter="" function="Inventory.DoToSelected" userdata="task_properties" />
</menu_item_call>
<menu_item_call name="Task Rename" label="Renombrar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="rename" />
</menu_item_call>
<menu_item_call name="Task Remove" label="Borrar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="delete" />
</menu_item_call>
<menu_item_call name="Empty Trash" label="Vaciar Papelera" >
<on_click filter="" function="Inventory.EmptyTrash" userdata="rename" />
</menu_item_call>
<menu_item_call name="Empty Lost And Found" label="Vaciar Perdidos y Encontrados" >
<on_click filter="" function="Inventory.EmptyLostAndFound" userdata="rename" />
</menu_item_call>
<menu_item_call name="New Folder" label="Carpeta nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="category" />
</menu_item_call>
<menu_item_call name="New Script" label="Script nuevo" >
<on_click filter="" function="Inventory.DoCreate" userdata="lsl" />
</menu_item_call>
<menu_item_call name="New Note" label="Nota nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="notecard" />
</menu_item_call>
<menu_item_call name="New Gesture" label="Gesto nuevo" >
<on_click filter="" function="Inventory.DoCreate" userdata="gesture" />
</menu_item_call>
<menu_item_call name="Task Buy" label="Comprar" ></menu_item_call>
<menu_item_call name="Task Open" label="Abrir" ></menu_item_call>
<menu_item_call name="Task Play" label="Reproducir" ></menu_item_call>
<menu_item_call name="Task Properties" label="Propiedades" ></menu_item_call>
<menu_item_call name="Task Rename" label="Renombrar" ></menu_item_call>
<menu_item_call name="Task Remove" label="Borrar" ></menu_item_call>
<menu_item_call name="Empty Trash" label="Vaciar Papelera" ></menu_item_call>
<menu_item_call name="Empty Lost And Found" label="Vaciar Perdidos y Encontrados" ></menu_item_call>
<menu_item_call name="New Folder" label="Carpeta nueva" ></menu_item_call>
<menu_item_call name="New Script" label="Script nuevo" ></menu_item_call>
<menu_item_call name="New Note" label="Nota nueva" ></menu_item_call>
<menu_item_call name="New Gesture" label="Gesto nuevo" ></menu_item_call>
<menu name="New Clothes" label="Nuevas Ropas">
<menu_item_call name="New Shirt" label=" Camisa nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="shirt" />
</menu_item_call>
<menu_item_call name="New Pants" label="Pantalones nuevos" >
<on_click filter="" function="Inventory.DoCreate" userdata="pants" />
</menu_item_call>
<menu_item_call name="New Shoes" label="Zapatos nuevos" >
<on_click filter="" function="Inventory.DoCreate" userdata="shoes" />
</menu_item_call>
<menu_item_call name="New Socks" label=" Calzetines nuevos" >
<on_click filter="" function="Inventory.DoCreate" userdata="socks" />
</menu_item_call>
<menu_item_call name="New Jacket" label="Chaqueta nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="jacket" />
</menu_item_call>
<menu_item_call name="New Skirt" label="Falda nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="skirt" />
</menu_item_call>
<menu_item_call name="New Gloves" label="Guantes nuevos" >
<on_click filter="" function="Inventory.DoCreate" userdata="gloves" />
</menu_item_call>
<menu_item_call name="New Undershirt" label="Camiseta nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="undershirt" />
</menu_item_call>
<menu_item_call name="New Underpants" label="Calzoncillos nuevos" >
<on_click filter="" function="Inventory.DoCreate" userdata="underpants" />
</menu_item_call>
<menu_item_call name="New Tattoo" label="Tatuaje nuevo" >
<on_click filter="" function="Inventory.DoCreate" userdata="tattoo" />
</menu_item_call>
<menu_item_call name="New Alpha" label="Alfa nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="alpha" />
</menu_item_call>
<menu_item_call name="New Physics" label="Física nueva" >
<on_click filter="" function="Inventory.DoCreate" userdata="physics" />
</menu_item_call>
</menu>
<menu name="New Body Parts">
<menu_item_call name="New Shape" label="Shape nuevo" >
<on_click filter="" function="Inventory.DoCreate" userdata="shape" />
</menu_item_call>
<menu_item_call name="New Skin" label="Skin nuevo" >
<on_click filter="" function="Inventory.DoCreate" userdata="skin" />
</menu_item_call>
<menu_item_call name="New Hair" label="Pelo nuevo" >
<on_click filter="" function="Inventory.DoCreate" userdata="hair" />
</menu_item_call>
<menu_item_call name="New Eyes" label="Ojos nuevos" >
<on_click filter="" function="Inventory.DoCreate" userdata="eyes" />
</menu_item_call>
</menu>
<menu_item_call name="Landmark Open" label="Teleport" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open" />
</menu_item_call>
<menu_item_call name="Animation Open" label="Abrir" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open" />
</menu_item_call>
<menu_item_call name="Sound Open" label="Abrir" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open" />
</menu_item_call>
<menu_item_call name="Find Original" label="Encontrar original" >
<on_click filter="" function="Inventory.DoToSelected" userdata="goto" />
</menu_item_call>
<menu_item_call name="Purge Item" label="Limpiar objeto" >
<on_click filter="" function="Inventory.DoToSelected" userdata="purge" />
</menu_item_call>
<menu_item_call name="Restore Item" label="Restaurar objeto" >
<on_click filter="" function="Inventory.DoToSelected" userdata="restore" />
</menu_item_call>
<menu name="Open With...">
<menu_item_call name="Hex Open" label="Editor Hexa" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open hex" />
</menu_item_call>
<menu_item_call name="Open Text" label="Editor de Texto" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open text" />
</menu_item_call>
<menu_item_call name="Rez" label="Rezear Objeto" >
<on_click filter="" function="Inventory.DoToSelected" userdata="rez" />
</menu_item_call>
</menu>
<menu_item_call name="Open" label="Abrir" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open" />
</menu_item_call>
<menu_item_call name="Properties" label="Propiedades">
<on_click filter="" function="Inventory.DoToSelected" userdata="properties" />
</menu_item_call>
<menu_item_call name="Rename" label="Renombrar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="rename" />
</menu_item_call>
<menu_item_call name="Copy Asset UUID" label="Copiar Asset UUID" >
<on_click filter="" function="Inventory.DoToSelected" userdata="copy_uuid" />
</menu_item_call>
<menu_item_call name="Reupload..." label="Resubir..." >
<on_click filter="" function="Inventory.DoToSelected" userdata="reupload" />
</menu_item_call>
<menu_item_call name="Acquire Asset ID" label="Adquirir Asset ID" >
<on_click filter="" function="Inventory.DoToSelected" userdata="acquire_asset_id" />
</menu_item_call>
<menu_item_separator name="Copy Separator" />
<menu_item_call name="Copy" label="Copiar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="copy" />
</menu_item_call>
<menu_item_call name="Paste" label="Pegar">
<on_click filter="" function="Inventory.DoToSelected" userdata="paste" />
</menu_item_call>
<menu_item_call name="Paste As Link" label="Pegar como Link" >
<on_click filter="" function="Inventory.DoToSelected" userdata="paste_link" />
</menu_item_call>
<menu_item_call name="Restore to Last Position" label="Restaurar en el mundo" >
<on_click filter="" function="Inventory.DoToSelected" userdata="restoreToWorld" />
</menu_item_call>
<menu_item_separator name="Paste Separator" />
<menu_item_call name="Remove Link" label="Borrar Link" >
<on_click filter="" function="Inventory.DoToSelected" userdata="delete" />
</menu_item_call>
<menu_item_call name="Delete" label="Borrar">
<on_click filter="" function="Inventory.DoToSelected" userdata="delete" />
</menu_item_call>
<menu_item_separator name="Folder Wearables Separator" />
<menu_item_call name="Wear Items" label="Vestirse objetos" >
<on_click filter="" function="Inventory.DoToSelected" userdata="wearitems" />
</menu_item_call>
<menu_item_call name="Add To Outfit" label="Añadirse objetos" >
<on_click filter="" function="Inventory.DoToSelected" userdata="addtooutfit" />
</menu_item_call>
<menu_item_call name="Replace Outfit" label="Reemplazar ropa" >
<on_click filter="" function="Inventory.DoToSelected" userdata="replaceoutfit" />
</menu_item_call>
<menu_item_call name="Take Off Items" label="Quitarse objetos" >
<on_click filter="" function="Inventory.DoToSelected" userdata="removefromoutfit" />
</menu_item_call>
<menu_item_separator name="Calling Card Separator" />
<menu_item_call name="Conference Chat Folder" label="Comenzar conversacion de grupo" >
<on_click filter="" function="Inventory.BeginIMSession" userdata="everyone" />
</menu_item_call>
<menu_item_separator name="Sound Separator" />
<menu_item_call name="Sound Play" label="Reproducir" >
<on_click filter="" function="Inventory.DoToSelected" userdata="open" />
</menu_item_call>
<menu_item_separator name="Landmark Separator" />
<menu_item_call name="Teleport To Landmark" label="Sobre el hito" >
<on_click filter="" function="Inventory.DoToSelected" userdata="about" />
</menu_item_call>
<menu_item_separator name="Animation Separator" />
<menu_item_call name="Animation Play" label="Reproducir en el mundo">
<on_click filter="" function="Inventory.DoToSelected" userdata="playworld" />
</menu_item_call>
<menu_item_call name="Animation Audition" label="Reproducir en la zona" >
<on_click filter="" function="Inventory.DoToSelected" userdata="playlocal" />
</menu_item_call>
<menu_item_separator name="Send Instant Message Separator" />
<menu_item_call name="Send Instant Message" label="Enviar IM" >
<on_click filter="" function="Inventory.DoToSelected" userdata="begin_im" />
</menu_item_call>
<menu_item_call name="Offer Teleport..." label="Ofrecer Teleport..." >
<on_click filter="" function="Inventory.DoToSelected" userdata="lure" />
</menu_item_call>
<menu_item_call name="Conference Chat" label="Comenzar conversacion de grupo" >
<on_click filter="" function="Inventory.BeginIMSession" userdata="selected" />
</menu_item_call>
<menu_item_separator name="Gesture Separator" />
<menu_item_call name="Activate" label="Activar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="activate" />
</menu_item_call>
<menu_item_call name="Deactivate" label="Desactivar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="deactivate" />
</menu_item_call>
<menu_item_separator name="Attach Separator" />
<menu_item_call name="Object Wear" label="Vestirse" >
<on_click filter="" function="Inventory.DoToSelected" userdata="attach" />
</menu_item_call>
<menu_item_call name="Object Add" label="Agregar Objeto" >
<on_click filter="" function="Inventory.DoToSelected" userdata="wear_add" />
</menu_item_call>
<menu name="Attach To" label="Anexar a" />
<menu name="Attach To HUD" label="Anexar como HUD" />
<menu_item_call name="Detach From Yourself" label="Desvestirse" >
<on_click filter="" function="Inventory.DoToSelected" userdata="detach" />
</menu_item_call>
<menu_item_call name="Wearable Edit" label="Editar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="edit" />
</menu_item_call>
<menu_item_call name="Wearable Wear" label="Vestirse" >
<on_click filter="" function="Inventory.DoToSelected" userdata="wear" />
</menu_item_call>
<menu_item_call name="Take Off" label="Dejar" >
<on_click filter="" function="Inventory.DoToSelected" userdata="take_off" />
</menu_item_call>
<menu_item_call name="--no options--" label="--sin opciones--" />
<--menu_item_separator name="Wearable Separator" /-->
<menu_item_call name="New Shirt" label="Camisa nueva" ></menu_item_call>
<menu_item_call name="New Pants" label="Pantalones nuevos" ></menu_item_call>
<menu_item_call name="New Shoes" label="Zapatos nuevos" ></menu_item_call>
<menu_item_call name="New Socks" label="Calcetines nuevos" ></menu_item_call>
<menu_item_call name="New Jacket" label="Chaqueta nueva" ></menu_item_call>
<menu_item_call name="New Skirt" label="Falda nueva" ></menu_item_call>
<menu_item_call name="New Gloves" label="Guantes nuevos" ></menu_item_call>
<menu_item_call name="New Undershirt" label="Camiseta nueva" ></menu_item_call>
<menu_item_call name="New Underpants" label="Ropa Interior nueva" ></menu_item_call>
<menu_item_call name="New Tattoo" label="Tatuaje nuevo" ></menu_item_call>
<menu_item_call name="New Alpha" label="Alfa nueva" ></menu_item_call>
<menu_item_call name="New Physics" label="Física nueva" ></menu_item_call>
</menu>
<menu name="New Body Parts" label="Partes de Cuerpo Nuevas" >
<menu_item_call name="New Shape" label="Forma nueva" ></menu_item_call>
<menu_item_call name="New Skin" label="Piel nueva" ></menu_item_call>
<menu_item_call name="New Hair" label="Pelo nuevo" ></menu_item_call>
<menu_item_call name="New Eyes" label="Ojos nuevos" ></menu_item_call>
</menu>
<menu_item_call name="Landmark Open" label="Teleport" ></menu_item_call>
<menu_item_call name="Animation Open" label="Abrir" ></menu_item_call>
<menu_item_call name="Sound Open" label="Abrir"></menu_item_call>
<menu_item_call name="Find Original" label="Encontrar original" ></menu_item_call>
<menu_item_call name="Purge Item" label="Limpiar objeto" ></menu_item_call>
<menu_item_call name="Restore Item" label="Restaurar objeto" ></menu_item_call>
<menu name="Open With..." label="Abrir con...">
<menu_item_call name="Hex Open" label="Editor Hexa" ></menu_item_call>
<menu_item_call name="Open Text" label="Editor de Texto" ></menu_item_call>
<menu_item_call name="Rez" label="Rezear Objeto" ></menu_item_call>
</menu>
<menu_item_call name="Open" label="Abrir" ></menu_item_call>
<menu_item_call name="Properties" label="Propiedades"></menu_item_call>
<menu_item_call name="Rename" label="Renombrar" ></menu_item_call>
<menu_item_call name="Copy Asset UUID" label="Copiar Asset UUID" ></menu_item_call>
<menu_item_call name="Reupload..." label="Resubir..." ></menu_item_call>
<menu_item_call name="Acquire Asset ID" label="Adquirir Asset ID" ></menu_item_call>
<menu_item_separator name="Copy Separator" />
<menu_item_call name="Copy" label="Copiar" ></menu_item_call>
<menu_item_call name="Paste" label="Pegar"></menu_item_call>
<menu_item_call name="Paste As Link" label="Pegar como Link" ></menu_item_call>
<menu_item_call name="Restore to Last Position" label="Restaurar en el mundo" ></menu_item_call>
<menu_item_separator name="Paste Separator" />
<menu_item_call name="Remove Link" label="Borrar Link" ></menu_item_call>
<menu_item_call name="Delete" label="Borrar"></menu_item_call>
<menu_item_separator name="Folder Wearables Separator" />
<menu_item_call name="Wear Items" label="Vestirse objetos" ></menu_item_call>
<menu_item_call name="Add To Outfit" label="Añadir al vestuario" ></menu_item_call>
<menu_item_call name="Replace Outfit" label="Reemplazar Vestuario" ></menu_item_call>
<menu_item_call label="Quitar del Vestuario" name="Remove From Outfit"></menu_item_call>
<menu_item_separator name="Outfit Separator"></menu_item_separator>
<menu_item_separator name="Calling Card Separator" />
<menu_item_call name="Conference Chat Folder" label="Iniciar Conferencia Grupal" ></menu_item_call>
<menu_item_separator name="Sound Separator" />
<menu_item_call name="Sound Play" label="Reproducir" ></menu_item_call>
<menu_item_separator name="Landmark Separator" />
<menu_item_call name="Teleport To Landmark" label="Sobre el hito" ></menu_item_call>
<menu_item_separator name="Animation Separator" />
<menu_item_call name="Animation Play" label="Reproducir en el mundo"></menu_item_call>
<menu_item_call name="Animation Audition" label="Reproducir localmente" ></menu_item_call>
<menu_item_separator name="Send Instant Message Separator" />
<menu_item_call name="Send Instant Message" label="Enviar MI" ></menu_item_call>
<menu_item_call name="Offer Teleport..." label="Ofrecer Teleport..." ></menu_item_call>
<menu_item_call name="Conference Chat" label="Iniciar Conferencia Grupal" ></menu_item_call>
<menu_item_separator name="Gesture Separator" />
<menu_item_call name="Activate" label="Activar" ></menu_item_call>
<menu_item_call name="Deactivate" label="Desactivar" ></menu_item_call>
<menu_item_separator name="Wearable And Object Separator" />
<menu_item_call name="Wearable And Object Wear" label="Vestirse Objeto" ></menu_item_call>
<menu_item_call label="Añadir al Vestuario" name="Wearable Add"></menu_item_call>
<menu_item_call label="&#9650; >Hacia Adelante" name="Wearable Move Forward"></menu_item_call>
<menu_item_call label="&#9660; Hacia Atrás" name="Wearable Move Back"></menu_item_call>
<menu label="Anexar a " name="Attach To"/>
<menu label="Anexar al HUD" name="Attach To HUD"/>
<menu_item_call label="Quitarse" name="Detach From Yourself"></menu_item_call>
<menu_item_call label="Editar" name="Wearable Edit"></menu_item_call>
<menu_item_call label="Quitarse" name="Take Off"></menu_item_call>
<menu_item_separator name="Marketplace Separator" />
<menu_item_call label="Copiar al Merchant Outbox" name="Merchant Copy"/>
<menu_item_call label="Enviar a Marketplace" name="Marketplace Send"/>
<menu_item_call label="--sin opciones--" name="--no options--" />
<!--menu_item_separator name="Wearable Separator" -->
</menu>

View File

@@ -1,666 +1,229 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu_bar bottom="-18" drop_shadow="false" enabled="true" follows="left|top|right"
height="18" left="0" mouse_opaque="true" name="Main Menu" opaque="false"
tear_off="false" width="802">
<menu bottom="273" create_jump_keys="true" drop_shadow="true" enabled="true"
height="263" label="Archivo" left="0" mouse_opaque="false" name="File"
opaque="true" tear_off="true" width="243">
<menu_item_call label="Imágen ([UPLOADFEE])..." name="Upload Image" >
<on_click function="File.UploadImage" userdata="" />
<on_enable function="File.EnableUpload" />
</menu_item_call>
<menu_item_call label="Sonido ([UPLOADFEE])..." name="Upload Sound" >
<on_click function="File.UploadSound" userdata="" />
<on_enable function="File.EnableUpload" />
</menu_item_call>
<menu_item_call label="Animación ([UPLOADFEE])..." name="Upload Animation" >
<on_click function="File.UploadAnim" userdata="" />
<on_enable function="File.EnableUpload" />
</menu_item_call>
<menu_item_call label="Masiva ([UPLOADFEE] por archivo)..." name="Bulk Upload" >
<on_click function="File.UploadBulk" userdata="" />
</menu_item_call>
<menu_item_call label="Importar XML" name="Import">
<on_click function="Object.Import" />
<on_enable function="Object.EnableImport" />
</menu_item_call>
<menu_item_call label="Importar con Texturas" name="Import2">
<on_click function="Object.ImportUpload" />
<on_enable function="Object.EnableImport" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Definir Permisos por Defecto..." name="perm prefs" >
<on_click function="ShowFloater" userdata="perm prefs" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Cerrar Ventana" name="Close Window" >
<on_click function="File.CloseWindow" userdata="" />
<on_enable function="File.EnableCloseWindow" userdata="" />
</menu_item_call>
<menu_item_call label="Cerrar todas las Ventanas" name="Close All Windows" >
<on_click function="File.CloseAllWindows" userdata="" />
<on_enable function="File.EnableCloseAllWindows" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Guardar Vista Previa Como..." name="Save Preview As..." >
<on_click function="File.SavePreview" userdata="" />
<on_enable function="File.EnableSaveAs" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Hacer una Foto" name="Take Snapshot" >
<on_click function="File.TakeSnapshot" userdata="" />
</menu_item_call>
<menu_item_call label="Guardar Foto" name="Snapshot to Disk" >
<on_click function="File.TakeSnapshotToDisk" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator4"/>
<menu_item_call label="Salir" name="Quit" >
<on_click function="File.Quit" userdata="" />
</menu_item_call>
<!--menu_item_call bottom="-259" enabled="true" height="19" label="Log Out" left="0" color="1 0 0 1"
mouse_opaque="true" name="Log Out" width="243">
<on_click function="File.LogOut" userdata="" />
</menu_item_call-->
</menu>
<menu label="Editar" name="Edit" >
<menu_item_call label="Deshacer" name="Undo" >
<on_click function="Edit.Undo" userdata="" />
<on_enable function="Edit.EnableUndo" />
</menu_item_call>
<menu_item_call label="Rehacer" name="Redo" >
<on_click function="Edit.Redo" userdata="" />
<on_enable function="Edit.EnableRedo" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Cortar" name="Cut" >
<on_click function="Edit.Cut" userdata="" />
<on_enable function="Edit.EnableCut" />
</menu_item_call>
<menu_item_call label="Copiar" name="Copy" >
<on_click function="Edit.Copy" userdata="" />
<on_enable function="Edit.EnableCopy" />
</menu_item_call>
<menu_item_call label="Pegar" name="Paste" >
<on_click function="Edit.Paste" userdata="" />
<on_enable function="Edit.EnablePaste" />
</menu_item_call>
<menu_item_call label="Borrar" name="Delete" >
<on_click function="Edit.Delete" userdata="" />
<on_enable function="Edit.EnableDelete" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Buscar..." name="Search..." >
<on_click function="Edit.Search" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Seleccionar Todo" name="Select All" >
<on_click function="Edit.SelectAll" userdata="" />
<on_enable function="Edit.EnableSelectAll" />
</menu_item_call>
<menu_item_call label="Deseleccionar" name="Deselect" >
<on_click function="Edit.Deselect" userdata="" />
<on_enable function="Edit.EnableDeselect" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator4" />
<menu_item_call label="Duplicar" name="Duplicate" >
<on_click function="Edit.Duplicate" userdata="" />
<on_enable function="Edit.EnableDuplicate" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator5" />
<menu label="Anexar Objeto" name="Attach Object" />
<menu label="Quitarse Objeto" name="Detach Object" />
<menu label="Quitarse Ropas" name="Take Off Clothing" >
<menu_item_call label="Camisa" name="Shirt" >
<on_click function="Edit.TakeOff" userdata="shirt" />
<on_enable function="Edit.EnableTakeOff" userdata="shirt" />
</menu_item_call>
<menu_item_call label="Pantalones" name="Pants" >
<on_click function="Edit.TakeOff" userdata="pants" />
<on_enable function="Edit.EnableTakeOff" userdata="pants" />
</menu_item_call>
<menu_item_call label="Zapatos" name="Shoes" >
<on_click function="Edit.TakeOff" userdata="shoes" />
<on_enable function="Edit.EnableTakeOff" userdata="shoes" />
</menu_item_call>
<menu_item_call label="Calcetines" name="Socks" >
<on_click function="Edit.TakeOff" userdata="socks" />
<on_enable function="Edit.EnableTakeOff" userdata="socks" />
</menu_item_call>
<menu_item_call label="Chaqueta" name="Jacket" >
<on_click function="Edit.TakeOff" userdata="jacket" />
<on_enable function="Edit.EnableTakeOff" userdata="jacket" />
</menu_item_call>
<menu_item_call label="Guantes" name="Gloves">
<on_click function="Edit.TakeOff" userdata="gloves" />
<on_enable function="Edit.EnableTakeOff" userdata="gloves" />
</menu_item_call>
<menu_item_call label="Camiseta" name="Menu Undershirt" >
<on_click function="Edit.TakeOff" userdata="undershirt" />
<on_enable function="Edit.EnableTakeOff" userdata="undershirt" />
</menu_item_call>
<menu_item_call label="Calzoncillos" name="Menu Underpants" >
<on_click function="Edit.TakeOff" userdata="underpants" />
<on_enable function="Edit.EnableTakeOff" userdata="underpants" />
</menu_item_call>
<menu_item_call label="Falda" name="Skirt" >
<on_click function="Edit.TakeOff" userdata="skirt" />
<on_enable function="Edit.EnableTakeOff" userdata="skirt" />
</menu_item_call>
<menu_item_call label="Tatuaje" name="Tattoo" >
<on_click function="Edit.TakeOff" userdata="tattoo" />
<on_enable function="Edit.EnableTakeOff" userdata="tattoo" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator51" />
<menu_item_call label="Alfa" name="Alpha" >
<on_click function="Edit.TakeOff" userdata="alpha" />
<on_enable function="Edit.EnableTakeOff" userdata="alpha" />
</menu_item_call>
<menu_item_call label="Física" name="Physics" >
<on_click function="Edit.TakeOff" userdata="physics" />
<on_enable function="Edit.EnableTakeOff" userdata="physics" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator51" />
<menu_item_call label="Toda la Ropa" name="All Clothes" >
<on_click function="Edit.TakeOff" userdata="all" />
</menu_item_call>
</menu>
<menu_item_separator label="-----------" name="separator6" />
<menu_item_call label="Gestos..." name="Gestures..." >
<on_click function="ShowFloater" userdata="gestures" />
</menu_item_call>
<menu_item_call label="Perfil..." name="Profile..." >
<on_click function="ShowAgentProfile" userdata="agent" />
</menu_item_call>
<menu_item_call label="Apariencia..." name="Appearance..." >
<on_click function="ShowFloater" userdata="appearance" />
<on_enable function="Edit.EnableCustomizeAvatar" />
</menu_item_call>
<menu_item_call label="Mostrar el Nombre..." name="Display Name..." >
<on_click function="ShowFloater" userdata="displayname" />
<on_enable function="Edit.EnableChangeDisplayname" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator7" />
<menu_item_check label="Amigos..." name="Friends..." >
<on_click function="ShowFloater" userdata="friends" />
<on_check function="FloaterVisible" userdata="friends" />
</menu_item_check>
<menu_item_call label="Grupos..." name="Groups..." >
<on_click function="ShowAgentGroups" userdata="agent" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator8" />
<menu_item_call label="Preferencias..." name="Preferences..." >
<on_click function="ShowFloater" userdata="preferences" />
</menu_item_call>
</menu>
<menu label="Ver" name="View" >
<tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" />
<menu_item_call label="Vista Subjetiva" name="Mouselook" >
<on_click function="View.Mouselook" userdata="" />
<on_enable function="View.EnableMouselook" />
</menu_item_call>
<menu_item_check label="Construir" name="Build" >
<on_click function="View.BuildMode" userdata="" />
<on_check function="View.CheckBuildMode" />
</menu_item_check>
<menu_item_check label="Flycam del Joystick" name="Joystick Flycam" >
<on_click function="View.JoystickFlycam" userdata="" />
<on_check function="View.CheckJoystickFlycam" />
<on_enable function="View.EnableJoystickFlycam" />
</menu_item_check>
<menu_item_call label="Volver a Vista por Defecto" name="Reset View" >
<on_click function="View.ResetView" userdata="" />
</menu_item_call>
<menu_item_call label="Mirar al último que habló" name="Look at Last Chatter" >
<on_click function="View.LookAtLastChatter" userdata="" />
<on_enable function="View.EnableLastChatter" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_check label="Barra de Herramientas" name="Toolbar" >
<on_click function="ShowFloater" userdata="toolbar" />
<on_check function="FloaterVisible" userdata="toolbar" />
</menu_item_check>
<menu_item_check label="Chat local" name="Chat History" >
<on_click function="ShowFloater" userdata="chat history"/>
<on_check function="FloaterVisible" userdata="chat history" />
</menu_item_check>
<menu_item_check label="Comunicarse" name="Instant Message" >
<on_click function="View.Communicate"/>
<on_check function="FloaterVisible" userdata="communicate" />
</menu_item_check>
<menu_item_check label="Inventario" name="Inventory" >
<on_click function="ShowFloater" userdata="inventory" />
<on_check function="FloaterVisible" userdata="inventory" />
</menu_item_check>
<menu_item_check label="Participantes Activos" name="Active Speakers" >
<on_click function="ShowFloater" userdata="active speakers" />
<on_check function="FloaterVisible" userdata="active speakers" />
</menu_item_check>
<menu_item_check label="Lista de Ignorados" name="Mute List" >
<on_click function="ShowFloater" userdata="mute list" />
<on_check function="FloaterVisible" userdata="mute list" />
</menu_item_check>
<menu_item_check label="Historial de Teleport" name="Teleport History" >
<on_click function="ShowFloater" userdata="teleport history" />
<on_check function="FloaterVisible" userdata="teleport history" />
</menu_item_check>
<menu_item_check label="Filtro de Media" name="Media Filter" >
<on_click function="ShowFloater" userdata="media filter" />
<on_check function="FloaterVisible" userdata="media filter" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_check label="Controles de Cámara" name="Camera Controls" >
<on_click function="ShowFloater" userdata="camera controls" />
<on_check function="FloaterVisible" userdata="camera controls" />
</menu_item_check>
<menu_item_check label="Controles de Movimiento" name="Movement Controls">
<on_click function="ShowFloater" userdata="movement controls" />
<on_check function="FloaterVisible" userdata="movement controls" />
</menu_item_check>
<menu_item_check label="Mapa del Mundo" name="World Map" >
<on_click function="ShowFloater" userdata="world map" />
<on_check control="ShowWorldMap" />
</menu_item_check>
<menu_item_check label="MiniMapa" name="Mini-Map" >
<on_click function="ShowFloater" userdata="mini map" />
<on_check control="ShowMiniMap" />
</menu_item_check>
<menu_item_check label="Radar" name="Radar" >
<on_click function="View.ToggleAvatarList" userdata="radar" />
<on_check control="ShowRadar" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_check label="Estadísticas" name="Statistics Bar" >
<on_click function="ShowFloater" userdata="stat bar" />
<on_check function="FloaterVisible" userdata="stat bar" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator100" />
<menu_item_check label="Búsqueda en Área" name="Area Search" >
<on_click function="ShowFloater" userdata="areasearch" />
<on_check function="FloaterVisible" userdata="areasearch" />
</menu_item_check>
<menu_item_check label="Límites de Parcelas" name="Property Lines" >
<on_click function="ToggleControl" userdata="ShowPropertyLines" />
<on_check control="ShowPropertyLines" />
</menu_item_check>
<menu_item_check label="Líneas de Prohibición" name="Banlines" >
<on_click function="ToggleControl" userdata="ShowBanLines" />
<on_check control="ShowBanLines" />
</menu_item_check>
<menu_item_check label="Propietarios del Terreno" name="Land Owners" >
<on_click function="ToggleControl" userdata="ShowParcelOwners" />
<on_check control="ShowParcelOwners" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator4" />
<menu label="Información Adicional" name="Hover Tips" >
<menu_item_check label="Mostrar Información Adicional" name="Show Tips" >
<on_click function="View.ShowHoverTips" userdata="" />
<on_check function="View.CheckShowHoverTips" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator" />
<menu_item_check label="Información Adicional del Terreno" name="Land Tips" >
<on_click function="ToggleControl" userdata="ShowLandHoverTip" />
<on_enable function="View.CheckShowHoverTips" />
<on_check control="ShowLandHoverTip" />
</menu_item_check>
<menu_item_check label="Consejos en Todos los Objetos" name="Tips On All Objects" >
<on_click function="ToggleControl" userdata="ShowAllObjectHoverTip" />
<on_enable function="View.CheckShowHoverTips" />
<on_check control="ShowAllObjectHoverTip" />
</menu_item_check>
</menu>
<menu_item_check label="Realzar Transparencias" name="Highlight Transparent" >
<on_click function="View.HighlightTransparent" userdata="" />
<on_check function="View.CheckHighlightTransparent" />
</menu_item_check>
<menu_item_check name="beacons" label="Balizas" >
<on_click function="ShowFloater" userdata="beacons" />
<on_check function="FloaterVisible" userdata="beacons" />
</menu_item_check>
<menu_item_check label="Ocultar Partículas" name="Hide Particles" >
<on_click function="View.ToggleRenderType" userdata="hideparticles" />
<on_check function="View.CheckRenderType" userdata="hideparticles" />
</menu_item_check>
<menu_item_check label="Mostrar los HUD en uso" name="Show HUD Attachments" >
<on_click function="View.ShowHUDAttachments" userdata="" />
<on_check function="View.CheckHUDAttachments" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator5" />
<menu_item_call label="Acercar Zoom" name="Zoom In" >
<on_click function="View.ZoomIn" userdata="" />
</menu_item_call>
<menu_item_call label="Zoom Predeterminado" name="Zoom Default" >
<on_click function="View.ZoomDefault" userdata="" />
</menu_item_call>
<menu_item_call label="Alejar Zoom" name="Zoom Out" >
<on_click function="View.ZoomOut" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator6" />
<menu_item_call label="Pantalla Completa" name="Toggle Fullscreen" >
<on_click function="View.Fullscreen" userdata="" />
</menu_item_call>
<menu_item_call label="Interfaz en tamaño Predeterminado" name="Set UI Size to Default" >
<on_click function="View.DefaultUISize" userdata="" />
</menu_item_call>
</menu>
<menu label="Mundo" name="World" >
<menu_item_call label="Chat" name="Chat" >
<on_click function="World.Chat" userdata="" />
</menu_item_call>
<menu_item_check label="Correr Siempre" name="Always Run" >
<on_click function="World.AlwaysRun" userdata="" />
<on_check function="World.CheckAlwaysRun" userdata="" />
</menu_item_check>
<menu_item_call label="Sentarse en el piso" name="Sit on Ground" >
<on_click function="World.SitOnGround" userdata="" />
<on_enable function="World.EnableSitOnGround" userdata="" />
</menu_item_call>
<menu_item_check label="Volar" name="Fly" >
<on_click function="World.Fly" userdata="" />
<on_enable function="World.EnableFly" />
<on_check control="FlyBtnState" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Crear un Hito Aquí" name="Create Landmark Here" >
<on_click function="World.CreateLandmark" userdata="" />
<on_enable function="World.EnableCreateLandmark" userdata="" />
</menu_item_call>
<menu_item_call label="Fijar Base Aquí" name="Set Home to Here" >
<on_click function="World.SetHomeLocation" userdata="" />
<on_enable function="World.EnableSetHomeLocation" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Teleport a Base" name="Teleport Home" >
<on_click function="World.TeleportHome" userdata="" />
<on_enable function="World.EnableTeleportHome" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Falso Estado Ausente" name="Fake Away Status" >
<on_click function="World.FakeAway" userdata="" />
</menu_item_call>
<menu_item_call label="Pasar a Estado Ausente" name="Set Away" >
<on_click function="World.SetAway" userdata="" />
</menu_item_call>
<menu_item_call label="Pasar a Estado Ocupado" name="Set Busy" >
<on_click function="World.SetBusy" userdata="" />
</menu_item_call>
<menu_item_call label="Detener las animaciones del Avatar" name="Stop Animating My Avatar" >
<on_click function="Tools.StopAllAnimations" userdata="" />
</menu_item_call>
<menu_item_call label="Liberar Teclas" name="Release Keys" >
<on_click function="Tools.ReleaseKeys" userdata="" />
<on_enable function="Tools.EnableReleaseKeys" userdata="" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator4" />
<menu_item_call label="Historial de la Cuenta..." name="Account History..." >
<on_click function="PromptShowURL" name="AccountHistory_url"
userdata="WebLaunchAccountHistory,http://secondlife.com/account/transactions.php" />
</menu_item_call>
<menu_item_call label="Administrar mi Cuenta..." name="Manage My Account..." >
<on_click function="PromptShowURL" name="ManageMyAccount_url"
userdata="WebLaunchJoinNow,http://secondlife.com/account/" />
</menu_item_call>
<menu_item_call label="Comprar [CURRENCY]..." name="Buy and Sell L$..." >
<on_click function="ShowFloater" userdata="buy currency" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator5" />
<menu_item_call label="Mi Terreno..." name="My Land..." >
<on_click function="ShowFloater" userdata="my land" />
</menu_item_call>
<menu_item_call label="Acerca del Terreno..." name="About Land..." >
<on_click function="ShowFloater" userdata="about land" />
</menu_item_call>
<menu_item_call label="Comprar Terreno..." name="Buy Land..." >
<on_click function="ShowFloater" userdata="buy land" />
<on_enable function="World.EnableBuyLand" />
</menu_item_call>
<menu_item_call label="Región/Estado..." name="Region/Estate..." >
<on_click function="ShowFloater" userdata="about region" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator6" />
<menu label="Configuración del Entorno" name="Environment Settings" >
<menu_item_call label="Amanecer" name="Sunrise" >
<on_click function="World.EnvSettings" userdata="sunrise" />
</menu_item_call>
<menu_item_call label="Mediodía" name="Noon" >
<on_click function="World.EnvSettings" userdata="noon" />
</menu_item_call>
<menu_item_call label="Atardecer" name="Sunset" >
<on_click function="World.EnvSettings" userdata="sunset" />
</menu_item_call>
<menu_item_call label="Medianoche" name="Midnight" >
<on_click function="World.EnvSettings" userdata="midnight" />
</menu_item_call>
<menu_item_call label="Volver a los valores de la Región" name="Revert to Region Default" >
<on_click function="World.EnvSettings" userdata="default" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Editor del Entorno" name="Environment Editor" >
<on_click function="World.EnvSettings" userdata="editor" />
</menu_item_call>
<menu_item_call label="Editor del Ciclo Diario" name="Day Cycle Editor" >
<on_click function="World.DayCycle" userdata="editor" />
</menu_item_call>
<menu_item_call label="Efectos de Post-Procesado" name="Post-Processing Effects" >
<on_click function="World.PostProcess" userdata="editor" />
</menu_item_call>
</menu>
</menu>
<menu label="Herramientas" left="0" name="Tools" >
<menu label="Seleccionar Herramienta" name="Select Tool" >
<menu_item_call label="Foco" name="Focus" >
<on_click function="Tools.SelectTool" userdata="focus" />
</menu_item_call>
<menu_item_call label="Mover" name="Move" >
<on_click function="Tools.SelectTool" userdata="move" />
</menu_item_call>
<menu_item_call label="Editar" name="Edit" >
<on_click function="Tools.SelectTool" userdata="edit" />
</menu_item_call>
<menu_item_call label="Crear" name="Create" >
<on_click function="Tools.SelectTool" userdata="create" />
</menu_item_call>
<menu_item_call label="Terreno" name="Land" >
<on_click function="Tools.SelectTool" userdata="land" />
</menu_item_call>
</menu>
<menu_item_separator label="-----------" name="separator" />
<menu_item_check label="Seleccionar sólo mis Objetos" name="Select Only My Objects" >
<on_click function="Tools.SelectOnlyMyObjects" userdata="agents" />
<on_check control="SelectOwnedOnly" />
</menu_item_check>
<menu_item_check label="Seleccionar sólo Objetos movibles" name="Select Only Movable Objects" >
<on_click function="Tools.SelectOnlyMovableObjects" userdata="movable" />
<on_check control="SelectMovableOnly" />
</menu_item_check>
<menu_item_check label="Seleccionar marcando los alrededores" name="Select By Surrounding" >
<on_click function="Tools.SelectBySurrounding" userdata="" />
<on_check control="RectangleSelectInclusive" />
</menu_item_check>
<menu_item_check label="Mostrar Esquema de Selección" name="Show Selection Outlines" >
<on_click function="Tools.ShowSelectionHighlights" userdata="" />
<on_check control="RenderHighlightSelections" />
</menu_item_check>
<menu_item_check label="Mostrar objetos seleccionados ocultos" name="Show Hidden Selection" >
<on_click function="Tools.ShowHiddenSelection" userdata="" />
<on_check control="RenderHiddenSelections" />
</menu_item_check>
<menu_item_check label="Mostrar radio de luz de la selección" name="Show Light Radius for Selection" >
<on_click function="Tools.ShowSelectionLightRadius" userdata="" />
<on_check control="RenderLightRadius" />
</menu_item_check>
<menu_item_check label="Mostrar rayo indicador" name="Show Selection Beam" >
<on_click function="ToggleControl" userdata="ShowSelectionBeam" />
<on_check control="ShowSelectionBeam" />
</menu_item_check>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_check label="Ajustar a la cuadrícula" name="Snap to Grid" >
<on_click function="ToggleControl" userdata="SnapEnabled" />
<on_check control="SnapEnabled" />
<on_enable function="Tools.EnableToolNotPie" />
</menu_item_check>
<menu_item_call label="Ajustar Objetos a los Ejes XY de la cuadrícula" name="Snap Object XY to Grid" >
<on_click function="Tools.SnapObjectXY" userdata="" />
<on_enable function="Tools.EnableToolNotPie" />
</menu_item_call>
<menu_item_call label="Usar Seleccionado como cuadrícula" name="Use Selection for Grid" >
<on_click function="Tools.UseSelectionForGrid" userdata="" />
<on_enable function="SomethingSelected" />
</menu_item_call>
<menu_item_call label="Opciones de la Cuadrícula..." name="Grid Options..." >
<on_click function="ShowFloater" userdata="grid options" />
<on_enable function="Tools.EnableToolNotPie" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_check label="Editar partes enlazadas" name="Edit Linked Parts" >
<on_click function="ToggleControl" userdata="EditLinkedParts" />
<on_click function="Tools.EditLinkedParts" userdata="" />
<on_check control="EditLinkedParts" />
<on_enable function="Tools.EnableToolNotPie" />
</menu_item_check>
<menu label="Seleccionar partes enlazadas" name="Select Linked Parts" >
<menu_item_call label="Seleccionar parte siguiente" name="Select Next Part" >
<on_click function="Tools.SelectNextPart" userdata="next" />
<on_enable function="Tools.EnableSelectNextPart" />
</menu_item_call>
<menu_item_call label="Seleccionar Parte Anterior" name="Select Previous Part" >
<on_click function="Tools.SelectNextPart" userdata="previous" />
<on_enable function="Tools.EnableSelectNextPart" />
</menu_item_call>
<menu_item_call label="Incluir Parte Siguiente" name="Include Next Part" >
<on_click function="Tools.SelectNextPart" userdata="includenext" />
<on_enable function="Tools.EnableSelectNextPart" />
</menu_item_call>
<menu_item_call label="Incluir Parte Anterior" name="Include Previous Part" >
<on_click function="Tools.SelectNextPart" userdata="includeprevious" />
<on_enable function="Tools.EnableSelectNextPart" />
</menu_item_call>
</menu>
<menu_item_call label="Enlazar" name="Link" >
<on_click function="Tools.Link" userdata="" />
<on_enable function="Tools.EnableLink" />
</menu_item_call>
<menu_item_call label="Desenlazar" name="Unlink" >
<on_click function="Tools.Unlink" userdata="" />
<on_enable function="Tools.EnableUnlink" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator4" />
<menu_item_call label="Foco en la Selección" name="Focus on Selection" >
<on_click function="Tools.LookAtSelection" userdata="focus" />
<on_enable function="Tools.SomethingSelectedNoHUD" />
</menu_item_call>
<menu_item_call label="Zoom en lo Seleccionado" name="Zoom to Selection" >
<on_click function="Tools.LookAtSelection" userdata="zoom" />
<on_enable function="Tools.SomethingSelectedNoHUD" />
</menu_item_call>
<menu_item_call label="Comprar Objeto" name="Menu Object Take" >
<on_click function="Tools.BuyOrTake" userdata="" />
<on_enable function="Tools.EnableBuyOrTake" userdata="Buy,Take" name="EnableBuyOrTake"/>
</menu_item_call>
<menu_item_call label="Agarrar una Copia" name="Take Copy" >
<on_click function="Tools.TakeCopy" userdata="" />
<on_enable function="Tools.EnableTakeCopy" />
</menu_item_call>
<menu_item_call label="Devolver Objeto" name="Return..." >
<on_click function="Object.Return" userdata="" />
<on_enable function="Object.EnableReturn" />
</menu_item_call>
<menu_item_call label="Devolver el Objeto al Contenido de Objetos" name="Save Object Back to Object Contents" >
<on_click function="Tools.SaveToObjectInventory" userdata="" />
<on_enable function="Tools.EnableSaveToObjectInventory" />
</menu_item_call>
<menu_item_call label="Administrador - Borrar" name="Admin Delete" >
<on_click function="Tools.AdminDelete" userdata="" />
<on_enable function="Tools.EnableAdminDelete" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator6" />
<menu_item_call label="Mostrar ventana de avisos/errores de Script " name="Show Script Warning/Error Window" >
<on_click function="ShowFloater" userdata="script errors" />
</menu_item_call>
<menu label="Recompilar Scripts de la Selección" name="Recompile Scripts in Selection" >
<menu_item_call label="Mono" name="Mono" >
<on_click function="Tools.SelectedScriptAction" userdata="compile mono" />
<on_enable function="EditableSelectedMono" />
</menu_item_call>
<menu_item_call label="LSL" name="LSL" >
<on_click function="Tools.SelectedScriptAction" userdata="compile lsl" />
<on_enable function="EditableSelected" />
</menu_item_call>
</menu>
<menu_item_call label="Reiniciar Scripts en la Selección" name="Reset Scripts in Selection" >
<on_click function="Tools.SelectedScriptAction" userdata="reset" />
<on_enable function="EditableSelected" />
</menu_item_call>
<menu_item_call label="Definir Ejecución de Scripts en la Selección" name="Set Scripts to Running in Selection" >
<on_click function="Tools.SelectedScriptAction" userdata="start" />
<on_enable function="EditableSelected" />
</menu_item_call>
<menu_item_call label="Definir la no ejecución de Scripts en la Selección" name="Set Scripts to Not Running in Selection" >
<on_click function="Tools.SelectedScriptAction" userdata="stop" />
<on_enable function="EditableSelected" />
</menu_item_call>
<menu_item_call label="Borrar Scripts en la Selección" name="Remove Scripts in Selection" >
<on_click function="Tools.ScriptDelete" />
<on_enable function="Tools.EnableScriptDelete" />
</menu_item_call>
</menu>
<menu label="Ayuda" left="227" name="Help" >
<menu_item_call label="Ayuda de Second Life" name="Second Life Help" >
<on_click function="ShowFloater" userdata="help f1" />
</menu_item_call>
<menu_item_call label="Tutorial" name="Tutorial" >
<on_click function="ShowFloater" userdata="help tutorial" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Blog Oficial de Linden Lab..." name="Official Linden Blog..." >
<on_click function="PromptShowURL" name="OfficialLindenBlog_url"
userdata="WebLaunchSupportWiki,http://blog.secondlife.com/" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Portal de Scripting..." name="Scripting Portal..." >
<on_click function="PromptShowURL" name="ScriptingPortal_url"
userdata="WebLaunchLSLWiki,http://wiki.secondlife.com/wiki/LSL_Portal" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Denunciar Abuso..." name="Report Abuse..." >
<on_click function="ShowFloater" userdata="complaint reporter" />
</menu_item_call>
<menu_item_call label="Choques, Empujones y Golpes..." name="Bumps, Pushes &amp;amp; Hits..." >
<on_click function="ShowFloater" userdata="mean events" />
</menu_item_call>
<menu_item_call label="Medidor de Lag" name="Lag Meter">
<on_click function="ShowFloater" userdata="lag meter" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator7" />
<menu label="Informe de Fallos" name="Bug Reporting" >
<menu_item_call label="Seguimiento de Problemas Público..." name="Public Issue Tracker..." >
<on_click function="PromptShowURL" name="PublicIssueTracker_url"
userdata="WebLaunchPublicIssue,http://jira.secondlife.com" />
</menu_item_call>
<menu_item_call label="Ayuda del Seguimiento de Problemas Público..." name="Publc Issue Tracker Help..." >
<on_click function="PromptShowURL" name="PublicIssueTrackerHelp_url"
userdata="WebLaunchPublicIssueHelp,http://wiki.secondlife.com/wiki/Issue_tracker" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator7" />
<menu_item_call label="Informe de Fallos 101..." name="Bug Reporing 101..." >
<on_click function="PromptShowURL" name="BugReporting101_url"
userdata="WebLaunchBugReport101,http://wiki.secondlife.com/wiki/Bug_Reporting_101" />
</menu_item_call>
<menu_item_call label="Problemas de Seguridad..." name="Security Issues..." >
<on_click function="PromptShowURL" name="SecurityIssues_url"
userdata="WebLaunchSecurityIssues,http://wiki.secondlife.com/wiki/Security_issues" />
</menu_item_call>
<menu_item_call label="Wiki de QA..." name="QA Wiki..." >
<on_click function="PromptShowURL" name="QAWiki_url"
userdata="WebLaunchQAWiki,http://wiki.secondlife.com/wiki/QA_Portal" />
</menu_item_call>
<menu_item_separator label="-----------" name="separator9" />
<menu_item_call label="Informar un Fallo..." name="Report Bug..." >
<on_click function="PromptShowURL" name="ReportBug_url"
userdata="WebLaunchPublicIssue,http://jira.secondlife.com" />
</menu_item_call>
</menu>
<menu_item_call label="Acerca de Singularity..." name="About Second Life..." >
<on_click function="ShowFloater" userdata="about" />
</menu_item_call>
</menu>
<menu_bar name="Main Menu">
<menu label="Archivo" name="File">
<menu_item_call label="Imagen ([UPLOADFEE])..." name="Upload Image" ></menu_item_call>
<menu_item_call label="Sonido ([UPLOADFEE])..." name="Upload Sound" ></menu_item_call>
<menu_item_call label="Animación ([UPLOADFEE])..." name="Upload Animation" ></menu_item_call>
<menu_item_call label="Masiva ([UPLOADFEE] por archivo)..." name="Bulk Upload" ></menu_item_call>
<menu_item_call label="Importar XML" name="Import"></menu_item_call>
<menu_item_call label="Importar con Texturas" name="Import2"></menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Definir Permisos por Defecto..." name="perm prefs" ></menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Cerrar Ventana" name="Close Window" ></menu_item_call>
<menu_item_call label="Cerrar todas las Ventanas" name="Close All Windows" ></menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Guardar Vista Previa Como..." name="Save Preview As..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Hacer una Foto" name="Take Snapshot" ></menu_item_call>
<menu_item_call label="Guardar Foto" name="Snapshot to Disk" ></menu_item_call>
<menu_item_separator label="-----------" name="separator4"/>
<menu_item_call label="Salir" name="Quit" ></menu_item_call>
</menu>
<menu label="Editar" name="Edit" >
<menu_item_call label="Deshacer" name="Undo" ></menu_item_call>
<menu_item_call label="Rehacer" name="Redo" ></menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Cortar" name="Cut" ></menu_item_call>
<menu_item_call label="Copiar" name="Copy" ></menu_item_call>
<menu_item_call label="Pegar" name="Paste" ></menu_item_call>
<menu_item_call label="Borrar" name="Delete" ></menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Buscar..." name="Search..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Seleccionar Todo" name="Select All" ></menu_item_call>
<menu_item_call label="Deseleccionar" name="Deselect" ></menu_item_call>
<menu_item_separator label="-----------" name="separator4" />
<menu_item_call label="Duplicar" name="Duplicate" ></menu_item_call>
<menu_item_separator label="-----------" name="separator5" />
<menu label="Anexar Objeto" name="Attach Object" />
<menu label="Quitarse Objeto" name="Detach Object" />
<menu label="Quitarse Ropas" name="Take Off Clothing" >
<menu_item_call label="Camisa" name="Shirt" ></menu_item_call>
<menu_item_call label="Pantalones" name="Pants" ></menu_item_call>
<menu_item_call label="Zapatos" name="Shoes" ></menu_item_call>
<menu_item_call label="Calcetines" name="Socks" ></menu_item_call>
<menu_item_call label="Chaqueta" name="Jacket" ></menu_item_call>
<menu_item_call label="Guantes" name="Gloves"></menu_item_call>
<menu_item_call label="Camiseta" name="Menu Undershirt" ></menu_item_call>
<menu_item_call label="Ropa Interior" name="Menu Underpants" ></menu_item_call>
<menu_item_call label="Falda" name="Skirt" ></menu_item_call>
<menu_item_call label="Tatuaje" name="Tattoo" ></menu_item_call>
<menu_item_separator label="-----------" name="separator51" />
<menu_item_call label="Alfa" name="Alpha" ></menu_item_call>
<menu_item_call label="Física" name="Physics" ></menu_item_call>
<menu_item_separator label="-----------" name="separator51" />
<menu_item_call label="Toda la Ropa" name="All Clothes" ></menu_item_call>
</menu>
<menu_item_separator label="-----------" name="separator6" />
<menu_item_call label="Gestos..." name="Gestures..." ></menu_item_call>
<menu_item_call label="Perfil..." name="Profile..." ></menu_item_call>
<menu_item_call label="Apariencia..." name="Appearance..." ></menu_item_call>
<menu_item_call label="Nombre a Mostrar..." name="Display Name..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator7" />
<menu_item_check label="Amigos..." name="Friends..." ></menu_item_check>
<menu_item_call label="Grupos..." name="Groups..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator8" />
<menu_item_call label="Preferencias..." name="Preferences..." ></menu_item_call>
</menu>
<menu label="Ver" name="View" >
<tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" />
<menu_item_call label="Vista Subjetiva" name="Mouselook" ></menu_item_call>
<menu_item_check label="Construir" name="Build" ></menu_item_check>
<menu_item_check label="Flycam del Joystick" name="Joystick Flycam" ></menu_item_check>
<menu_item_call label="Volver a Vista por Defecto" name="Reset View" ></menu_item_call>
<menu_item_call label="Mirar al último que habló" name="Look at Last Chatter" ></menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_check label="Barra de Herramientas" name="Toolbar" ></menu_item_check>
<menu_item_check label="Chat local" name="Chat History" ></menu_item_check>
<menu_item_check label="Comunicarse" name="Instant Message" ></menu_item_check>
<menu_item_check label="Inventario" name="Inventory" ></menu_item_check>
<menu_item_check label="Participantes Activos" name="Active Speakers" ></menu_item_check>
<menu_item_check label="Lista de Ignorados" name="Mute List" ></menu_item_check>
<menu_item_check label="Historial de Teleport" name="Teleport History" ></menu_item_check>
<menu_item_check label="Filtro de Media" name="Media Filter" ></menu_item_check>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_check label="Controles de Cámara" name="Camera Controls" ></menu_item_check>
<menu_item_check label="Controles de Movimiento" name="Movement Controls"></menu_item_check>
<menu_item_check label="Mapa del Mundo" name="World Map" ></menu_item_check>
<menu_item_check label="MiniMapa" name="Mini-Map" ></menu_item_check>
<menu_item_check label="Radar" name="Radar" ></menu_item_check>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_check label="Estadísticas" name="Statistics Bar" ></menu_item_check>
<menu_item_separator label="-----------" name="separator100" />
<menu_item_check label="Búsqueda en Área" name="Area Search" ></menu_item_check>
<menu_item_check label="Límites de Parcelas" name="Property Lines" ></menu_item_check>
<menu_item_check label="Líneas de Prohibición" name="Banlines" ></menu_item_check>
<menu_item_check label="Propietarios del Terreno" name="Land Owners" ></menu_item_check>
<menu_item_separator label="-----------" name="separator4" />
<menu label="Información Adicional" name="Hover Tips" >
<menu_item_check label="Mostrar Información Adicional" name="Show Tips" ></menu_item_check>
<menu_item_separator label="-----------" name="separator" />
<menu_item_check label="Información Adicional del Terreno" name="Land Tips" ></menu_item_check>
<menu_item_check label="Información Adicional en Todos los Objetos" name="Tips On All Objects" ></menu_item_check>
</menu>
<menu_item_check label="Realzar Transparencias" name="Highlight Transparent" ></menu_item_check>
<menu_item_check name="beacons" label="Balizas" ></menu_item_check>
<menu_item_check label="Ocultar Partículas" name="Hide Particles" ></menu_item_check>
<menu_item_check label="Mostrar los HUD en uso" name="Show HUD Attachments" ></menu_item_check>
<menu_item_separator label="-----------" name="separator5" />
<menu_item_call label="Acercar Zoom" name="Zoom In" ></menu_item_call>
<menu_item_call label="Zoom Predeterminado" name="Zoom Default" ></menu_item_call>
<menu_item_call label="Alejar Zoom" name="Zoom Out" ></menu_item_call>
<menu_item_separator label="-----------" name="separator6" />
<menu_item_call label="Pantalla Completa" name="Toggle Fullscreen" ></menu_item_call>
<menu_item_call label="Interfaz en tamaño Predeterminado" name="Set UI Size to Default" ></menu_item_call>
</menu>
<menu label="Mundo" name="World" >
<menu_item_call label="Chat" name="Chat" ></menu_item_call>
<menu_item_check label="Correr Siempre" name="Always Run" ></menu_item_check>
<menu_item_call label="Sentarse en el piso" name="Sit on Ground" ></menu_item_call>
<menu_item_check label="Volar" name="Fly" ></menu_item_check>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Crear un Hito Aquí" name="Create Landmark Here" ></menu_item_call>
<menu_item_call label="Fijar Base Aquí" name="Set Home to Here" ></menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Teleport a Base" name="Teleport Home" ></menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Falso Estado Ausente" name="Fake Away Status" ></menu_item_call>
<menu_item_call label="Pasar a Estado Ausente" name="Set Away" ></menu_item_call>
<menu_item_call label="Pasar a Estado Ocupado" name="Set Busy" ></menu_item_call>
<menu_item_call label="Detener las animaciones del Avatar" name="Stop Animating My Avatar" ></menu_item_call>
<menu_item_call label="Liberar Teclas" name="Release Keys" ></menu_item_call>
<menu_item_separator label="-----------" name="separator4" />
<menu_item_call label="Historial de la Cuenta..." name="Account History..." ></menu_item_call>
<menu_item_call label="Administrar mi Cuenta..." name="Manage My Account..." ></menu_item_call>
<menu_item_call label="Comprar [CURRENCY]..." name="Buy and Sell L$..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator5" />
<menu_item_call label="Mi Terreno..." name="My Land..." ></menu_item_call>
<menu_item_call label="Acerca del Terreno..." name="About Land..." ></menu_item_call>
<menu_item_call label="Comprar Terreno..." name="Buy Land..." ></menu_item_call>
<menu_item_call label="Región/Estado..." name="Region/Estate..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator6" />
<menu label="Configuración del Entorno" name="Environment Settings" >
<menu_item_call label="Amanecer" name="Sunrise" ></menu_item_call>
<menu_item_call label="Mediodía" name="Noon" ></menu_item_call>
<menu_item_call label="Atardecer" name="Sunset" ></menu_item_call>
<menu_item_call label="Medianoche" name="Midnight" ></menu_item_call>
<menu_item_call label="Volver a los valores de la Región" name="Revert to Region Default" ></menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Editor del Entorno" name="Environment Editor" ></menu_item_call>
<menu_item_call label="Editor del Ciclo Diario" name="Day Cycle Editor" ></menu_item_call>
<menu_item_call label="Efectos de Post-Procesado" name="Post-Processing Effects" ></menu_item_call>
</menu>
</menu>
<menu label="Herramientas" left="0" name="Tools" >
<menu label="Seleccionar Herramienta" name="Select Tool" >
<menu_item_call label="Foco" name="Focus" ></menu_item_call>
<menu_item_call label="Mover" name="Move" ></menu_item_call>
<menu_item_call label="Editar" name="Edit" ></menu_item_call>
<menu_item_call label="Crear" name="Create" ></menu_item_call>
<menu_item_call label="Terreno" name="Land" ></menu_item_call>
</menu>
<menu_item_separator label="-----------" name="separator" />
<menu_item_check label="Seleccionar sólo mis Objetos" name="Select Only My Objects" ></menu_item_check>
<menu_item_check label="Seleccionar sólo Objetos movibles" name="Select Only Movable Objects" ></menu_item_check>
<menu_item_check label="Seleccionar marcando los alrededores" name="Select By Surrounding" ></menu_item_check>
<menu_item_check label="Mostrar Esquema de Selección" name="Show Selection Outlines" ></menu_item_check>
<menu_item_check label="Mostrar objetos seleccionados ocultos" name="Show Hidden Selection" ></menu_item_check>
<menu_item_check label="Mostrar radio de luz de la selección" name="Show Light Radius for Selection" ></menu_item_check>
<menu_item_check label="Mostrar rayo indicador" name="Show Selection Beam" ></menu_item_check>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_check label="Ajustar a la cuadrícula" name="Snap to Grid" ></menu_item_check>
<menu_item_call label="Ajustar Objetos a los Ejes XY de la cuadrícula" name="Snap Object XY to Grid" ></menu_item_call>
<menu_item_call label="Usar Seleccionado como cuadrícula" name="Use Selection for Grid" ></menu_item_call>
<menu_item_call label="Opciones de la Cuadrícula..." name="Grid Options..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_check label="Editar partes enlazadas" name="Edit Linked Parts" ></menu_item_check>
<menu label="Seleccionar partes enlazadas" name="Select Linked Parts" >
<menu_item_call label="Seleccionar parte siguiente" name="Select Next Part" ></menu_item_call>
<menu_item_call label="Seleccionar Parte Anterior" name="Select Previous Part" ></menu_item_call>
<menu_item_call label="Incluir Parte Siguiente" name="Include Next Part" ></menu_item_call>
<menu_item_call label="Incluir Parte Anterior" name="Include Previous Part" ></menu_item_call>
</menu>
<menu_item_call label="Enlazar" name="Link" ></menu_item_call>
<menu_item_call label="Desenlazar" name="Unlink" ></menu_item_call>
<menu_item_separator label="-----------" name="separator4" />
<menu_item_call label="Foco en la Selección" name="Focus on Selection" ></menu_item_call>
<menu_item_call label="Zoom en lo Seleccionado" name="Zoom to Selection" ></menu_item_call>
<menu_item_call label="Comprar Objeto" name="Menu Object Take" ></menu_item_call>
<menu_item_call label="Agarrar una Copia" name="Take Copy" ></menu_item_call>
<menu_item_call label="Devolver Objeto" name="Return..." ></menu_item_call>
<menu_item_call label="Devolver el Objeto al Contenido de Objetos" name="Save Object Back to Object Contents" ></menu_item_call>
<menu_item_call label="Administrador - Borrar" name="Admin Delete" ></menu_item_call>
<menu_item_separator label="-----------" name="separator6" />
<menu_item_call label="Mostrar ventana de avisos/errores de Script " name="Show Script Warning/Error Window" ></menu_item_call>
<menu label="Recompilar Scripts de la Selección" name="Recompile Scripts in Selection" >
<menu_item_call label="Mono" name="Mono" ></menu_item_call>
<menu_item_call label="LSL" name="LSL" ></menu_item_call>
</menu>
<menu_item_call label="Reiniciar Scripts en la Selección" name="Reset Scripts in Selection" ></menu_item_call>
<menu_item_call label="Definir Ejecución de Scripts en la Selección" name="Set Scripts to Running in Selection" ></menu_item_call>
<menu_item_call label="Definir la no ejecución de Scripts en la Selección" name="Set Scripts to Not Running in Selection" ></menu_item_call>
<menu_item_call label="Borrar Scripts en la Selección" name="Remove Scripts in Selection" ></menu_item_call>
</menu>
<menu label="Ayuda" left="227" name="Help" >
<menu_item_call label="Ayuda de Second Life" name="Second Life Help" ></menu_item_call>
<menu_item_call label="Tutorial" name="Tutorial" ></menu_item_call>
<menu_item_separator label="-----------" name="separator" />
<menu_item_call label="Blog Oficial de Linden Lab..." name="Official Linden Blog..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator2" />
<menu_item_call label="Portal de Scripting..." name="Scripting Portal..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator3" />
<menu_item_call label="Denunciar Abuso..." name="Report Abuse..." ></menu_item_call>
<menu_item_call label="Choques, Empujones y Golpes..." name="Bumps, Pushes &amp;amp; Hits..." ></menu_item_call>
<menu_item_call label="Medidor de Lag" name="Lag Meter"></menu_item_call>
<menu_item_separator label="-----------" name="separator7" />
<menu label="Informe de Fallos" name="Bug Reporting" >
<menu_item_call label="Seguimiento de Problemas Público..." name="Public Issue Tracker..." ></menu_item_call>
<menu_item_call label="Ayuda del Seguimiento de Problemas Público..." name="Publc Issue Tracker Help..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator7" />
<menu_item_call label="Informe de Fallos 101..." name="Bug Reporing 101..." ></menu_item_call>
<menu_item_call label="Problemas de Seguridad..." name="Security Issues..." ></menu_item_call>
<menu_item_call label="Wiki de QA..." name="QA Wiki..." ></menu_item_call>
<menu_item_separator label="-----------" name="separator9" />
<menu_item_call label="Informar un Fallo..." name="Report Bug..." ></menu_item_call>
</menu>
<menu_item_call label="Acerca de Singularity..." name="About Second Life..." ></menu_item_call>
</menu>
</menu_bar>

View File

@@ -12,83 +12,39 @@
longdescription="Cambiar nombres de roles, títulos, descripciones y si los integrantes de lo roles son visibles. Esto se hace al pié de la pestaña Miembros y Roles &gt; subpestaña Roles luego de seleccionar un rol." name="role properties" value="6" />
<action description="Designar miembros para el rol de Asignador" longdescription="Designar miembros para un rol en la sección Roles asignados de la pestaña Miembros y Roles &gt; subpestaña Miembros. Un miembro con este poder sólo puede asignar a otros el rol que él posee." name="role assign member limited" value="7" />
<action description="Designar miembros para cualquier Rol" longdescription="Designar miembros para cualquier rol en la sección Roles asignados de la pestaña Miembros y Roles &gt; subpestaña Miembros. *AVISO* Todos los miembros con esta capacidad podrán asignarse a sí mismos (y a otros miembros) roles con mayores poderes de los que actualmente tienen. Potencialmente, podrían elevarse hasta poderes cercanos a los del propietario. Asegúrate de lo que estás haciendo antes de otorgar esta capacidad." name="role assign member" value="8" />
<action description="Quitar miembros de los roles"
longdescription="Quitar miembros de roles en la sección Capacidades asignadas de Miembros y Roles &gt; subpestaña Roles. No se pueden quitar a los Propietarios."
name="role remove member" value="9" />
<action description="Assign and Remove Abilities in Roles"
longdescription="Assign and Remove Abilities in Roles in the Allowed Abilities section of the Members &amp; Roles tab &gt; Roles sub-tab. *WARNING* Any Member in a Role with this Ability can assign themselves--and any other non-Owner Member--all Abilities, potentially elevating themselves to near-Owner power. Be sure you know what you&apos;re doing before assigning this Ability."
name="role change actions" value="10" />
</action_set>
<action_set
description="These Abilities include powers to modify this group&apos;s identity, such as changing public visibility, charter, and insignia."
name="Group Identity">
<action
description="Change Charter, Insignia, and &apos;Show in search&apos;"
longdescription="Change Charter, Insignia, and &apos;Show in search&apos;. This is done in the General tab."
name="group change identity" value="11" />
</action_set>
<action_set
description="These Abilities include powers to deed, modify, and sell land in this group&apos;s land holdings. To get to the About Land window, right-click the ground and select &apos;About Land...&apos;, or click the parcel info in the menu bar."
name="Parcel Management">
<action description="Deed land and buy land for group"
longdescription="Deed land and buy land for group. This is done in About Land &gt; General tab."
name="land deed" value="12" />
<action description="Abandon land to Governor Linden"
longdescription="Abandon land to Governor Linden. *WARNING* Any Member in a Role with this Ability can abandon group-owned land in About Land &gt; General tab, reverting it to Linden ownership without a sale! Be sure you know what you&apos;re doing before assigning this Ability."
name="land release" value="13" />
<action description="Set land for sale info"
longdescription="Set land for sale info. *WARNING* Any Member in a Role with this Ability can sell group-owned land in About Land &gt; General tab as they wish! Be sure you know what you&apos;re doing before assigning this Ability."
name="land set sale info" value="14" />
<action description="Subdivide and join parcels"
longdescription="Subdivide and join parcels. This is done by right-clicking the ground, &apos;Edit Terrain&apos;, and dragging your mouse on the land to make a selection. To subdivide, select what you want to split and click &apos;Subdivide...&apos;. To join, select two or more contiguous parcels and click &apos;Join...&apos;. "
name="land divide join" value="15" />
</action_set>
<action_set
description="These Abilities include powers to change the parcel name and publish settings, Find directory visibility, and landing point &amp; TP routing options."
name="Parcel Identity">
<action description="Toggle &apos;Show in Find Places&apos; and set category"
longdescription="Toggle &apos;Show in Find Places&apos; and setting a parcel&apos;s category in About Land &gt; Options tab."
name="land find places" value="17" />
<action
description="Change parcel name, description, and &apos;Show in search&apos; settings"
longdescription="Change parcel name, description, and &apos;Show in search&apos; settings. This is done in About Land &gt; Options tab."
name="land change identity" value="18" />
<action description="Set landing point and set teleport routing"
longdescription="On a group-owned parcel, Members in a Role with this Ability can set a landing point to specify where incoming teleports arrive, and also set teleport routing for further control. This is done in About Land &gt; Options tab."
name="land set landing point" value="19" />
</action_set>
<action_set
description="These Abilities include powers which affect parcel options, such as &apos;Create Objects&apos;, &apos;Edit Terrain&apos;, and music &amp; media settings."
name="Parcel Settings">
<action description="Change music &amp; media settings"
longdescription="Change streaming music and movie settings in About Land &gt; Media tab."
name="land change media" value="20" />
<action description="Toggle &apos;Edit Terrain&apos;"
longdescription="Toggle &apos;Edit Terrain&apos;. *WARNING* About Land &gt; Options tab &gt; Edit Terrain allows anyone to terraform your land&apos;s shape, and place and move Linden plants. Be sure you know what you&apos;re doing before assigning this Ability. Editing terrain is toggled in About Land &gt; Options tab."
name="land edit" value="21" />
<action description="Toggle various About Land &gt; Options settings"
longdescription="Toggle &apos;Safe (no damage)&apos;, &apos;Fly&apos;, and allow other Residents to: &apos;Create Objects&apos;, &apos;Edit Terrain&apos;, &apos;Create Landmarks&apos;, and &apos;Run Scripts&apos; on group-owned land in About Land &gt; Options tab."
name="land options" value="22" />
</action_set>
<action_set
description="These Abilities include powers which allow Members to bypass restrictions on group-owned parcels."
name="Parcel Powers">
<action description="Always allow &apos;Edit Terrain&apos;"
longdescription="Members in a Role with this Ability can edit terrain on a group-owned parcel, even if it&apos;s turned off in About Land &gt; Options tab."
name="land allow edit land" value="23" />
<action description="Always allow &apos;Fly&apos;"
longdescription="Members in a Role with this Ability can fly on a group-owned parcel, even if it&apos;s turned off in About Land &gt; Options tab."
name="land allow fly" value="24" />
<action description="Always allow &apos;Create Objects&apos;"
longdescription="Members in a Role with this Ability can create objects on a group-owned parcel, even if it&apos;s turned off in About Land &gt; Options tab."
name="land allow create" value="25" />
<action description="Always allow &apos;Create Landmark&apos;"
longdescription="Members in a Role with this Ability can landmark a group-owned parcel, even if it&apos;s turned off in About Land &gt; Options tab."
name="land allow landmark" value="26" />
<action description="Allow &apos;Set Home to Here&apos; on group land"
longdescription="Members in a Role with this Ability can use World menu &gt; Set Home to Here on a parcel deeded to this group."
name="land allow set home" value="28" />
<action description="Allow &apos;Event Hosting&apos; on group land"
<action description="Quitar miembros de los roles" longdescription="Quitar miembros de roles en la sección Capacidades asignadas de Miembros y Roles &gt; subpestaña Roles. No se pueden quitar a los Propietarios." name="role remove member" value="9" />
<action description="Añadir o quitar capacidades a los roles" longdescription="Añadir o quitar capacidades a los roles en la sección Capacidades asignadas de Miembros y Roles &gt; subpestaña Roles. *AVISO* Todos los miembros con esta capacidad podrán asignarse a sí mismos -y a otros miembros- roles con mayores poderes de los que actualmente tienen. Potencialmente, podrían elevarse hasta poderes cercanos a los del propietario. Asegúrate de lo que estás haciendo antes de otorgar esta capacidad." name="role change actions" value="10" />
</action_set>
<action_set description="Estas capacidades incluyen poderes para modificar la identidad del grupo, como su visibilidad pública, su carta o su emblema." name="Group Identity">
<action
description="Cambiar la carta, emblema y &apos;Mostrar en la búsqueda&apos;" longdescription="Cambiar la carta, emblema y &apos;Mostrar en la búsqueda&apos;, y qué miembros serán visibles en la información del grupo de la pestaña General." name="group change identity" value="11" />
</action_set>
<action_set description="Estas capacidades incluyen poderes para transferir, modificar y vender terrenos del grupo. Ve al menú Mundo &gt; Acerca del terreno, o pulsa con el botón derecho en el terreno y selecciona &apos;Acerca del terreno...&apos;, o pulsa en la información de la parcela en la barra superior del menú." name="Parcel Management">
<action description="Transferir y comprar terreno para el grupo" longdescription="Transferir y comprar terreno para el grupo. Se hace en Acerca del terreno &gt; pestaña General." name="land deed" value="12" />
<action description="Abandonar terreno a favor de Governor Linden"
longdescription="Abandonar al terreno a favor de Governor Linden. *AVISO* Todos los miembros del Rol con esta capacidad pueden abandonar terreno perteneciente al grupo en Acerca del terreno &gt; pestaña General, devolviendo la posesión a Linden ¡gratuitamente! Asegúrate de lo que estás haciendo antes de otorgar esta capacidad." name="land release" value="13" />
<action description="Vender terreno"
longdescription="Vender terreno. *AVISO* Todos los miembros del ROl con esta capacidad pueden vender terreno perteneciente al grupo -¡en la forma en que quieran!- en Acerca del terreno &gt; pestaña General. Asegúrate de lo que estás haciendo antes de otorgar esta capacidad." name="land set sale info" value="14" />
<action description="Dividir y unir parcelas" longdescription="Dividir y unir parcelas. Se hace pulsando con el botón derecho en el terreno, &apos;Modificar el terreno&apos;, y dibujando en el terreno con el ratón lo que se quiere seleccionar. Para dividir, selecciona la parte que quieres separar y pulsa &apos;Subdividir...&apos;. Para unir, selecciona dos o más parcelas contiguas y pulsa &apos;Unir...&apos;." name="land divide join" value="15" />
</action_set>
<action_set description="Estas capacidades incluyen poder cambiar el nombre de la parcela y su configuración pública, también si se muestra en la Búsqueda y las opciones del punto de llegada y el de teleporte." name="Parcel Identity">
<action description="Activar/Desactivar &apos;Mostrar en Búsqueda&apos; y el definir la Categoría" longdescription="Activar/Desactivar el &apos;Mostrar en Búsqueda&apos; y en que Categoría se mostrará en Acerca del terreno &gt; pestaña Opciones." name="land find places" value="17" />
<action description="Cambiar el nombre de la parcela, la descripción, y la configuración de &apos;Mostrar en Búsqueda&apos;" longdescription="Cambiar el nombre y descripción de la parcela, y la configuración de &apos;Mostrar en Búsqueda&apos;. Se hace en Acerca del terreno &gt; pestaña Opciones." name="land change identity" value="18" />
<action description="Definir los puntos de llegada y teleporte" longdescription="En una parcela perteneciente al grupo, los miembros con un rol que tenga esta capacidad pueden definir el Punto de Llegada o el de Teleporte para un mejor control. Se hace en Acerca del terreno &gt; pestaña Opciones." name="land set landing point" value="19" />
</action_set>
<action_set description="Estas capacidades incluyen poderes que afectan a las opciones de la parcela, como &apos;Crear objetos&apos;, &apos;Editar el terreno&apos; y las configuraciones de la música y los media." name="Parcel Settings">
<action description="Cambiar música y configuraciones de los media"
longdescription="Cambiar la música en streaming y las configuraciones de vídeo en Acerca del terreno &gt; pestaña Media." name="land change media" value="20" />
<action description="Activar/desactivar &apos;Editar el terreno&apos;" longdescription="Activar/desactivar &apos;Editar el terreno&apos;. *AVISO* Acerca del terreno &gt; pestaña Opciones &gt; Editar el terreno, permite a cualquiera alterar la forma de tu terreno y sustituir y mover plantas Linden. Asegúrate de lo que estás haciendo antes de otorgar esta capacidad. La edición del terreno se activada/desactiva en Acerca del terreno &gt; pestaña Opciones." name="land edit" value="21" />
<action description="Activar/desactivar varios ítems de Acerca del terreno &gt; Opciones" longdescription="Activar/desactivar en un terreno del grupo los ítems de Acerca del terreno &gt; pestaña Opciones: &apos;Seguro (sin daño)&apos;, &apos;Volar&apos;, y permitir a otros residentes: &apos;Crear objetos&apos;, &apos;Editar el terreno&apos;, &apos;Crear hitos&apos;, y &apos;Ejecutar scripts&apos;." name="land options" value="22" />
</action_set>
<action_set description="Estas capacidades incluyen poderes que permiten a los miembros rebasar las restricciones de parcelas pertenecientes al grupo." name="Parcel Powers">
<action description="Permitir siempre &apos;Editar el terreno&apos;" longdescription="Los Miembros del rol con esta capacidad pueden editar el terreno de una parcela perteneciente al grupo aunque eso esté desactivado en Acerca del terreno &gt; pestaña Opciones." name="land allow edit land" value="23" />
<action description="Permitir siempre &apos;Volar&apos;" longdescription="Los Miembros del rol con esta capacidad pueden volar sobre una parcela perteneciente al grupo aunque eso esté desactivado en Acerca del terreno &gt; pestaña Opciones." name="land allow fly" value="24" />
<action description="Permitir siempre &apos;Crear objetos&apos;" longdescription="Los Miembros del rol con esta capacidad pueden crear objetos en una parcela perteneciente al grupo aunque eso esté desactivado en Acerca del terreno &gt; pestaña Opciones." name="land allow create" value="25" />
<action description="Permitir siempre &apos;Crear hitos&apos;" longdescription="Los Miembros del rol con esta capacidad pueden crear un hito en una parcela perteneciente al grupo aunque eso esté desactivado en Acerca del terreno &gt; pestaña Opciones." name="land allow landmark" value="26" />
<action description="Permitir &apos;Fijar Base&apos; en el terreno del grupo" longdescription="Los Miembros del rol con esta capacidad pueden usar el menú Mundo &gt; Fijar mi Base aquí en una parcela transferida al grupo." name="land allow set home" value="28" />
<action description="Allow &apos;Event Hosting&apos; on group land"
longdescription="Members in a Role with this Ability can select group owned parcels as venus when hosting an event."
name="land allow host event" value="41" />
</action_set>