Skip to content

Commit

Permalink
Maintenance: Improve translatable source string.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed Jan 8, 2024
1 parent 22fe9df commit 495c9fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -26,7 +26,7 @@ describe('signup verify view', () => {
it('shows a loading indicator during the verification process', async () => {
const view = await visitView('/signup/verify/123')

expect(view.getByText('Verifying your email...')).toBeInTheDocument()
expect(view.getByText('Verifying your email')).toBeInTheDocument()

const loader = view.getByRole('status')

Expand Down
Expand Up @@ -47,7 +47,7 @@ const message = computed(() => {
)
case 'loading':
default:
return __('Verifying your email...')
return __('Verifying your email')
}
})
Expand Down
2 changes: 1 addition & 1 deletion i18n/zammad.pot
Expand Up @@ -13983,7 +13983,7 @@ msgid "Verifying key information…"
msgstr ""

#: app/frontend/apps/desktop/pages/authentication/views/SignupVerify.vue
msgid "Verifying your email..."
msgid "Verifying your email"
msgstr ""

#: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
Expand Down

0 comments on commit 495c9fe

Please sign in to comment.