Split out empty trash title, fixes #1373

This commit is contained in:
Jeremy Soller 2025-11-13 08:59:59 -07:00
parent f3b4e0bc6a
commit de20738735
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA
2 changed files with 3 additions and 2 deletions

View file

@ -52,7 +52,8 @@ extract-to = Extract To...
extract-to-title = Extract to folder
## Empty Trash Dialog
empty-trash = Empty trash?
empty-trash = Empty trash
empty-trash-title = Empty trash?
empty-trash-warning = Items in the Trash folder will be permanently deleted
## Mount Error Dialog

View file

@ -4884,7 +4884,7 @@ impl Application for App {
dialog
}
DialogPage::EmptyTrash => widget::dialog()
.title(fl!("empty-trash"))
.title(fl!("empty-trash-title"))
.body(fl!("empty-trash-warning"))
.primary_action(
widget::button::suggested(fl!("empty-trash"))