Merge branch 'develop' into swn

This commit is contained in:
tamaina
2021-09-19 15:12:57 +09:00
9 changed files with 229 additions and 65 deletions

View File

@@ -0,0 +1,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
});
}