blob: 3bc48000300616eebbe7acda1b59ff0f6a346090 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import * as os from '@/os';
import { i18n } from '@/i18n';
export function showSuspendedDialog() {
return os.dialog({
type: 'error',
title: i18n.locale.yourAccountSuspendedTitle,
text: i18n.locale.yourAccountSuspendedDescription
});
}
|