fix(web): small translation issues + remove unused (#10200)

* fix(web): small translation issues + remove unused

* more unused keys

* formatting

* fix(web): incorrectly used translations

* fix and remove unused translations

---------

Co-authored-by: Zack Pollard <zackpollard@ymail.com>
This commit is contained in:
Michel Heusschen 2024-06-12 13:13:10 +02:00 committed by GitHub
parent 476eea44df
commit f99f289f74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 17 additions and 31 deletions

View file

@ -33,8 +33,8 @@
await signUpAdmin({ signUpDto: { email, password, name } });
await goto(AppRoute.AUTH_LOGIN);
} catch (error) {
handleError(error, 'errors.errors.unable_to_create_admin_account');
errorMessage = $t('errors.errors.unable_to_create_admin_account');
handleError(error, 'errors.unable_to_create_admin_account');
errorMessage = $t('errors.unable_to_create_admin_account');
}
}
}