mirror of https://github.com/zulip/zulip.git
webapp: Rename "Full name" field to "Name".
This commit renames "Full name" field in profile settings, "Edit user" form and in the email modal for demo orgs to "Name". Fixes part of #29226.
This commit is contained in:
parent
f48606ac85
commit
74ab3d2cbe
|
@ -16,7 +16,7 @@ Organization administrators can always change any user's name.
|
|||
|
||||
{!manage-this-user.md!}
|
||||
|
||||
1. Under **Full name**, enter a new name.
|
||||
1. Under **Name**, enter a new name.
|
||||
|
||||
{!save-changes.md!}
|
||||
|
||||
|
|
|
@ -13,13 +13,13 @@ is useful when users' names are managed via LDAP or another data source.
|
|||
|
||||
{settings_tab|profile}
|
||||
|
||||
1. Edit the **full name** field.
|
||||
1. Edit the **Name** field.
|
||||
|
||||
{end_tabs}
|
||||
|
||||
!!! warn ""
|
||||
|
||||
**Note:** If you are unable to edit the full name field, check
|
||||
**Note:** If you are unable to edit the name field, check
|
||||
that your organization allows name changes. Follow the steps at
|
||||
[prevent users from changing their names](/help/restrict-name-and-email-changes)
|
||||
to view your organization's settings.
|
||||
|
|
|
@ -51,7 +51,7 @@ and set a password for their account.
|
|||
1. Enter your email address.
|
||||
|
||||
1. *(optional)* If the name on the account is still a placeholder,
|
||||
edit the **Full name** field.
|
||||
edit the **Name** field.
|
||||
|
||||
1. Click **Add**.
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<input id="demo_organization_add_email" type="text" name="email" class="modal_text_input" value="{{delivery_email}}" autocomplete="off" spellcheck="false" autofocus="autofocus"/>
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label for="demo_organization_update_full_name">{{t "Full name" }}</label>
|
||||
<label for="demo_organization_update_full_name">{{t "Name" }}</label>
|
||||
<input id="demo_organization_update_full_name" name="full_name" type="text" class="modal_text_input" value="{{full_name}}" maxlength="60" />
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<div class="alert" id="edit-user-form-error"></div>
|
||||
<input type="hidden" name="is_full_name" value="true" />
|
||||
<div class="input-group name_change_container">
|
||||
<label for="edit_user_full_name">{{t "Full name" }}</label>
|
||||
<label for="edit_user_full_name">{{t "Name" }}</label>
|
||||
<input type="text" autocomplete="off" name="full_name" id="edit_user_full_name" class="modal_text_input" value="{{ full_name }}" />
|
||||
</div>
|
||||
{{#if email}}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="full-name-change-container">
|
||||
<div class="input-group inline-block grid user-name-parent">
|
||||
<div class="user-name-section inline-block">
|
||||
<label for="full_name" class="title inline-block">{{t "Full name" }}</label>
|
||||
<label for="full_name" class="title inline-block">{{t "Name" }}</label>
|
||||
<div class="alert-notification full-name-status"></div>
|
||||
<div id="full_name_input_container" {{#unless user_can_change_name}}class="disabled_setting_tooltip"{{/unless}}>
|
||||
<input id="full_name" name="full_name" class="settings_text_input" type="text" value="{{ current_user.full_name }}" {{#unless user_can_change_name}}disabled="disabled"{{/unless}} maxlength="60" />
|
||||
|
|
Loading…
Reference in New Issue