Display names from Phoenix. Thanks Wolfspirit!
That's quite a piece of work. I have NO idea how Jess can downplay the effort that went into this. And it's still not complete, local chat is not affected, perhaps group chat too.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater can_close="true" can_drag_on_left="false" can_minimize="false"
|
||||
can_resize="false" enabled="true" height="220"
|
||||
mouse_opaque="true" name="Display Name" title="CHANGE DISPLAY NAME" width="400">
|
||||
|
||||
<text length="1" bottom_delta="-50" font="SansSerif" height="25" left="20" text_color="AlertTextColor" name="lockout_text" visible="true" width="360"
|
||||
wrap="true">
|
||||
Next possible change: [TIME].
|
||||
</text>
|
||||
|
||||
<text left="20" bottom_delta="-20" width="360" height="18" font="SansSerif" name="set_name_label">
|
||||
New Display Name:
|
||||
</text>
|
||||
<line_editor max_length="31" name="display_name_editor" width="300" height="20" left="50" bottom_delta="-20" />
|
||||
<text left="20" bottom_delta="-25" width="360" height="18" font="SansSerif" name="name_confirm_label">
|
||||
Type your new name again to confirm:
|
||||
</text>
|
||||
<line_editor max_length="31" width="300" name="display_name_confirm" height="20" bottom_delta="-20" left="50" />
|
||||
<button height="20" bottom_delta="-28" label="Save" font="SansSerif" left="20" name="save_btn" tool_tip="Save your new Display Name" width="113" />
|
||||
<button height="20" bottom_delta="0" label="Reset" font="SansSerif" left_delta="123" name="reset_btn" tool_tip="Make Display Name the same as Username" width="113" />
|
||||
<button height="20" bottom_delta="0" label="Cancel" font="SansSerif" left_delta="123" name="cancel_btn" tool_tip="Cancel and close this Dialog" width="113" />
|
||||
<text left="20" bottom_delta="-25" width="360" height="18" font="SansSerif" name="name_confirm_label">
|
||||
The name you give your avatar is called yours Display Name.
|
||||
</text>
|
||||
<text left="20" bottom_delta="-18" width="360" height="18" font="SansSerif" name="name_confirm_label">
|
||||
You can change it once a week.
|
||||
</text>
|
||||
</floater>
|
||||
|
||||
@@ -219,6 +219,10 @@
|
||||
<on_click function="ShowFloater" userdata="appearance" />
|
||||
<on_enable function="Edit.EnableCustomizeAvatar" />
|
||||
</menu_item_call>
|
||||
<menu_item_call bottom="-362" enabled="true" height="19" label="Display Name..." left="0"
|
||||
mouse_opaque="true" name="Display Name..." width="153">
|
||||
<on_click function="ShowFloater" userdata="displayname" />
|
||||
</menu_item_call>
|
||||
<menu_item_separator bottom="-370" enabled="true" height="8" label="-----------" left="0"
|
||||
mouse_opaque="true" name="separator7" width="153" />
|
||||
<menu_item_check bottom="-389" enabled="true" height="19" label="Friends..." left="0"
|
||||
|
||||
@@ -6688,5 +6688,88 @@ Yes
|
||||
<global name="PermNo">
|
||||
No
|
||||
</global>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="SetDisplayNameSuccess"
|
||||
type="alert">
|
||||
Hi [DISPLAY_NAME]!
|
||||
|
||||
Just like in real life, it takes a while for everyone to learn about a new name. Please allow several days for [http://wiki.secondlife.com/wiki/Setting_your_display_name your name to update] in objects, scripts, search, etc.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="SetDisplayNameBlocked"
|
||||
type="alert">
|
||||
Sorry, you cannot change your display name. If you feel this is in error, please contact support.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="SetDisplayNameFailedLength"
|
||||
type="alertmodal">
|
||||
Sorry, that name is too long. Display names can have a maximum of [LENGTH] characters.
|
||||
|
||||
Please try a shorter name.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="SetDisplayNameFailedGeneric"
|
||||
type="alertmodal">
|
||||
Sorry, we could not set your display name. Please try again later.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="SetDisplayNameMismatch"
|
||||
type="alertmodal">
|
||||
The display names you entered do not match. Please re-enter.
|
||||
</notification>
|
||||
|
||||
<!-- *NOTE: This should never happen -->
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="AgentDisplayNameUpdateThresholdExceeded"
|
||||
type="alertmodal">
|
||||
Sorry, you have to wait longer before you can change your display name.
|
||||
|
||||
See http://wiki.secondlife.com/wiki/Setting_your_display_name
|
||||
|
||||
Please try again later.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="AgentDisplayNameSetBlocked"
|
||||
type="alertmodal">
|
||||
Sorry, we could not set your requested name because it contains a banned word.
|
||||
|
||||
Please try a different name.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="AgentDisplayNameSetInvalidUnicode"
|
||||
type="alertmodal">
|
||||
The display name you wish to set contains invalid characters.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="AgentDisplayNameSetOnlyPunctuation"
|
||||
type="alertmodal">
|
||||
Your display name must contain letters other than punctuation.
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="notifytip.tga"
|
||||
name="DisplayNameUpdate"
|
||||
type="notifytip">
|
||||
[OLD_NAME] ([SLID]) is now known as [NEW_NAME].
|
||||
</notification>
|
||||
|
||||
|
||||
</notifications>
|
||||
|
||||
|
||||
@@ -29,6 +29,18 @@
|
||||
Always
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<combo_box bottom_delta="0" follows="left|top" height="18" left="330"
|
||||
mouse_opaque="true" name="namesystem_combobox" width="146">
|
||||
<combo_item name="Old Names" value="Old Names">
|
||||
Old Names
|
||||
</combo_item>
|
||||
<combo_item name="Display Names (with Username)" value="Display Names (with Username)">
|
||||
Display Names (with Username)
|
||||
</combo_item>
|
||||
<combo_item name="Display Names only" value="Display Names only">
|
||||
Display Names only
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<check_box bottom_delta="-25" follows="left|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Small Avatar Names" left="151" name="small_avatar_names_checkbox"
|
||||
|
||||
Reference in New Issue
Block a user