Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/vorta/assets/UI/about_tab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
</layout>
</item>
<item>
<widget class="QFrame" name="seperator">
<widget class="QFrame" name="separator">
<property name="frameShape">
<enum>QFrame::HLine</enum>
</property>
Expand Down Expand Up @@ -223,7 +223,7 @@
</layout>
</item>
<item>
<widget class="QFrame" name="seperator">
<widget class="QFrame" name="separator">
<property name="frameShape">
<enum>QFrame::HLine</enum>
</property>
Expand Down
2 changes: 1 addition & 1 deletion src/vorta/borg/info_archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def process_result(self, result):
archive = ArchiveModel.get_or_none(name=remote_archive['name'], repo=repo_id)
archive.snapshot_id = remote_archive['id']

archive.name = remote_archive['name'] # incase name changed
archive.name = remote_archive['name'] # in case name changed
# archive.time = parser.parse(remote_archive['time'])
archive.duration = remote_archive['duration']
archive.size = remote_archive['stats']['deduplicated_size']
Expand Down
2 changes: 1 addition & 1 deletion src/vorta/profile_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def to_db(self, overwrite_profile=False, overwrite_settings=True):
while BackupProfileModel.get_or_none(BackupProfileModel.id == self.id) is not None:
self._profile_dict['id'] += 1

# Add suffix incase names are the same
# Add suffix in case names are the same
if BackupProfileModel.get_or_none(BackupProfileModel.name == self.name) is not None:
suffix = 1
while BackupProfileModel.get_or_none(BackupProfileModel.name == f"{self.name}-{suffix}") is not None:
Expand Down
2 changes: 1 addition & 1 deletion src/vorta/views/archive_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ def rename_result(self, result):
def toggle_compact_button_visibility(self):
"""
Enable or disable the compact button depending on the Borg version.
This function runs once on startup, and everytime the profile is changed.
This function runs once on startup, and every time the profile is changed.
"""
if borg_compat.check("COMPACT_SUBCOMMAND"):
self.compactButton.setEnabled(True)
Expand Down
4 changes: 2 additions & 2 deletions src/vorta/views/partials/treemodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def _addChild(
This is called by `addItem` in a reduce statement. It should
add a new child with the given attributes to the given item.
This implementation provides a reasonable default, most subclasses
wont need to override this method. The implementation should make use
won't need to override this method. The implementation should make use
of `_make_filesystemitem`, `_merge_data`, `_add_children`.

Parameters
Expand Down Expand Up @@ -562,7 +562,7 @@ def setMode(self, value: 'DisplayMode'):

In TREE mode (default) the tree will be displayed as is.
In SIMPLIFIED_TREE items will simplify the tree by combining
items with their single child if they posess only one.
items with their single child if they possess only one.
In FLAT mode items will be displayed as a simple list. The items
shown can be filtered by `_flat_filter`.

Expand Down
Loading