mirror of
https://github.com/exituser/Pearcleaner.git
synced 2026-09-17 06:09:01 +00:00
String updates
This commit is contained in:
@@ -284,6 +284,9 @@
|
|||||||
},
|
},
|
||||||
"More" : {
|
"More" : {
|
||||||
|
|
||||||
|
},
|
||||||
|
"Name" : {
|
||||||
|
|
||||||
},
|
},
|
||||||
"No files or folders added" : {
|
"No files or folders added" : {
|
||||||
|
|
||||||
@@ -410,9 +413,18 @@
|
|||||||
},
|
},
|
||||||
"Show Details" : {
|
"Show Details" : {
|
||||||
|
|
||||||
|
},
|
||||||
|
"Size" : {
|
||||||
|
|
||||||
},
|
},
|
||||||
"Some files/folders are not similar to the app name or bundle id, causing Pearcleaner to either not find them or find unrelated files. \nTo combat this, you may create a custom condition for each application bundle using keywords or direct paths. \n\n- Can add file/folder keywords that you want to either include or exclude in fuzzy searches. \n\n- Can explicitly add or remove a full Finder path to search results if you want a direct search." : {
|
"Some files/folders are not similar to the app name or bundle id, causing Pearcleaner to either not find them or find unrelated files. \nTo combat this, you may create a custom condition for each application bundle using keywords or direct paths. \n\n- Can add file/folder keywords that you want to either include or exclude in fuzzy searches. \n\n- Can explicitly add or remove a full Finder path to search results if you want a direct search." : {
|
||||||
|
|
||||||
|
},
|
||||||
|
"Sorted by Name" : {
|
||||||
|
|
||||||
|
},
|
||||||
|
"Sorted by Size" : {
|
||||||
|
|
||||||
},
|
},
|
||||||
"Sorting Options" : {
|
"Sorting Options" : {
|
||||||
|
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ struct FilesView: View {
|
|||||||
Button {
|
Button {
|
||||||
selectedSortAlpha.toggle()
|
selectedSortAlpha.toggle()
|
||||||
} label: { EmptyView() }
|
} label: { EmptyView() }
|
||||||
.buttonStyle(SimpleButtonStyle(icon: "line.3.horizontal.decrease.circle", label: String(localized: selectedSortAlpha ? "Name" : "Size"), help: String(localized: selectedSortAlpha ? "Sorted alphabetically" : "Sorted by size"), size: 16))
|
.buttonStyle(SimpleButtonStyle(icon: "line.3.horizontal.decrease.circle", label: selectedSortAlpha ? String(localized: "Name") : String(localized: "Size"), help: selectedSortAlpha ? String(localized: "Sorted by Name") : String(localized: "Sorted by Size"), size: 16))
|
||||||
|
|
||||||
}
|
}
|
||||||
.padding()
|
.padding()
|
||||||
|
|||||||
Reference in New Issue
Block a user