2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-11-11 09:02:25 -08:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2021-09-18 10:23:12 -07:00
|
|
|
|
|
|
|
export function showSuspendedDialog() {
|
2021-11-18 01:45:58 -08:00
|
|
|
return os.alert({
|
2021-09-18 10:23:12 -07:00
|
|
|
type: 'error',
|
2022-01-27 18:39:49 -08:00
|
|
|
title: i18n.ts.yourAccountSuspendedTitle,
|
2022-12-21 23:01:59 -08:00
|
|
|
text: i18n.ts.yourAccountSuspendedDescription,
|
2021-09-18 10:23:12 -07:00
|
|
|
});
|
|
|
|
}
|