enhance(frontend): re-organize settings page

This commit is contained in:
syuilo 2025-03-13 19:30:35 +09:00
parent 3280a3d661
commit 0126dba475
6 changed files with 568 additions and 597 deletions

View File

@ -140,11 +140,6 @@ const menuDef = computed<SuperMenuDef[]>(() => [{
text: i18n.ts.drive, text: i18n.ts.drive,
to: '/settings/drive', to: '/settings/drive',
active: currentPage.value?.route.name === 'drive', active: currentPage.value?.route.name === 'drive',
}, {
icon: 'ti ti-badges',
text: i18n.ts.roles,
to: '/settings/roles',
active: currentPage.value?.route.name === 'roles',
}, { }, {
icon: 'ti ti-ban', icon: 'ti ti-ban',
text: i18n.ts.muteAndBlock, text: i18n.ts.muteAndBlock,

View File

@ -33,7 +33,27 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #key>{{ i18n.ts.registeredDate }}</template> <template #key>{{ i18n.ts.registeredDate }}</template>
<template #value><MkTime :time="$i.createdAt" mode="detail"/></template> <template #value><MkTime :time="$i.createdAt" mode="detail"/></template>
</MkKeyValue> </MkKeyValue>
<MkFolder>
<template #icon><i class="ti ti-badges"></i></template>
<template #label><SearchLabel>{{ i18n.ts._role.policies }}</SearchLabel></template>
<div class="_gaps_s">
<div v-for="policy in Object.keys($i.policies)" :key="policy">
{{ policy }} ... {{ $i.policies[policy] }}
</div> </div>
</div>
</MkFolder>
</div>
</MkFolder>
</SearchMarker>
<SearchMarker :keywords="['roles']">
<MkFolder>
<template #icon><i class="ti ti-badges"></i></template>
<template #label><SearchLabel>{{ i18n.ts.rolesAssignedToMe }}</SearchLabel></template>
<MkRolePreview v-for="role in $i.roles" :key="role.id" :role="role" :forModeration="false"/>
</MkFolder> </MkFolder>
</SearchMarker> </SearchMarker>
@ -124,6 +144,7 @@ import { definePage } from '@/page.js';
import { reloadAsk } from '@/utility/reload-ask.js'; import { reloadAsk } from '@/utility/reload-ask.js';
import FormSection from '@/components/form/section.vue'; import FormSection from '@/components/form/section.vue';
import { prefer } from '@/preferences.js'; import { prefer } from '@/preferences.js';
import MkRolePreview from '@/components/MkRolePreview.vue';
const $i = signinRequired(); const $i = signinRequired();

View File

@ -10,8 +10,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<SearchKeyword>{{ i18n.ts._settings.preferencesBanner }}</SearchKeyword> <SearchKeyword>{{ i18n.ts._settings.preferencesBanner }}</SearchKeyword>
</MkFeatureBanner> </MkFeatureBanner>
<div class="_gaps_s">
<SearchMarker :keywords="['general']"> <SearchMarker :keywords="['general']">
<MkFolder :defaultOpen="true"> <MkFolder>
<template #label><SearchLabel>{{ i18n.ts.general }}</SearchLabel></template> <template #label><SearchLabel>{{ i18n.ts.general }}</SearchLabel></template>
<div class="_gaps_m"> <div class="_gaps_m">
@ -116,7 +117,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</SearchMarker> </SearchMarker>
<SearchMarker :keywords="['timeline']"> <SearchMarker :keywords="['timeline']">
<MkFolder :defaultOpen="true"> <MkFolder>
<template #label><SearchLabel>{{ i18n.ts.timeline }}</SearchLabel></template> <template #label><SearchLabel>{{ i18n.ts.timeline }}</SearchLabel></template>
<div class="_gaps_s"> <div class="_gaps_s">
@ -173,7 +174,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</SearchMarker> </SearchMarker>
<SearchMarker :keywords="['note']"> <SearchMarker :keywords="['note']">
<MkFolder :defaultOpen="true"> <MkFolder>
<template #label><SearchLabel>{{ i18n.ts.note }}</SearchLabel></template> <template #label><SearchLabel>{{ i18n.ts.note }}</SearchLabel></template>
<div class="_gaps_m"> <div class="_gaps_m">
@ -292,7 +293,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</SearchMarker> </SearchMarker>
<SearchMarker :keywords="['post', 'form']"> <SearchMarker :keywords="['post', 'form']">
<MkFolder :defaultOpen="true"> <MkFolder>
<template #label><SearchLabel>{{ i18n.ts.postForm }}</SearchLabel></template> <template #label><SearchLabel>{{ i18n.ts.postForm }}</SearchLabel></template>
<div class="_gaps_m"> <div class="_gaps_m">
@ -353,7 +354,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</SearchMarker> </SearchMarker>
<SearchMarker :keywords="['notification']"> <SearchMarker :keywords="['notification']">
<MkFolder :defaultOpen="true"> <MkFolder>
<template #label><SearchLabel>{{ i18n.ts.notifications }}</SearchLabel></template> <template #label><SearchLabel>{{ i18n.ts.notifications }}</SearchLabel></template>
<div class="_gaps_m"> <div class="_gaps_m">
@ -393,7 +394,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</SearchMarker> </SearchMarker>
<SearchMarker :keywords="['other']"> <SearchMarker :keywords="['other']">
<MkFolder :defaultOpen="true"> <MkFolder>
<template #label><SearchLabel>{{ i18n.ts.other }}</SearchLabel></template> <template #label><SearchLabel>{{ i18n.ts.other }}</SearchLabel></template>
<div class="_gaps_m"> <div class="_gaps_m">
@ -515,6 +516,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<FormLink to="/settings/deck">{{ i18n.ts.deck }}</FormLink> <FormLink to="/settings/deck">{{ i18n.ts.deck }}</FormLink>
<FormLink to="/settings/custom-css"><template #icon><i class="ti ti-code"></i></template>{{ i18n.ts.customCss }}</FormLink> <FormLink to="/settings/custom-css"><template #icon><i class="ti ti-code"></i></template>{{ i18n.ts.customCss }}</FormLink>
</div> </div>
</div>
</SearchMarker> </SearchMarker>
</template> </template>

View File

@ -1,48 +0,0 @@
<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div class="_gaps_m">
<FormSection first>
<template #label>{{ i18n.ts.rolesAssignedToMe }}</template>
<div class="_gaps_s">
<MkRolePreview v-for="role in $i.roles" :key="role.id" :role="role" :forModeration="false"/>
</div>
</FormSection>
<FormSection>
<template #label>{{ i18n.ts._role.policies }}</template>
<div class="_gaps_s">
<div v-for="policy in Object.keys($i.policies)" :key="policy">
{{ policy }} ... {{ $i.policies[policy] }}
</div>
</div>
</FormSection>
</div>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import FormSection from '@/components/form/section.vue';
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
import { signinRequired } from '@/account.js';
import { definePage } from '@/page.js';
import MkRolePreview from '@/components/MkRolePreview.vue';
const $i = signinRequired();
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePage(() => ({
title: i18n.ts.roles,
icon: 'ti ti-badges',
}));
</script>
<style lang="scss" module>
</style>

View File

@ -57,10 +57,6 @@ const routes: RouteDef[] = [{
path: '/avatar-decoration', path: '/avatar-decoration',
name: 'avatarDecoration', name: 'avatarDecoration',
component: page(() => import('@/pages/settings/avatar-decoration.vue')), component: page(() => import('@/pages/settings/avatar-decoration.vue')),
}, {
path: '/roles',
name: 'roles',
component: page(() => import('@/pages/settings/roles.vue')),
}, { }, {
path: '/privacy', path: '/privacy',
name: 'privacy', name: 'privacy',

View File

@ -271,55 +271,55 @@ export const searchIndexes: SearchIndexItem[] = [
id: '3yCAv0IsZ', id: '3yCAv0IsZ',
children: [ children: [
{ {
id: 'kMJ5laK3n', id: 'AKvDrxSj5',
children: [ children: [
{ {
id: 'EC8J177N8', id: 'cAszhShB0',
label: i18n.ts.uiLanguage, label: i18n.ts.uiLanguage,
keywords: ['language'], keywords: ['language'],
}, },
{ {
id: 'CHKy9gnrh', id: 'apz9AutPm',
label: i18n.ts.overridedDeviceKind, label: i18n.ts.overridedDeviceKind,
keywords: ['device', 'type', 'kind', 'smartphone', 'tablet', 'desktop'], keywords: ['device', 'type', 'kind', 'smartphone', 'tablet', 'desktop'],
}, },
{ {
id: 'snyCQ5oKE', id: 'nqRVtw1xw',
label: i18n.ts.useBlurEffect, label: i18n.ts.useBlurEffect,
keywords: ['blur'], keywords: ['blur'],
}, },
{ {
id: '8j36S4Ev6', id: 'EO5WHBeG8',
label: i18n.ts.useBlurEffectForModal, label: i18n.ts.useBlurEffectForModal,
keywords: ['blur', 'modal'], keywords: ['blur', 'modal'],
}, },
{ {
id: 'cytWLyF1V', id: 'CWpyT9vLK',
label: i18n.ts.showAvatarDecorations, label: i18n.ts.showAvatarDecorations,
keywords: ['avatar', 'icon', 'decoration', 'show'], keywords: ['avatar', 'icon', 'decoration', 'show'],
}, },
{ {
id: 'odi1d2SWy', id: '1wwACqQz1',
label: i18n.ts.alwaysConfirmFollow, label: i18n.ts.alwaysConfirmFollow,
keywords: ['follow', 'confirm', 'always'], keywords: ['follow', 'confirm', 'always'],
}, },
{ {
id: 'm43Eu3Ypg', id: '1x3JNXj8N',
label: i18n.ts.highlightSensitiveMedia, label: i18n.ts.highlightSensitiveMedia,
keywords: ['highlight', 'sensitive', 'nsfw', 'image', 'photo', 'picture', 'media', 'thumbnail'], keywords: ['highlight', 'sensitive', 'nsfw', 'image', 'photo', 'picture', 'media', 'thumbnail'],
}, },
{ {
id: 'cjfAtxMzP', id: 'CfAg0Qekq',
label: i18n.ts.confirmWhenRevealingSensitiveMedia, label: i18n.ts.confirmWhenRevealingSensitiveMedia,
keywords: ['sensitive', 'nsfw', 'media', 'image', 'photo', 'picture', 'attachment', 'confirm'], keywords: ['sensitive', 'nsfw', 'media', 'image', 'photo', 'picture', 'attachment', 'confirm'],
}, },
{ {
id: 'aefexW9fD', id: '4LxdiOMNh',
label: i18n.ts.emojiStyle, label: i18n.ts.emojiStyle,
keywords: ['emoji', 'style', 'native', 'system', 'fluent', 'twemoji'], keywords: ['emoji', 'style', 'native', 'system', 'fluent', 'twemoji'],
}, },
{ {
id: 'p7aiLj6A0', id: '67knC3FWp',
label: i18n.ts.pinnedList, label: i18n.ts.pinnedList,
keywords: ['pinned', 'list'], keywords: ['pinned', 'list'],
}, },
@ -328,35 +328,35 @@ export const searchIndexes: SearchIndexItem[] = [
keywords: ['general'], keywords: ['general'],
}, },
{ {
id: 'khT3n6byY', id: 'hDdVkBFJP',
children: [ children: [
{ {
id: 'DftdlLbNu', id: 'igFN7RIUa',
label: i18n.ts.showFixedPostForm, label: i18n.ts.showFixedPostForm,
keywords: ['post', 'form', 'timeline'], keywords: ['post', 'form', 'timeline'],
}, },
{ {
id: 'FbhoeuRAD', id: '9uxocbLO0',
label: i18n.ts.showFixedPostFormInChannel, label: i18n.ts.showFixedPostFormInChannel,
keywords: ['post', 'form', 'timeline', 'channel'], keywords: ['post', 'form', 'timeline', 'channel'],
}, },
{ {
id: 'rq69GTeB4', id: 'eaT1O1Fao',
label: i18n.ts.collapseRenotes, label: i18n.ts.collapseRenotes,
keywords: ['renote', i18n.ts.collapseRenotesDescription], keywords: ['renote', i18n.ts.collapseRenotesDescription],
}, },
{ {
id: 'omxZk3eET', id: 'jC7LtTnmc',
label: i18n.ts.showGapBetweenNotesInTimeline, label: i18n.ts.showGapBetweenNotesInTimeline,
keywords: ['note', 'timeline', 'gap'], keywords: ['note', 'timeline', 'gap'],
}, },
{ {
id: 'epvi2Nv2G', id: 'p2wlrnwLo',
label: i18n.ts.enableInfiniteScroll, label: i18n.ts.enableInfiniteScroll,
keywords: ['load', 'auto', 'more'], keywords: ['load', 'auto', 'more'],
}, },
{ {
id: 'v26JSj9mH', id: 'eqMBMY6LU',
label: i18n.ts.disableStreamingTimeline, label: i18n.ts.disableStreamingTimeline,
keywords: ['disable', 'streaming', 'timeline'], keywords: ['disable', 'streaming', 'timeline'],
}, },
@ -365,65 +365,65 @@ export const searchIndexes: SearchIndexItem[] = [
keywords: ['timeline'], keywords: ['timeline'],
}, },
{ {
id: '7Uf8ksn3q', id: '2LNjwv1cr',
children: [ children: [
{ {
id: 'tLGyaQagB', id: '6ylW3eIcD',
label: i18n.ts.showNoteActionsOnlyHover, label: i18n.ts.showNoteActionsOnlyHover,
keywords: ['hover', 'show', 'footer', 'action'], keywords: ['hover', 'show', 'footer', 'action'],
}, },
{ {
id: '7W6g8Dcqz', id: 'lBbtAg0Hm',
label: i18n.ts.showClipButtonInNoteFooter, label: i18n.ts.showClipButtonInNoteFooter,
keywords: ['footer', 'action', 'clip', 'show'], keywords: ['footer', 'action', 'clip', 'show'],
}, },
{ {
id: 'uAOoH3LFF', id: 'E9whefUtX',
label: i18n.ts.enableAdvancedMfm, label: i18n.ts.enableAdvancedMfm,
keywords: ['mfm', 'enable', 'show', 'advanced'], keywords: ['mfm', 'enable', 'show', 'advanced'],
}, },
{ {
id: 'eCiyZLC8n', id: 'iQaBbJBva',
label: i18n.ts.showReactionsCount, label: i18n.ts.showReactionsCount,
keywords: ['reaction', 'count', 'show'], keywords: ['reaction', 'count', 'show'],
}, },
{ {
id: '68u9uRmFP', id: 'hgEVGgJa1',
label: i18n.ts.confirmOnReact, label: i18n.ts.confirmOnReact,
keywords: ['reaction', 'confirm'], keywords: ['reaction', 'confirm'],
}, },
{ {
id: 'rHWm4sXIe', id: 'yxehrHZ6x',
label: i18n.ts.loadRawImages, label: i18n.ts.loadRawImages,
keywords: ['image', 'photo', 'picture', 'media', 'thumbnail', 'quality', 'raw', 'attachment'], keywords: ['image', 'photo', 'picture', 'media', 'thumbnail', 'quality', 'raw', 'attachment'],
}, },
{ {
id: '9L2XGJw7e', id: 'DdoFLaSG8',
label: i18n.ts.useReactionPickerForContextMenu, label: i18n.ts.useReactionPickerForContextMenu,
keywords: ['reaction', 'picker', 'contextmenu', 'open'], keywords: ['reaction', 'picker', 'contextmenu', 'open'],
}, },
{ {
id: 'uIMCIK7kG', id: 'fyod6U3QX',
label: i18n.ts.reactionsDisplaySize, label: i18n.ts.reactionsDisplaySize,
keywords: ['reaction', 'size', 'scale', 'display'], keywords: ['reaction', 'size', 'scale', 'display'],
}, },
{ {
id: 'uMckjO9bz', id: 'kmdsnVIQX',
label: i18n.ts.limitWidthOfReaction, label: i18n.ts.limitWidthOfReaction,
keywords: ['reaction', 'size', 'scale', 'display', 'width', 'limit'], keywords: ['reaction', 'size', 'scale', 'display', 'width', 'limit'],
}, },
{ {
id: 'yeghU4qiH', id: 'hacQ9br20',
label: i18n.ts.mediaListWithOneImageAppearance, label: i18n.ts.mediaListWithOneImageAppearance,
keywords: ['attachment', 'image', 'photo', 'picture', 'media', 'thumbnail', 'list', 'size', 'height'], keywords: ['attachment', 'image', 'photo', 'picture', 'media', 'thumbnail', 'list', 'size', 'height'],
}, },
{ {
id: 'yYSOPoAKE', id: 'vE7KeV4U4',
label: i18n.ts.instanceTicker, label: i18n.ts.instanceTicker,
keywords: ['ticker', 'information', 'label', 'instance', 'server', 'host', 'federation'], keywords: ['ticker', 'information', 'label', 'instance', 'server', 'host', 'federation'],
}, },
{ {
id: 'iOHiIu32L', id: '3reoOxO26',
label: i18n.ts.displayOfSensitiveMedia, label: i18n.ts.displayOfSensitiveMedia,
keywords: ['attachment', 'image', 'photo', 'picture', 'media', 'thumbnail', 'nsfw', 'sensitive', 'display', 'show', 'hide', 'visibility'], keywords: ['attachment', 'image', 'photo', 'picture', 'media', 'thumbnail', 'nsfw', 'sensitive', 'display', 'show', 'hide', 'visibility'],
}, },
@ -432,25 +432,25 @@ export const searchIndexes: SearchIndexItem[] = [
keywords: ['note'], keywords: ['note'],
}, },
{ {
id: 'zrJicawH9', id: 'eROFRMtXv',
children: [ children: [
{ {
id: 'iuEuPe6pa', id: 'bezWaWd6M',
label: i18n.ts.keepCw, label: i18n.ts.keepCw,
keywords: ['remember', 'keep', 'note', 'cw'], keywords: ['remember', 'keep', 'note', 'cw'],
}, },
{ {
id: '9WrGgANqN', id: '90ngq28Nx',
label: i18n.ts.rememberNoteVisibility, label: i18n.ts.rememberNoteVisibility,
keywords: ['remember', 'keep', 'note', 'visibility'], keywords: ['remember', 'keep', 'note', 'visibility'],
}, },
{ {
id: 'Cu7ErCM7C', id: 'ERGQVw6ml',
label: i18n.ts.enableQuickAddMfmFunction, label: i18n.ts.enableQuickAddMfmFunction,
keywords: ['mfm', 'enable', 'show', 'advanced', 'picker', 'form', 'function', 'fn'], keywords: ['mfm', 'enable', 'show', 'advanced', 'picker', 'form', 'function', 'fn'],
}, },
{ {
id: 'oQl8xwiyI', id: 'g0otcvWv3',
label: i18n.ts.defaultNoteVisibility, label: i18n.ts.defaultNoteVisibility,
keywords: ['default', 'note', 'visibility'], keywords: ['default', 'note', 'visibility'],
}, },
@ -459,20 +459,20 @@ export const searchIndexes: SearchIndexItem[] = [
keywords: ['post', 'form'], keywords: ['post', 'form'],
}, },
{ {
id: 'xFmAg2tDe', id: 'AWLIP02IT',
children: [ children: [
{ {
id: 'mepqKL5Ow', id: 'rDLJRu99',
label: i18n.ts.useGroupedNotifications, label: i18n.ts.useGroupedNotifications,
keywords: ['group'], keywords: ['group'],
}, },
{ {
id: 'wUuUOEO1g', id: '70WDijfPH',
label: i18n.ts.position, label: i18n.ts.position,
keywords: ['position'], keywords: ['position'],
}, },
{ {
id: '27em8eC8R', id: 'xKUzsSrKy',
label: i18n.ts.stackAxis, label: i18n.ts.stackAxis,
keywords: ['stack', 'axis', 'direction'], keywords: ['stack', 'axis', 'direction'],
}, },
@ -481,45 +481,45 @@ export const searchIndexes: SearchIndexItem[] = [
keywords: ['notification'], keywords: ['notification'],
}, },
{ {
id: 'AzymHsnrp', id: '2E7vdIUQd',
children: [ children: [
{ {
id: 'DFUrEO2DI', id: 'C2iXtZKb3',
label: i18n.ts.squareAvatars, label: i18n.ts.squareAvatars,
keywords: ['avatar', 'icon', 'square'], keywords: ['avatar', 'icon', 'square'],
}, },
{ {
id: 'r9DX60AxL', id: 'DCfJg0bva',
label: i18n.ts.seasonalScreenEffect, label: i18n.ts.seasonalScreenEffect,
keywords: ['effect', 'show'], keywords: ['effect', 'show'],
}, },
{ {
id: 'sJ3fqncSD', id: 'AV0iGW0vg',
label: i18n.ts.openImageInNewTab, label: i18n.ts.openImageInNewTab,
keywords: ['image', 'photo', 'picture', 'media', 'thumbnail', 'new', 'tab'], keywords: ['image', 'photo', 'picture', 'media', 'thumbnail', 'new', 'tab'],
}, },
{ {
id: 'p7s0hwZ8A', id: '5h8vhCX1S',
label: i18n.ts.whenServerDisconnected, label: i18n.ts.whenServerDisconnected,
keywords: ['server', 'disconnect', 'reconnect', 'reload', 'streaming'], keywords: ['server', 'disconnect', 'reconnect', 'reload', 'streaming'],
}, },
{ {
id: 'yCleENWNf', id: 'zZxyXHk3A',
label: i18n.ts.numberOfPageCache, label: i18n.ts.numberOfPageCache,
keywords: ['cache', 'page'], keywords: ['cache', 'page'],
}, },
{ {
id: 'omEy5Q3Ev', id: '7ix3kvMyU',
label: i18n.ts.forceShowAds, label: i18n.ts.forceShowAds,
keywords: ['ad', 'show'], keywords: ['ad', 'show'],
}, },
{ {
id: 'aWitQSBtD', id: '6RxgjmMLN',
label: i18n.ts.hemisphere, label: i18n.ts.hemisphere,
keywords: [], keywords: [],
}, },
{ {
id: 'hUQAXl1H4', id: '5iMpm5rES',
label: i18n.ts.additionalEmojiDictionary, label: i18n.ts.additionalEmojiDictionary,
keywords: ['emoji', 'dictionary', 'additional', 'extra'], keywords: ['emoji', 'dictionary', 'additional', 'extra'],
}, },
@ -528,7 +528,7 @@ export const searchIndexes: SearchIndexItem[] = [
keywords: ['other'], keywords: ['other'],
}, },
{ {
id: 'aSbKFHbOy', id: 'fnR7PRww5',
label: i18n.ts.dataSaver, label: i18n.ts.dataSaver,
keywords: ['datasaver'], keywords: ['datasaver'],
}, },
@ -550,26 +550,31 @@ export const searchIndexes: SearchIndexItem[] = [
children: [ children: [
{ {
id: 'msAcN6u3S', id: 'msAcN6u3S',
label: i18n.ts.accountInfo, label: i18n.ts._role.policies,
keywords: ['account', 'info'], keywords: ['account', 'info'],
}, },
{ {
id: 'ts8DgdnZV', id: 'pbTLsgRO7',
label: i18n.ts.rolesAssignedToMe,
keywords: ['roles'],
},
{
id: 'fQpvZyfLK',
label: i18n.ts.accountMigration, label: i18n.ts.accountMigration,
keywords: ['account', 'move', 'migration'], keywords: ['account', 'move', 'migration'],
}, },
{ {
id: '4BG7nBECm', id: 'xhfur5m2z',
label: i18n.ts.closeAccount, label: i18n.ts.closeAccount,
keywords: ['account', 'close', 'delete', i18n.ts._accountDelete.requestAccountDelete], keywords: ['account', 'close', 'delete', i18n.ts._accountDelete.requestAccountDelete],
}, },
{ {
id: '2qI6ruPgi', id: 'oAXB8zm2U',
label: i18n.ts.experimentalFeatures, label: i18n.ts.experimentalFeatures,
keywords: ['experimental', 'feature', 'flags'], keywords: ['experimental', 'feature', 'flags'],
}, },
{ {
id: 'cIeaax47o', id: '95OjjGSo7',
label: i18n.ts.developer, label: i18n.ts.developer,
keywords: ['developer', 'mode', 'debug'], keywords: ['developer', 'mode', 'debug'],
}, },