mirror of
https://github.com/borgbase/vorta
synced 2024-12-21 23:33:13 +00:00
Changed title of adding new repo
and existing repo
. By @SAMAD101 (#1810)
This commit is contained in:
parent
567a3546ae
commit
8c82c4069d
2 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,9 @@
|
|||
<property name="modal">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Add Repository</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="verticalSpacing">
|
||||
<number>0</number>
|
||||
|
|
|
@ -131,6 +131,7 @@ def values(self):
|
|||
class AddRepoWindow(RepoWindow):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
self.setWindowTitle("Add New Repository")
|
||||
|
||||
self.passwordInput = PasswordInput()
|
||||
self.passwordInput.add_form_to_layout(self.repoDataFormLayout)
|
||||
|
@ -226,6 +227,7 @@ class ExistingRepoWindow(RepoWindow):
|
|||
def __init__(self):
|
||||
super().__init__()
|
||||
self.title.setText(self.tr('Connect to existing Repository'))
|
||||
self.setWindowTitle("Add Existing Repository")
|
||||
|
||||
self.passwordLabel = QLabel(self.tr('Password:'))
|
||||
self.passwordInput = PasswordLineEdit()
|
||||
|
|
Loading…
Reference in a new issue