diff --git a/Sources/Secretive/Localizable.xcstrings b/Sources/Secretive/Localizable.xcstrings index d37d0e8..3e9297d 100644 --- a/Sources/Secretive/Localizable.xcstrings +++ b/Sources/Secretive/Localizable.xcstrings @@ -184,9 +184,6 @@ } } } - }, - "Delete" : { - }, "delete_confirmation_cancel_button" : { "localizations" : { @@ -303,20 +300,6 @@ }, "Ignore" : { - }, - "Key" : { - "extractionState" : "manual" - }, - "Key 1" : { - "extractionState" : "manual", - "localizations" : { - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Touch ID Detail prompt.Detail two." - } - } - } }, "New Secret" : { @@ -353,9 +336,6 @@ }, "Release Notes" : { - }, - "Rename" : { - }, "rename_cancel_button" : { "localizations" : { @@ -430,6 +410,26 @@ } } }, + "secret_list_delete_button" : { + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" + } + } + } + }, + "secret_list_rename_button" : { + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rename" + } + } + } + }, "Secretive %@" : { }, diff --git a/Sources/Secretive/Views/SecretListItemView.swift b/Sources/Secretive/Views/SecretListItemView.swift index 958d905..8f6bbf4 100644 --- a/Sources/Secretive/Views/SecretListItemView.swift +++ b/Sources/Secretive/Views/SecretListItemView.swift @@ -33,10 +33,10 @@ struct SecretListItemView: View { .contextMenu { if store is AnySecretStoreModifiable { Button(action: { isRenaming = true }) { - Text("Rename") + Text("secret_list_rename_button") } Button(action: { isDeleting = true }) { - Text("Delete") + Text("secret_list_delete_button") } } }