| 1007 | console.warn('No avatar id found'); | 1007 | console.warn('No avatar id found'); |
| 1008 | return; | 1008 | return; |
| 1009 | } | 1009 | } |
| 1010 | const confirm = await Popup.show.confirm(t`Delete Persona`, | 1010 | const name = power_user.personas[avatarId] || ''; |
| | 1011 | const confirm = await Popup.show.confirm( |
| | 1012 | t`Delete Persona` + `: ${name}`, |
| 1011 | t`Are you sure you want to delete this avatar?` + '<br />' + t`All information associated with its linked persona will be lost.`); | 1013 | t`Are you sure you want to delete this avatar?` + '<br />' + t`All information associated with its linked persona will be lost.`); |
| 1012 | | 1014 | |
| 1013 | if (!confirm) { | 1015 | if (!confirm) { |