This commit is contained in:
Max Goedjen 2024-01-04 18:07:45 -08:00
parent 0f7f16d6cb
commit 116569d072
No known key found for this signature in database
2 changed files with 22 additions and 22 deletions

View File

@ -184,9 +184,6 @@
} }
} }
} }
},
"Delete" : {
}, },
"delete_confirmation_cancel_button" : { "delete_confirmation_cancel_button" : {
"localizations" : { "localizations" : {
@ -303,20 +300,6 @@
}, },
"Ignore" : { "Ignore" : {
},
"Key" : {
"extractionState" : "manual"
},
"Key 1" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Touch ID Detail prompt.Detail two."
}
}
}
}, },
"New Secret" : { "New Secret" : {
@ -353,9 +336,6 @@
}, },
"Release Notes" : { "Release Notes" : {
},
"Rename" : {
}, },
"rename_cancel_button" : { "rename_cancel_button" : {
"localizations" : { "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 %@" : { "Secretive %@" : {
}, },

View File

@ -33,10 +33,10 @@ struct SecretListItemView: View {
.contextMenu { .contextMenu {
if store is AnySecretStoreModifiable { if store is AnySecretStoreModifiable {
Button(action: { isRenaming = true }) { Button(action: { isRenaming = true }) {
Text("Rename") Text("secret_list_rename_button")
} }
Button(action: { isDeleting = true }) { Button(action: { isDeleting = true }) {
Text("Delete") Text("secret_list_delete_button")
} }
} }
} }