@@ -22,7 +22,7 @@ ExpandableDelegate {
22
22
onTriggered : (source ) => App .connection [modelData .paused ? " resumeDirectories" : " pauseDirectories" ]([modelData .dirId ])
23
23
},
24
24
Action {
25
- text: qsTr (" Open in file browser " )
25
+ text: qsTr (" Open" )
26
26
icon .source : App .faUrlBase + " folder"
27
27
onTriggered : (source ) => App .openPath (modelData .path )
28
28
}
@@ -46,12 +46,12 @@ ExpandableDelegate {
46
46
onTriggered : (source ) => mainView .stackView .push (" DirErrorsPage.qml" , {dirName: modelData .name , dirId: modelData .dirId }, StackView .PushTransition )
47
47
},
48
48
Action {
49
- text: qsTr (" Edit ignore patterns" )
49
+ text: qsTr (" Ignore patterns" )
50
50
icon .source : App .faUrlBase + " filter"
51
51
onTriggered : (source ) => mainView .stackView .push (" IgnorePatternPage.qml" , {dirName: modelData .name , dirId: modelData .dirId }, StackView .PushTransition )
52
52
},
53
53
Action {
54
- text: qsTr (" Browse remote files" )
54
+ text: qsTr (" Remote files" )
55
55
icon .source : App .faUrlBase + " folder-open-o"
56
56
enabled: ! modelData .paused
57
57
onTriggered : (source ) => mainView .stackView .push (" FilesPage.qml" , {dirName: modelData .name , dirId: modelData .dirId }, StackView .PushTransition )
@@ -62,7 +62,7 @@ ExpandableDelegate {
62
62
onTriggered : (source ) => mainView .stackView .push (" AdvancedDirConfigPage.qml" , {dirName: modelData .name , dirId: modelData .dirId , stackView: mainView .stackView }, StackView .PushTransition )
63
63
},
64
64
Action {
65
- text: qsTr (" Trigger media rescan" )
65
+ text: qsTr (" Media rescan" )
66
66
icon .source : App .faUrlBase + " music"
67
67
enabled: App .scanSupported
68
68
onTriggered : (source ) => App .scanPath (modelData .path )
0 commit comments