Skip to content

Commit

Permalink
Add tooltips to Hide comment type settings where necessary (go-gite…
Browse files Browse the repository at this point in the history
…a#21306)

Previously, this setting was pretty confusing for users, especially the
difference between "reference" and "issue reference".
Related: go-gitea#21321.
  • Loading branch information
delvh authored Apr 12, 2023
1 parent 50a72e7 commit 58b36cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions options/locale/locale_en-US.ini
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,9 @@ cancel = Cancel
language = Language
ui = Theme
hidden_comment_types = Hidden comment types
hidden_comment_types_description = Comment types checked here will not be shown inside issue pages. Checking "Label" for example removes all "<user> added/removed <label>" comments.
hidden_comment_types.ref_tooltip = Comments where this issue was referenced from another issue/commit/…
hidden_comment_types.issue_ref_tooltip = Comments where the user changes the branch/tag associated with the issue
comment_type_group_reference = Reference
comment_type_group_label = Label
comment_type_group_milestone = Milestone
Expand Down
7 changes: 5 additions & 2 deletions templates/user/settings/appearance.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,13 @@
{{.locale.Tr "settings.hidden_comment_types"}}
</h4>
<div class="ui attached segment">
<p class="help">
{{.locale.Tr "settings.hidden_comment_types_description"}}
</p>
<form class="ui form" action="{{.Link}}/hidden_comments" method="post">
{{.CsrfTokenHtml}}
<div class="inline field">
<div class="ui checkbox">
<div class="ui checkbox" data-tooltip-content="{{.locale.Tr "settings.hidden_comment_types.ref_tooltip"}}">
<input name="reference" type="checkbox" {{if(call .IsCommentTypeGroupChecked "reference")}}checked{{end}}>
<label>{{.locale.Tr "settings.comment_type_group_reference"}}</label>
</div>
Expand Down Expand Up @@ -156,7 +159,7 @@
</div>
</div>
<div class="inline field">
<div class="ui checkbox">
<div class="ui checkbox" data-tooltip-content="{{.locale.Tr "settings.hidden_comment_types.issue_ref_tooltip"}}">
<input name="issue_ref" type="checkbox" {{if (call .IsCommentTypeGroupChecked "issue_ref")}}checked{{end}}>
<label>{{.locale.Tr "settings.comment_type_group_issue_ref"}}</label>
</div>
Expand Down

0 comments on commit 58b36cc

Please sign in to comment.