]> source.dussan.org Git - redmine.git/commitdiff
Clarify consequences of disabling the login_required (#27009).
authorGo MAEDA <maeda@farend.jp>
Thu, 26 Apr 2018 14:36:43 +0000 (14:36 +0000)
committerGo MAEDA <maeda@farend.jp>
Thu, 26 Apr 2018 14:36:43 +0000 (14:36 +0000)
Patch by Holger Just.

git-svn-id: http://svn.redmine.org/redmine/trunk@17310 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/settings/_authentication.html.erb
config/locales/de.yml
config/locales/en.yml

index 4454bbae4be3eb0ba46ffe18d5c4b45145d4dc54..fc8fb0a78452b73761fafdfcc6654518929687da 100644 (file)
@@ -1,7 +1,11 @@
 <%= form_tag({:action => 'edit', :tab => 'authentication'}) do %>
 
 <div class="box tabular settings">
-<p><%= setting_check_box :login_required %></p>
+<p>
+<p><%= setting_select :login_required, [[l(:label_login_required_yes), "1"],
+                                        [l(:label_login_required_no), "0"]] %>
+  <em class="info"><%= t(:text_login_required_html, anonymous_role_path: edit_role_path(Role.anonymous)) %></em>
+</p>
 
 <p><%= setting_select :autologin, [[l(:label_disabled), 0]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %></p>
 
index 843433e8cd9264ff3ee530c6d8fc8bc68729348d..e75831c545268e8d7f19824f463f558d29cc52a9 100644 (file)
@@ -1236,3 +1236,6 @@ de:
   label_x_revisions: "%{count} revisions"
   error_can_not_delete_auth_source: This authentication mode is in use and cannot be
     deleted.
+  text_login_required_html: Ohne erforderliche Authentifizierung sind öffentlichen Projekte und deren Inhalte ohne Anmeldung frei zugänglich. Sie können die <a href="%{anonymous_role_path}">verwendeten Berechtigungen anpassen</a>.
+  label_login_required_yes: "Ja"
+  label_login_required_no: "Nein, anonymen Zugriff auf öffentliche Projekte erlauben"
index 1c61c76ea543a002c22acab5fa6b72dd6efa1081..246968f16854cb62c093ab4b64e98f7a7e4f44c8 100644 (file)
@@ -1216,3 +1216,6 @@ en:
   description_issue_category_reassign: Choose issue category
   description_wiki_subpages_reassign: Choose new parent page
   text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.'
+  text_login_required_html: When not requiring authentication, public projects and their contents are openly available on the network. You can <a href="%{anonymous_role_path}">edit the applicable permissions</a>.
+  label_login_required_yes: "Yes"
+  label_login_required_no: "No, allow anonymous access to public projects"