2021-11-12 02:02:25 +09:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
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',
|
|
|
|
title: i18n.locale.yourAccountSuspendedTitle,
|
|
|
|
text: i18n.locale.yourAccountSuspendedDescription
|
|
|
|
});
|
|
|
|
}
|