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