settings: Explain that users can spell their name how they like.

Fixes #2944.
This commit is contained in:
Amala Deshmukh 2016-12-30 23:22:14 +05:30 committed by Tim Abbott
parent 0398ec7f81
commit e1624fae0b
1 changed files with 6 additions and 2 deletions

View File

@ -40,8 +40,12 @@
<div class="input-group" id="name_change_container">
<label for="full_name" class="inline-block title">{{t "Full name" }}</label>
<input type="text" name="full_name" id="full_name" class="w-200 inline-block" value="{{ page_params.fullname }}" {{#if page_params.realm_name_changes_disabled}}disabled="disabled" {{/if}}/>
<i class="icon-vector-question-sign change_name_tooltip" {{#unless page_params.realm_name_changes_disabled}}style="display:none" {{/unless}}data-toggle="tooltip"
title="{{t 'Changing your name has been disabled by your Zulip organization administrators. Contact an administrator for help.' }}"></i>
<i class="icon-vector-question-sign change_name_tooltip" data-toggle="tooltip"
{{#unless page_params.realm_name_changes_disabled}}style="display:none" {{/unless}}
title="{{t 'Changing your name has been disabled by your Zulip organization administrators. Contact an administrator for help.' }}"/>
<i class="icon-vector-question-sign change_name_tooltip" data-toggle="tooltip"
{{#if page_params.realm_name_changes_disabled}}style="display:none" {{/if}}
title="{{t 'Zulip has full unicode support, so you can spell your name exactly how you want it to appear.' }}"/>
<div class="warning"></div>
</div>