diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-01-28 21:54:52 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-01-28 22:15:41 +0200 |
commit | 1d0f25714e17d1f65ee7ef4c9394fed9210e3cd4 (patch) | |
tree | 2fc1de28fd71a928ac1851608c1e2b4a1946eed4 /indra/newview/skins/default/xui/en/panel_profile_notes.xml | |
parent | 2d113743f2943a1ab614a41d29cef7e13bc4e878 (diff) |
SL-14486 Avoid accidental truncation of avatar notes field
Server sided limitation, web page allows more than server sends to viewer. This is a workaround untill server sided restriction gets lifted.
Diffstat (limited to 'indra/newview/skins/default/xui/en/panel_profile_notes.xml')
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_profile_notes.xml | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/indra/newview/skins/default/xui/en/panel_profile_notes.xml b/indra/newview/skins/default/xui/en/panel_profile_notes.xml index 0bafaac361..179fa0136c 100644 --- a/indra/newview/skins/default/xui/en/panel_profile_notes.xml +++ b/indra/newview/skins/default/xui/en/panel_profile_notes.xml @@ -9,6 +9,14 @@ follows="all" layout="topleft" > + <!--these strings will be combined into one with different styles--> + <string name="header_symbol_limit"> +Warning: Your notes contain more than 1000 characters. + </string> + <string name="body_symbol_limit"> +Only first 1000 characters are shown here. If you edit your notes and click OK, the extra characters will be lost. To preserve the extra characters, you must edit it [[PROFILE_URL] on the web] + </string> + <loading_indicator name="progress_indicator" top="3" @@ -36,16 +44,27 @@ top_pad="4" left="6" right="-6" - height="335" + height="311" follows="all" layout="topleft" max_length="1000" word_wrap="true" /> <text + layout="topleft" + follows="left|bottom|right" + top_pad="2" + left="6" + right="-6" + height ="28" + name="character_limit_warning" + word_wrap="true"> + Placeholder: Your notes contain more than 1000 characters. Only first 1000 characters are shown here. If you edit your notes and click OK, the extra characters will be lost. To preserve the extra characters, you must edit it [https://my.secondlife.com/settings/profile on the web] + </text> + <text name="status_message2" value="Allow this avatar to:" - top_pad="8" + top_pad="11" left="6" right="-6" height="16" @@ -57,6 +76,7 @@ name="status_check" label="See when I am online" enabled="false" + top_pad="0" left="10" height="16" width="293" |