Adds speech to text error
This commit is contained in:
parent
9cb6faf43c
commit
e18eb6f104
2 changed files with 7 additions and 1 deletions
|
|
@ -4111,5 +4111,7 @@
|
|||
"deleteSubscriptionWarningBody": "Deleting your account will not automatically cancel your subscription.",
|
||||
"manageSubscription": "Manage Subscription",
|
||||
"createSpace": "Create space",
|
||||
"createChat": "Create chat"
|
||||
"createChat": "Create chat",
|
||||
"error520Title": "Please try again.",
|
||||
"error520Desc": "Sorry, we could not understand your message..."
|
||||
}
|
||||
|
|
@ -122,6 +122,10 @@ class ErrorCopy {
|
|||
title = l10n.error502504Title;
|
||||
body = l10n.error502504Desc;
|
||||
break;
|
||||
case 520:
|
||||
title = l10n.error520Title;
|
||||
body = l10n.error520Desc;
|
||||
break;
|
||||
case 404:
|
||||
title = l10n.error404Title;
|
||||
body = l10n.error404Desc;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue