mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-04 06:37:07 +00:00
Fix copyable view
This commit is contained in:
parent
eb4555fd6f
commit
d49b23e563
@ -107,6 +107,26 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"copyable_click_to_copy_button" : {
|
||||
"localizations" : {
|
||||
"en" : {
|
||||
"stringUnit" : {
|
||||
"state" : "translated",
|
||||
"value" : "Click to Copy"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"copyable_copied" : {
|
||||
"localizations" : {
|
||||
"en" : {
|
||||
"stringUnit" : {
|
||||
"state" : "translated",
|
||||
"value" : "Copied"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"create_secret_cancel_button" : {
|
||||
"localizations" : {
|
||||
"en" : {
|
||||
|
@ -66,12 +66,12 @@ struct CopyableView: View {
|
||||
)
|
||||
}
|
||||
|
||||
var hoverText: String {
|
||||
var hoverText: LocalizedStringKey {
|
||||
switch interactionState {
|
||||
case .hovering:
|
||||
return "Click to Copy"
|
||||
return "copyable_click_to_copy_button"
|
||||
case .clicking:
|
||||
return "Copied"
|
||||
return "copyable_copied"
|
||||
case .normal:
|
||||
fatalError()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user