diff options
| -rw-r--r-- | Localizable.xcstrings | 6 | ||||
| -rw-r--r-- | Sora/Views/Generic/GenericListView.swift | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Localizable.xcstrings b/Localizable.xcstrings index aed405c..b8e0b15 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -125,6 +125,9 @@ "Delete" : { }, + "Delete All" : { + + }, "Details" : { "localizations" : { "ja" : { @@ -301,9 +304,6 @@ "Refresh" : { }, - "Remove" : { - - }, "Remove All" : { }, diff --git a/Sora/Views/Generic/GenericListView.swift b/Sora/Views/Generic/GenericListView.swift index 0cad426..e9376fa 100644 --- a/Sora/Views/Generic/GenericListView.swift +++ b/Sora/Views/Generic/GenericListView.swift @@ -282,7 +282,7 @@ struct GenericListView<T: Identifiable & Hashable & GenericItem>: View { isShowingRemoveAllConfirmation = true } ) { - Label("Remove All", systemImage: "trash") + Label("Delete All", systemImage: "trash") } } } @@ -432,7 +432,7 @@ struct GenericListView<T: Identifiable & Hashable & GenericItem>: View { Button { removeActionUUID(item.id) } label: { - Label("Remove", systemImage: "trash") + Label("Delete", systemImage: "trash") } } #if os(macOS) |