9575:635b6c5a36e1 | 9576:be9f8e7e42e0 |
---|---|
692 | 692 |
693 dlg = DeleteFilesConfirmationDialog( | 693 dlg = DeleteFilesConfirmationDialog( |
694 self.parent(), | 694 self.parent(), |
695 self.tr("Remove from repository only"), | 695 self.tr("Remove from repository only"), |
696 self.tr( | 696 self.tr( |
697 "Do you really want to remove these files" " from the repository?" | 697 "Do you really want to remove these files from the repository?" |
698 ), | 698 ), |
699 names, | 699 names, |
700 ) | 700 ) |
701 else: | 701 else: |
702 items = self.browser.getSelectedItems() | 702 items = self.browser.getSelectedItems() |
705 | 705 |
706 dlg = DeleteFilesConfirmationDialog( | 706 dlg = DeleteFilesConfirmationDialog( |
707 self.parent(), | 707 self.parent(), |
708 self.tr("Remove from repository only"), | 708 self.tr("Remove from repository only"), |
709 self.tr( | 709 self.tr( |
710 "Do you really want to remove these files" " from the repository?" | 710 "Do you really want to remove these files from the repository?" |
711 ), | 711 ), |
712 files, | 712 files, |
713 ) | 713 ) |
714 | 714 |
715 if dlg.exec() == QDialog.DialogCode.Accepted: | 715 if dlg.exec() == QDialog.DialogCode.Accepted: |