2023-07-27 14:31:52 +09:00
|
|
|
/*
|
2024-02-14 00:59:27 +09:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 14:31:52 +09:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-19 16:37:43 +09:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2021-09-19 02:23:12 +09:00
|
|
|
|
|
|
|
export function showSuspendedDialog() {
|
2021-11-18 18:45:58 +09:00
|
|
|
return os.alert({
|
2021-09-19 02:23:12 +09:00
|
|
|
type: 'error',
|
2022-01-28 11:39:49 +09:00
|
|
|
title: i18n.ts.yourAccountSuspendedTitle,
|
2022-12-22 16:01:59 +09:00
|
|
|
text: i18n.ts.yourAccountSuspendedDescription,
|
2021-09-19 02:23:12 +09:00
|
|
|
});
|
|
|
|
}
|