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/gui/macOS/ui/FileProviderEvictionDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ApplicationWindow {
LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft
LayoutMirroring.childrenInherit: true

title: qsTr("Evict materialised files")
title: qsTr("Remove local copies")
color: palette.base
flags: Qt.Dialog | Qt.WindowStaysOnTopHint
width: 640
Expand All @@ -49,7 +49,7 @@ ApplicationWindow {
Layout.margins: Style.standardSpacing

EnforcedPlainTextLabel {
text: qsTr("Materialised items")
text: qsTr("Local copies")
font.bold: true
font.pointSize: Style.headerFontPtSize
Layout.fillWidth: true
Expand Down
2 changes: 1 addition & 1 deletion src/gui/macOS/ui/FileProviderStorageInfo.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ GridLayout {
Layout.row: 0
Layout.column: 2
Layout.alignment: Layout.AlignRight | Layout.AlignVCenter
text: qsTr("Evict local copies …")
text: qsTr("Free up space …")
onPressed: root.evictDialogRequested()
}

Expand Down