1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-11-23 14:46:40 +09:00

enhance(profile): 相互リンク機能の設定画面のデザイン修正 (MisskeyIO#690)

This commit is contained in:
まっちゃとーにゅ 2024-08-14 09:18:46 +09:00 committed by GitHub
parent f415b2ebbe
commit 90be6317e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 8 deletions

View File

@ -2272,7 +2272,7 @@ _profile:
addMutualLinkSection: "Add section"
sectionName: "Section name"
sectionNameNoneDescription: "Do not display the section name"
sectionNameNone: "Hide section name"
sectionNameNone: "Section without name"
_exportOrImport:
allNotes: "All notes"
favoritedNotes: "Favorite notes"

2
locales/index.d.ts vendored
View File

@ -8859,7 +8859,7 @@ export interface Locale extends ILocale {
*/
"sectionNameNoneDescription": string;
/**
*
*
*/
"sectionNameNone": string;
};

View File

@ -2328,7 +2328,7 @@ _profile:
addMutualLinkSection: "セクションを追加"
sectionName: "セクション名"
sectionNameNoneDescription: "セクション名を表示しないようにする"
sectionNameNone: "セクション名を表示しない"
sectionNameNone: "名前が表示されないセクション"
_exportOrImport:
allNotes: "全てのノート"

View File

@ -2256,7 +2256,7 @@ _profile:
addMutualLinkSection: "섹션 추가"
sectionName: "섹션 이름"
sectionNameNoneDescription: "섹션 이름이 표시되지 않도록 합니다."
sectionNameNone: "섹션 이름을 숨기기"
sectionNameNone: "이름이 표시되지 않는 섹션"
_exportOrImport:
allNotes: "모든 노트"
favoritedNotes: "즐겨찾기한 노트"

View File

@ -117,11 +117,12 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkFolder>
<template #label>{{ sectionElement.name || i18n.ts._profile.sectionNameNone }}</template>
<div :class="$style.metadataMargin">
<MkInput v-model="sectionElement.name" :disabled="sectionElement.none" :placeholder="i18n.ts._profile.sectionName" :max="32"></MkInput>
<MkSwitch v-model="sectionElement.none" @update:modelValue="()=>{sectionElement.name = null}">{{ i18n.ts._profile.sectionNameNoneDescription }}</MkSwitch>
<div class="_gaps_s" :class="$style.metadataMargin">
<MkInput v-if="sectionElement.name !== null" v-model="sectionElement.name" :placeholder="i18n.ts._profile.sectionName" :max="32"></MkInput>
<MkSwitch v-model="sectionElement.none" @update:modelValue="()=>{ sectionElement.none ? sectionElement.name = null : sectionElement.name = 'New Section' }">{{ i18n.ts._profile.sectionNameNoneDescription }}</MkSwitch>
<MkButton inline style="margin-right: 8px;" :disabled="sectionElement.mutualLinks.length >= $i.policies.mutualLinkLimit" @click="addMutualLinks(sectionIndex)"><i class="ti ti-plus"></i> {{ i18n.ts._profile.addMutualLink }}</MkButton>
</div>
<Sortable
v-model="sectionElement.mutualLinks"
class="_gaps_s"
@ -248,7 +249,7 @@ function addMutualLinks(index:number) {
function addMutualLinkSections() {
mutualLinkSections.value.push({
name: null,
name: 'New Section',
mutualLinks: [],
});
}