diff --git a/frontend/src/components/UI/TheSidebar.vue b/frontend/src/components/UI/TheSidebar.vue index 834c60d97..605f87a2d 100644 --- a/frontend/src/components/UI/TheSidebar.vue +++ b/frontend/src/components/UI/TheSidebar.vue @@ -12,7 +12,7 @@ {{ user.fullName }} - {{ user.admin ? "Admin" : "User" }} + {{ user.admin ? $t('user.admin') : $t('user.user') }} diff --git a/frontend/src/locales/messages/en-US.json b/frontend/src/locales/messages/en-US.json index 0ca827e7f..41f4617ab 100644 --- a/frontend/src/locales/messages/en-US.json +++ b/frontend/src/locales/messages/en-US.json @@ -384,6 +384,7 @@ "webhook-time": "Webhook Time", "webhooks-enabled": "Webhooks Enabled", "you-are-not-allowed-to-create-a-user": "You are not allowed to create a user", - "you-are-not-allowed-to-delete-this-user": "You are not allowed to delete this user" + "you-are-not-allowed-to-delete-this-user": "You are not allowed to delete this user", + "user": "User" } -} \ No newline at end of file +}