This commit is contained in:
syuilo 2023-07-08 08:46:42 +09:00
parent b318789354
commit 588465566b
3 changed files with 27 additions and 13 deletions

1
locales/index.d.ts vendored
View File

@ -1070,6 +1070,7 @@ export interface Locale {
"branding": string; "branding": string;
"enableServerMachineStats": string; "enableServerMachineStats": string;
"enableIdenticonGeneration": string; "enableIdenticonGeneration": string;
"turnOffToImprovePerformance": string;
"_initialAccountSetting": { "_initialAccountSetting": {
"accountCreated": string; "accountCreated": string;
"letsStartAccountSetup": string; "letsStartAccountSetup": string;

View File

@ -1067,6 +1067,7 @@ installed: "インストール済み"
branding: "ブランディング" branding: "ブランディング"
enableServerMachineStats: "サーバーのマシン情報を公開する" enableServerMachineStats: "サーバーのマシン情報を公開する"
enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする" enableIdenticonGeneration: "ユーザーごとのIdenticon生成を有効にする"
turnOffToImprovePerformance: "オフにするとパフォーマンスが向上します。"
_initialAccountSetting: _initialAccountSetting:
accountCreated: "アカウントの作成が完了しました!" accountCreated: "アカウントの作成が完了しました!"

View File

@ -3,22 +3,34 @@
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template> <template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32"> <MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
<FormSuspense :p="init"> <FormSuspense :p="init">
<div class="_gaps_s"> <div class="_gaps">
<MkSwitch v-model="enableServerMachineStats"> <div class="_panel" style="padding: 16px;">
<template #label>{{ i18n.ts.enableServerMachineStats }}</template> <MkSwitch v-model="enableServerMachineStats">
</MkSwitch> <template #label>{{ i18n.ts.enableServerMachineStats }}</template>
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
</MkSwitch>
</div>
<MkSwitch v-model="enableIdenticonGeneration"> <div class="_panel" style="padding: 16px;">
<template #label>{{ i18n.ts.enableIdenticonGeneration }}</template> <MkSwitch v-model="enableIdenticonGeneration">
</MkSwitch> <template #label>{{ i18n.ts.enableIdenticonGeneration }}</template>
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
</MkSwitch>
</div>
<MkSwitch v-model="enableChartsForRemoteUser"> <div class="_panel" style="padding: 16px;">
<template #label>{{ i18n.ts.enableChartsForRemoteUser }}</template> <MkSwitch v-model="enableChartsForRemoteUser">
</MkSwitch> <template #label>{{ i18n.ts.enableChartsForRemoteUser }}</template>
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
</MkSwitch>
</div>
<MkSwitch v-model="enableChartsForFederatedInstances"> <div class="_panel" style="padding: 16px;">
<template #label>{{ i18n.ts.enableChartsForFederatedInstances }}</template> <MkSwitch v-model="enableChartsForFederatedInstances">
</MkSwitch> <template #label>{{ i18n.ts.enableChartsForFederatedInstances }}</template>
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
</MkSwitch>
</div>
</div> </div>
</FormSuspense> </FormSuspense>
</MkSpacer> </MkSpacer>