String updates

This commit is contained in:
Alin
2024-10-21 09:14:38 -06:00
parent 727bd54441
commit c7e8f6e2cd
2 changed files with 13 additions and 1 deletions
@@ -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" : {
+1 -1
View File
@@ -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()