mirror of https://github.com/zulip/zulip.git
settings: Update wording in organization-permissions-admin.handlebars.
This commit is contained in:
parent
f91098143b
commit
ad47d3b651
|
@ -67,7 +67,7 @@ casper.then(function () {
|
||||||
'Only administrators may now create new streams!');
|
'Only administrators may now create new streams!');
|
||||||
casper.test.assertEval(function () {
|
casper.test.assertEval(function () {
|
||||||
return document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked;
|
return document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked;
|
||||||
}, 'Only admins may create streams Setting activated');
|
}, 'Prevent users from creating streams Setting activated');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ casper.waitUntilVisible('#id_realm_create_stream_by_admins_only + span', functio
|
||||||
// Test Setting was saved
|
// Test Setting was saved
|
||||||
casper.test.assertEval(function () {
|
casper.test.assertEval(function () {
|
||||||
return document.querySelector('#id_realm_create_stream_by_admins_only').checked;
|
return document.querySelector('#id_realm_create_stream_by_admins_only').checked;
|
||||||
}, 'Only admins may create streams Setting saved');
|
}, 'Prevent users from creating streams Setting saved');
|
||||||
|
|
||||||
// Deactivate setting
|
// Deactivate setting
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ casper.then(function () {
|
||||||
casper.test.assertSelectorHasText('#admin-realm-create-stream-by-admins-only-status', 'Any user may now create new streams!');
|
casper.test.assertSelectorHasText('#admin-realm-create-stream-by-admins-only-status', 'Any user may now create new streams!');
|
||||||
casper.test.assertEval(function () {
|
casper.test.assertEval(function () {
|
||||||
return !(document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked);
|
return !(document.querySelector('input[type="checkbox"][id="id_realm_create_stream_by_admins_only"]').checked);
|
||||||
}, 'Only admins may create streams Setting deactivated');
|
}, 'Prevent users from creating streams Setting deactivated');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ exports.populate_realm_domains = function (realm_domains) {
|
||||||
domains = i18n.t("None");
|
domains = i18n.t("None");
|
||||||
$("#id_realm_restricted_to_domain").prop("disabled", true);
|
$("#id_realm_restricted_to_domain").prop("disabled", true);
|
||||||
}
|
}
|
||||||
$("#realm_restricted_to_domains_label").text(i18n.t("New users restricted to the following domains: __domains__", {domains: domains}));
|
$("#realm_restricted_to_domains_label").text(i18n.t("Restrict new users to the following email domains: __domains__", {domains: domains}));
|
||||||
|
|
||||||
var realm_domains_table_body = $("#realm_domains_table tbody").expectOne();
|
var realm_domains_table_body = $("#realm_domains_table tbody").expectOne();
|
||||||
realm_domains_table_body.find("tr").remove();
|
realm_domains_table_body.find("tr").remove();
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div id="organization-permissions" data-name="organization-permissions" class="settings-section">
|
<div id="organization-permissions" data-name="organization-permissions" class="settings-section">
|
||||||
<form class="form-horizontal admin-realm-form org-permissions-form">
|
<form class="form-horizontal admin-realm-form org-permissions-form">
|
||||||
<h3 class="light">{{t "Joining the Organization" }}</h3>
|
<h3 class="light">{{t "Joining the organization" }}</h3>
|
||||||
|
|
||||||
<div class="alert" id="admin-realm-restricted-to-domain-status"></div>
|
<div class="alert" id="admin-realm-restricted-to-domain-status"></div>
|
||||||
<div class="alert" id="admin-realm-invite-required-status"></div>
|
<div class="alert" id="admin-realm-invite-required-status"></div>
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
</label>
|
</label>
|
||||||
<label for="id_realm_invite_required" id="realm_invite_required_label" class="inline-block"
|
<label for="id_realm_invite_required" id="realm_invite_required_label" class="inline-block"
|
||||||
title="{{t 'If checked, users must be invited in order to join your organization.' }}">
|
title="{{t 'If checked, users must be invited in order to join your organization.' }}">
|
||||||
{{t "E-mail invitation required" }}
|
{{t "Users cannot join without an invitation" }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -51,12 +51,12 @@
|
||||||
</label>
|
</label>
|
||||||
<label for="id_realm_invite_by_admins_only" id="id_realm_invite_by_admins_only_label" class="inline-block"
|
<label for="id_realm_invite_by_admins_only" id="id_realm_invite_by_admins_only_label" class="inline-block"
|
||||||
title="{{t 'If checked, only administrators may invite new users.' }}">
|
title="{{t 'If checked, only administrators may invite new users.' }}">
|
||||||
{{t "Only admins may invite" }}
|
{{t "Only admins can invite new users" }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3 class="light">{{t "User Identity" }}</h3>
|
<h3 class="light">{{t "User identity" }}</h3>
|
||||||
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3 class="light">{{t "Streams & Custom Emoji" }}</h3>
|
<h3 class="light">{{t "Streams & custom emoji" }}</h3>
|
||||||
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
</label>
|
</label>
|
||||||
<label for="id_realm_create_stream_by_admins_only" id="id_realm_create_stream_by_admins_only_label" class="inline-block"
|
<label for="id_realm_create_stream_by_admins_only" id="id_realm_create_stream_by_admins_only_label" class="inline-block"
|
||||||
title="{{t 'If checked, only administrators may create new streams.' }}">
|
title="{{t 'If checked, only administrators may create new streams.' }}">
|
||||||
{{t "Only admins may create streams" }}
|
{{t "Prevent users from creating streams" }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -105,12 +105,12 @@
|
||||||
</label>
|
</label>
|
||||||
<label for="id_realm_add_emoji_by_admins_only" id="id_realm_add_emoji_by_admins_only_label" class="inline-block"
|
<label for="id_realm_add_emoji_by_admins_only" id="id_realm_add_emoji_by_admins_only_label" class="inline-block"
|
||||||
title="{{t 'If checked, only administrators may add new emoji.'}}">
|
title="{{t 'If checked, only administrators may add new emoji.'}}">
|
||||||
{{t "Only admins may add emoji" }}
|
{{t "Prevent users from adding custom emoji" }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3 class="light">{{t "Message Editing" }}</h3>
|
<h3 class="light">{{t "Message editing" }}</h3>
|
||||||
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
</label>
|
</label>
|
||||||
<label for="id_realm_allow_message_editing" class="inline-block"
|
<label for="id_realm_allow_message_editing" class="inline-block"
|
||||||
title="{{t 'If checked, users can edit the content and topics of their old messages.' }}">
|
title="{{t 'If checked, users can edit the content and topics of their old messages.' }}">
|
||||||
{{t "Allow users to edit old messages" }}
|
{{t "Users can edit their messages" }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -145,12 +145,12 @@
|
||||||
</label>
|
</label>
|
||||||
<label for="id_realm_allow_edit_history" id="id_realm_allow_edit_history_label" class="inline-block"
|
<label for="id_realm_allow_edit_history" id="id_realm_allow_edit_history_label" class="inline-block"
|
||||||
title="{{t 'If checked, users will be able view message edit history.'}}">
|
title="{{t 'If checked, users will be able view message edit history.'}}">
|
||||||
{{t "Users can view message edit history" }}
|
{{t "Enable message edit history" }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3 class="light">{{t "Message Feed" }}</h3>
|
<h3 class="light">{{t "Message feed" }}</h3>
|
||||||
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
<div class="side-padded-container m-10 inline-block organization-permissions-parent">
|
||||||
{{#if false}}
|
{{#if false}}
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
|
|
|
@ -14,10 +14,10 @@ members to those with email invitations.
|
||||||
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
4. Locate the **E-mail invitation required** checkbox.
|
4. Locate the **Users cannot join without an invitation** checkbox.
|
||||||
|
|
||||||
To limit new members of your organization to those who have been
|
To limit new members of your organization to those who have been
|
||||||
invited to do so, click the **E-mail invitation required** checkbox.
|
invited to do so, click the **Users cannot join without an invitation** checkbox.
|
||||||
|
|
||||||
New users will now require an email invitation sent by a user in your Zulip
|
New users will now require an email invitation sent by a user in your Zulip
|
||||||
organization to join your organization.
|
organization to join your organization.
|
||||||
|
|
|
@ -17,6 +17,6 @@ organization using the following steps:
|
||||||
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
2. Disable the the **Users can view edit message history** checkbox.
|
2. Disable the the **Enable message edit history** checkbox.
|
||||||
|
|
||||||
{!save-changes.md!} organization settings.
|
{!save-changes.md!} organization settings.
|
||||||
|
|
|
@ -41,4 +41,4 @@ If the users are not from the same organization, you should change your organiza
|
||||||
{!go-to-the.md!} [Organization settings](/#administration/organization-settings)
|
{!go-to-the.md!} [Organization settings](/#administration/organization-settings)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
2. Disable the **New users restricted to the following domains** option.
|
2. Disable the **Restrict new users to the following email domains** option.
|
||||||
|
|
|
@ -9,6 +9,6 @@ administrators to add new emoji.
|
||||||
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
2. Select the **Only admins may add emoji** checkbox.
|
2. Select the **Prevent users from adding custom emoji** checkbox.
|
||||||
|
|
||||||
{!save-changes.md!} organization settings.
|
{!save-changes.md!} organization settings.
|
||||||
|
|
|
@ -8,6 +8,6 @@ only allows administrators to create new streams in the organization.
|
||||||
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
2. Select the **Only admins may create streams** checkbox.
|
2. Select the **Prevent users from creating streams** checkbox.
|
||||||
|
|
||||||
{!save-changes.md!} organization settings.
|
{!save-changes.md!} organization settings.
|
||||||
|
|
|
@ -9,7 +9,7 @@ invite new users.
|
||||||
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
2. Select the **E-mail invitation required** and **Only admins may invite**
|
2. Select the **Users cannot join without an invitation** and **Only admins can invite new users**
|
||||||
checkboxes.
|
checkboxes.
|
||||||
|
|
||||||
If this option is enabled, only administrators in your organization can send
|
If this option is enabled, only administrators in your organization can send
|
||||||
|
|
|
@ -9,13 +9,13 @@ disable message editing for your organization users.
|
||||||
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
{!go-to-the.md!} [Organization permissions](/#organization/organization-permissions)
|
||||||
{!admin.md!}
|
{!admin.md!}
|
||||||
|
|
||||||
4. Locate the **Users can edit old messages**
|
4. Locate the **Users can edit their messages**
|
||||||
checkbox and **Message edit limit in minutes (0 for no limit)** input field
|
checkbox and **Message edit limit in minutes (0 for no limit)** input field
|
||||||
underneath it.
|
underneath it.
|
||||||
|
|
||||||
By default, user message editing is enabled for 10 minutes after sending.
|
By default, user message editing is enabled for 10 minutes after sending.
|
||||||
|
|
||||||
* **Users can edit old messages** - Uncheck this option if you wish to
|
* **Users can edit their messages** - Uncheck this option if you wish to
|
||||||
disable message editing. Upon doing so, the **Message edit limit in minutes (0 for no limit)**
|
disable message editing. Upon doing so, the **Message edit limit in minutes (0 for no limit)**
|
||||||
input field will be grayed out.
|
input field will be grayed out.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue