Sharkey/packages/client/src/scripts/show-suspended-dialog.ts

11 lines
244 B
TypeScript
Raw Normal View History

2021-11-11 19:02:25 +02:00
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
});
}