diff --git a/Pearcleaner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Pearcleaner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 43ada50..efa2098 100644 --- a/Pearcleaner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Pearcleaner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -7,7 +7,7 @@ "location" : "https://github.com/alienator88/AlinFoundation", "state" : { "branch" : "main", - "revision" : "e4f860c4e7a7160ff0989b4cd90be9f1a757460c" + "revision" : "03555dbc156da3888bb547dee6710fe4d5c73567" } }, { diff --git a/Pearcleaner/Resources/Localizable.xcstrings b/Pearcleaner/Resources/Localizable.xcstrings index 472d371..19bc48c 100644 --- a/Pearcleaner/Resources/Localizable.xcstrings +++ b/Pearcleaner/Resources/Localizable.xcstrings @@ -157,6 +157,9 @@ }, "Drop folders above or click to add" : { + }, + "Drop Target" : { + "extractionState" : "manual" }, "Enable context menu extension for Finder" : { @@ -485,6 +488,9 @@ }, "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." : { + }, + "Sort app list alphabetically by name or by size" : { + "extractionState" : "manual" }, "Sorted by Name" : { @@ -494,6 +500,9 @@ }, "Sorting Options" : { + }, + "Sorting: %@" : { + }, "Sponsor" : { diff --git a/Pearcleaner/Views/AppSearchView.swift b/Pearcleaner/Views/AppSearchView.swift index 0e8ea66..0d78912 100644 --- a/Pearcleaner/Views/AppSearchView.swift +++ b/Pearcleaner/Views/AppSearchView.swift @@ -114,7 +114,7 @@ struct AppSearchView: View { } } } label: { EmptyView() } - .buttonStyle(SimpleButtonStyle(icon: "circle.fill", label: "Sorting: \(selectedSortOption.title)", help: "Sort app list alphabetically by name or by size", size: 5)) + .buttonStyle(SimpleButtonStyle(icon: "circle.fill", label: String(localized:"Sorting: \(selectedSortOption.title)"), help: String(localized: "Sort app list alphabetically by name or by size"), size: 5)) if mini && !menubarEnabled { Button { @@ -124,7 +124,7 @@ struct AppSearchView: View { showPopover = false } } label: { EmptyView() } - .buttonStyle(SimpleButtonStyle(icon: "circle.fill", label: "Drop Target", help: "Drop Target", size: 5)) + .buttonStyle(SimpleButtonStyle(icon: "circle.fill", label: String(localized: "Drop Target"), help: String(localized: "Drop Target"), size: 5)) } @@ -149,7 +149,7 @@ struct AppSearchView: View { if #available(macOS 14.0, *) { SettingsLink {} - .buttonStyle(SimpleButtonStyle(icon: "circle.fill", label: "Settings", help: "Settings", size: 5)) + .buttonStyle(SimpleButtonStyle(icon: "circle.fill", label: String(localized: "Settings"), help: String(localized: "Settings"), size: 5)) } else { Button("Settings") { if #available(macOS 13.0, *) {