1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 23:47:32 +02:00

Fixes namespace errors in keys for the two extracted strings.

This commit is contained in:
dcsjapan
2015-10-06 09:56:12 +09:00
parent 78cd35d93c
commit 1a3e085a9c
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ export default {
* Delete the user.
*/
deleteAction() {
if (confirm(app.trans('core.admin.user_controls_delete_confirmation'))) {
if (confirm(app.trans('core.forum.user_controls_delete_confirmation'))) {
this.delete().then(() => {
if (app.current instanceof UserPage && app.current.user === this) {
app.history.back();