mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-10 17:47:19 +00:00
List
This commit is contained in:
parent
0f7f16d6cb
commit
116569d072
@ -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 %@" : {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -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")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user