Improve label edit buttons labels (#11841)

* Improve label edit buttons labels

Previously when editing the buttons in the "Edit Label" modal were a
strange "Update" and "No". Improved them to "Save" and "Cancel".

Also fixed indentation in the template file, recommended to view changes
with the "Hide whitespace changes" option enabled on GitHub.

* remove unnecessary button icon

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
silverwind 2020-06-11 23:06:20 +02:00 committed by GitHub
parent b9e281265e
commit ca8ecf7ffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 49 deletions

View File

@ -71,6 +71,7 @@ issues = Issues
milestones = Milestones
cancel = Cancel
save = Save
add = Add
add_all = Add All
remove = Remove

View File

@ -48,11 +48,10 @@
</div>
<div class="actions">
<div class="ui negative button">
{{.i18n.Tr "modal.no"}}
{{.i18n.Tr "cancel"}}
</div>
<div class="ui positive right labeled icon button">
{{.i18n.Tr "modal.modify"}}
<i class="checkmark icon"></i>
<div class="ui positive button">
{{.i18n.Tr "save"}}
</div>
</div>
</div>