Hotfix - change calendar error message (#2643)
* Change calendar error message * Change calendar error message Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>fix/1847-support-jitsi-self-hosted^2
parent
59a1db9068
commit
02fb15228b
|
@ -139,7 +139,7 @@ function ConnectedCalendarsList(props: Props) {
|
||||||
) : (
|
) : (
|
||||||
<Alert
|
<Alert
|
||||||
severity="warning"
|
severity="warning"
|
||||||
title="Something went wrong"
|
title={t("calendar_error")}
|
||||||
message={item.error?.message}
|
message={item.error?.message}
|
||||||
actions={
|
actions={
|
||||||
<DisconnectIntegration
|
<DisconnectIntegration
|
||||||
|
|
|
@ -771,5 +771,6 @@
|
||||||
"impersonate":"Impersonate",
|
"impersonate":"Impersonate",
|
||||||
"impersonate_user_tip":"All uses of this feature is audited.",
|
"impersonate_user_tip":"All uses of this feature is audited.",
|
||||||
"impersonating_user_warning":"Impersonating username \"{{user}}\".",
|
"impersonating_user_warning":"Impersonating username \"{{user}}\".",
|
||||||
"impersonating_stop_instructions": "<0>Click Here to stop</0>."
|
"impersonating_stop_instructions": "<0>Click Here to stop</0>.",
|
||||||
|
"calendar_error": "Something went wrong, try reconnecting your calendar with all necessary permissions"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue