9575:635b6c5a36e1 | 9576:be9f8e7e42e0 |
---|---|
970 | 970 |
971 dlg = DeleteFilesConfirmationDialog( | 971 dlg = DeleteFilesConfirmationDialog( |
972 self.parent(), | 972 self.parent(), |
973 self.tr("Remove from repository only"), | 973 self.tr("Remove from repository only"), |
974 self.tr( | 974 self.tr( |
975 "Do you really want to remove these files" " from the repository?" | 975 "Do you really want to remove these files from the repository?" |
976 ), | 976 ), |
977 names, | 977 names, |
978 ) | 978 ) |
979 else: | 979 else: |
980 items = self.browser.getSelectedItems() | 980 items = self.browser.getSelectedItems() |
983 | 983 |
984 dlg = DeleteFilesConfirmationDialog( | 984 dlg = DeleteFilesConfirmationDialog( |
985 self.parent(), | 985 self.parent(), |
986 self.tr("Remove from repository only"), | 986 self.tr("Remove from repository only"), |
987 self.tr( | 987 self.tr( |
988 "Do you really want to remove these files" " from the repository?" | 988 "Do you really want to remove these files from the repository?" |
989 ), | 989 ), |
990 files, | 990 files, |
991 ) | 991 ) |
992 | 992 |
993 if dlg.exec() == QDialog.DialogCode.Accepted: | 993 if dlg.exec() == QDialog.DialogCode.Accepted: |