diff --git a/l10n/messages.pot b/l10n/messages.pot index 29c47550f7..da08bb6b84 100644 --- a/l10n/messages.pot +++ b/l10n/messages.pot @@ -129,7 +129,7 @@ msgstr "" msgid "Hide password" msgstr "" -msgid "invisble" +msgid "invisible" msgstr "" msgid "Load more \"{options}\"" diff --git a/src/utils/UserStatus.ts b/src/utils/UserStatus.ts index c9c9b7eb0d..b2ae932bee 100644 --- a/src/utils/UserStatus.ts +++ b/src/utils/UserStatus.ts @@ -34,7 +34,7 @@ export const getUserStatusText = (status: Status): string => { case 'away': return t('away') // TRANSLATORS: User status if the user is currently away from keyboard case 'dnd': return t('do not disturb') case 'online': return t('online') - case 'invisible': return t('invisble') + case 'invisible': return t('invisible') case 'offline': return t('offline') default: return status }