Dismiss -> Close

pull/53/head
Zlatin Balevsky 2020-10-01 14:44:01 +01:00
parent d73d7d4037
commit 1b00a00301
No known key found for this signature in database
GPG Key ID: A72832072D525E41
5 changed files with 4 additions and 5 deletions

View File

@ -392,7 +392,6 @@ SEARCHER=Searcher
CLEAR_HITS=Clear Hits CLEAR_HITS=Clear Hits
## Show Comment frame ## Show Comment frame
DISMISS=Dismiss
## Add comment frame ## Add comment frame
ADD_COMMENT_MULTIPLE=Add comment to multiple files ADD_COMMENT_MULTIPLE=Add comment to multiple files

View File

@ -70,7 +70,7 @@ class BrowseView {
button(text : trans("VIEW_COMMENT"), enabled : bind{model.viewCommentActionEnabled}, viewCommentAction) button(text : trans("VIEW_COMMENT"), enabled : bind{model.viewCommentActionEnabled}, viewCommentAction)
button(text : trans("VIEW_CERTIFICATES"), enabled : bind{model.viewCertificatesActionEnabled}, viewCertificatesAction) button(text : trans("VIEW_CERTIFICATES"), enabled : bind{model.viewCertificatesActionEnabled}, viewCertificatesAction)
button(text : trans("CHAT"), enabled : bind {model.chatActionEnabled}, chatAction) button(text : trans("CHAT"), enabled : bind {model.chatActionEnabled}, chatAction)
button(text : trans("DISMISS"), dismissAction) button(text : trans("CLOSE"), dismissAction)
label(text : trans("DOWNLOAD_SEQUENTIALLY")) label(text : trans("DOWNLOAD_SEQUENTIALLY"))
sequentialDownloadCheckbox = checkBox() sequentialDownloadCheckbox = checkBox()
} }

View File

@ -66,7 +66,7 @@ class FetchCertificatesView {
panel(constraints : BorderLayout.SOUTH) { panel(constraints : BorderLayout.SOUTH) {
button(text : trans("IMPORT"), enabled : bind {model.importActionEnabled}, importCertificatesAction) button(text : trans("IMPORT"), enabled : bind {model.importActionEnabled}, importCertificatesAction)
button(text : trans("SHOW_COMMENT"), enabled : bind {model.showCommentActionEnabled}, showCommentAction) button(text : trans("SHOW_COMMENT"), enabled : bind {model.showCommentActionEnabled}, showCommentAction)
button(text : trans("DISMISS"), dismissAction) button(text : trans("CLOSE"), dismissAction)
} }
} }

View File

@ -42,7 +42,7 @@ class ShowCommentView {
} }
} }
panel (constraints : BorderLayout.SOUTH) { panel (constraints : BorderLayout.SOUTH) {
button(text : trans("DISMISS"), dismissAction) button(text : trans("CLOSE"), dismissAction)
} }
} }
} }

View File

@ -47,7 +47,7 @@ class SignView {
panel (constraints : BorderLayout.SOUTH) { panel (constraints : BorderLayout.SOUTH) {
button(text : trans("SIGN"), signAction) button(text : trans("SIGN"), signAction)
button(text : trans("COPY_TO_CLIPBOARD"), copyAction) button(text : trans("COPY_TO_CLIPBOARD"), copyAction)
button(text : trans("DISMISS"), closeAction) button(text : trans("CLOSE"), closeAction)
} }
} }
} }