diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-03 11:02:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-03 11:02:20 +0900 |
| commit | 6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c (patch) | |
| tree | b6820cddaf963fe0489c7f1c44fd9324022c10e4 /packages/frontend/src/pages/settings/preferences.vue | |
| parent | perf(frontend): tweak css performance (diff) | |
| download | misskey-6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c.tar.gz misskey-6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c.tar.bz2 misskey-6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c.zip | |
コントロールパネルの検索 (#16343)
* Update settings.vue
* Update settings.vue
* Update settings.vue
* Update settings.vue
* Update settings.vue
* Update performance.vue
* Update performance.vue
* Update performance.vue
* Update external-services.vue
* wip
* wip
* Update security.vue
* Update settings.vue
* Update CHANGELOG.md
* wip
* Update moderation.vue
* wip
* Update branding.vue
* wip
* Update email-settings.vue
* Update system-webhook.vue
* Update MkSuperMenu.vue
* Update index.vue
Diffstat (limited to 'packages/frontend/src/pages/settings/preferences.vue')
| -rw-r--r-- | packages/frontend/src/pages/settings/preferences.vue | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/packages/frontend/src/pages/settings/preferences.vue b/packages/frontend/src/pages/settings/preferences.vue index 04f9b0512b..7ee5f151fa 100644 --- a/packages/frontend/src/pages/settings/preferences.vue +++ b/packages/frontend/src/pages/settings/preferences.vue @@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only <SearchMarker path="/settings/preferences" :label="i18n.ts.preferences" :keywords="['general', 'preferences']" icon="ti ti-adjustments"> <div class="_gaps_m"> <MkFeatureBanner icon="/client-assets/gear_3d.png" color="#00ff9d"> - <SearchKeyword>{{ i18n.ts._settings.preferencesBanner }}</SearchKeyword> + <SearchText>{{ i18n.ts._settings.preferencesBanner }}</SearchText> </MkFeatureBanner> <div class="_gaps_s"> @@ -44,7 +44,7 @@ SPDX-License-Identifier: AGPL-3.0-only <SearchMarker :keywords="['realtimemode']"> <MkSwitch v-model="realtimeMode"> <template #label><i class="ti ti-bolt"></i> <SearchLabel>{{ i18n.ts.realtimeMode }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts._settings.realtimeMode_description }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts._settings.realtimeMode_description }}</SearchText></template> </MkSwitch> </SearchMarker> @@ -53,7 +53,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="pollingInterval"> <MkRange v-model="pollingInterval" :min="1" :max="3" :step="1" easing :showTicks="true" :textConverter="(v) => v === 1 ? i18n.ts.low : v === 2 ? i18n.ts.middle : v === 3 ? i18n.ts.high : ''"> <template #label><SearchLabel>{{ i18n.ts._settings.contentsUpdateFrequency }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts._settings.contentsUpdateFrequency_description }}</SearchKeyword><br><SearchKeyword>{{ i18n.ts._settings.contentsUpdateFrequency_description2 }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts._settings.contentsUpdateFrequency_description }}</SearchText><br><SearchText>{{ i18n.ts._settings.contentsUpdateFrequency_description2 }}</SearchText></template> <template #prefix><i class="ti ti-player-play"></i></template> <template #suffix><i class="ti ti-player-track-next"></i></template> </MkRange> @@ -165,7 +165,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="collapseRenotes"> <MkSwitch v-model="collapseRenotes"> <template #label><SearchLabel>{{ i18n.ts.collapseRenotes }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts.collapseRenotesDescription }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts.collapseRenotesDescription }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> @@ -449,7 +449,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div class="_gaps_m"> <MkFeatureBanner icon="/client-assets/mens_room_3d.png" color="#0011ff"> - <SearchKeyword>{{ i18n.ts._settings.accessibilityBanner }}</SearchKeyword> + <SearchText>{{ i18n.ts._settings.accessibilityBanner }}</SearchText> </MkFeatureBanner> <div class="_gaps_s"> @@ -489,7 +489,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="enablePullToRefresh"> <MkSwitch v-model="enablePullToRefresh"> <template #label><SearchLabel>{{ i18n.ts._settings.enablePullToRefresh }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts._settings.enablePullToRefresh_description }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts._settings.enablePullToRefresh_description }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> @@ -571,7 +571,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="animation"> <MkSwitch :modelValue="!reduceAnimation" @update:modelValue="v => reduceAnimation = !v"> <template #label><SearchLabel>{{ i18n.ts._settings.uiAnimations }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts.turnOffToImprovePerformance }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts.turnOffToImprovePerformance }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> @@ -580,7 +580,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="useBlurEffect"> <MkSwitch v-model="useBlurEffect"> <template #label><SearchLabel>{{ i18n.ts.useBlurEffect }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts.turnOffToImprovePerformance }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts.turnOffToImprovePerformance }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> @@ -589,7 +589,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="useBlurEffectForModal"> <MkSwitch v-model="useBlurEffectForModal"> <template #label><SearchLabel>{{ i18n.ts.useBlurEffectForModal }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts.turnOffToImprovePerformance }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts.turnOffToImprovePerformance }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> @@ -598,7 +598,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="enableHighQualityImagePlaceholders"> <MkSwitch v-model="enableHighQualityImagePlaceholders"> <template #label><SearchLabel>{{ i18n.ts._settings.enableHighQualityImagePlaceholders }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts.turnOffToImprovePerformance }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts.turnOffToImprovePerformance }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> @@ -607,7 +607,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkPreferenceContainer k="useStickyIcons"> <MkSwitch v-model="useStickyIcons"> <template #label><SearchLabel>{{ i18n.ts._settings.useStickyIcons }}</SearchLabel></template> - <template #caption><SearchKeyword>{{ i18n.ts.turnOffToImprovePerformance }}</SearchKeyword></template> + <template #caption><SearchText>{{ i18n.ts.turnOffToImprovePerformance }}</SearchText></template> </MkSwitch> </MkPreferenceContainer> </SearchMarker> |