Skip to content

Commit

Permalink
Merge pull request #4931 from nextcloud-libraries/fix/user-status-tra…
Browse files Browse the repository at this point in the history
…nslation-typo

fix(utils/UserStatus): typo in "invisible" translation key
  • Loading branch information
st3iny committed Dec 7, 2023
2 parents ebc1e52 + b1c3934 commit 0bf2674
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l10n/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ msgstr ""
msgid "Hide password"
msgstr ""

msgid "invisble"
msgid "invisible"
msgstr ""

msgid "Load more \"{options}\""
Expand Down
2 changes: 1 addition & 1 deletion src/utils/UserStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 0bf2674

Please sign in to comment.