mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 05:03:08 +02:00
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
|
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
|
||
|
});
|
||
|
}
|