2023-01-13 05:40:33 +01:00
|
|
|
import * as os from "@/os";
|
|
|
|
import { i18n } from "@/i18n";
|
2021-09-18 19:23:12 +02:00
|
|
|
|
|
|
|
export function showSuspendedDialog() {
|
2021-11-18 10:45:58 +01:00
|
|
|
return os.alert({
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "error",
|
2022-01-28 03:39:49 +01:00
|
|
|
title: i18n.ts.yourAccountSuspendedTitle,
|
2023-01-13 05:40:33 +01:00
|
|
|
text: i18n.ts.yourAccountSuspendedDescription,
|
2021-09-18 19:23:12 +02:00
|
|
|
});
|
|
|
|
}
|