mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-28 22:44:35 +02:00
wip
This commit is contained in:
@@ -3559,6 +3559,9 @@ _qr:
|
||||
raw: "テキスト"
|
||||
mfm: "MFM"
|
||||
|
||||
threeDAvatar: "3Dアバター"
|
||||
threeDAvatar_description: "MisskeyWorld / MisskeyRoomsで使用可能なアバターを作成できます。"
|
||||
|
||||
_miWorld:
|
||||
separateRenderingThread: "描画を別スレッドに分離"
|
||||
separateRenderingThread_description: "有効にするとパフォーマンスが向上します。不安定になる場合は無効すると改善する可能性があります。"
|
||||
|
||||
@@ -133,7 +133,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||
</div>
|
||||
</XOverlayPanel>
|
||||
|
||||
<XOverlayPanel v-if="isPlayerInfoOpen && pointedPlayerInfo != null" :isNarrow="isNarrow" :title="room.name" @close="isPlayerInfoOpen = false">
|
||||
<XOverlayPanel v-if="isPlayerInfoOpen && pointedPlayerInfo != null" :isNarrow="isNarrow" :title="pointedPlayerInfo.user != null ? (pointedPlayerInfo.user?.name ?? pointedPlayerInfo.user?.username) : '(anonymous)'" @close="isPlayerInfoOpen = false">
|
||||
<template #icon>
|
||||
<i class="ti ti-user"></i>
|
||||
</template>
|
||||
|
||||
@@ -823,15 +823,6 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||
</MkSwitch>
|
||||
</MkPreferenceContainer>
|
||||
</SearchMarker>
|
||||
|
||||
<SearchMarker :keywords="['avatar']">
|
||||
<MkFolder>
|
||||
<template #icon><i class="ti ti-user"></i></template>
|
||||
<template #label><SearchLabel>{{ i18n.ts._miWorld.avatar }}</SearchLabel></template>
|
||||
|
||||
<MkWorldAvatarManager/>
|
||||
</MkFolder>
|
||||
</SearchMarker>
|
||||
</div>
|
||||
</MkFolder>
|
||||
</SearchMarker>
|
||||
@@ -966,7 +957,6 @@ import MkDisableSection from '@/components/MkDisableSection.vue';
|
||||
import FormLink from '@/components/form/link.vue';
|
||||
import MkLink from '@/components/MkLink.vue';
|
||||
import MkInfo from '@/components/MkInfo.vue';
|
||||
import MkWorldAvatarManager from '@/components/MkWorldAvatarManager.vue';
|
||||
import { store } from '@/store.js';
|
||||
import * as os from '@/os.js';
|
||||
import { misskeyApi } from '@/utility/misskey-api.js';
|
||||
|
||||
@@ -151,6 +151,16 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
<hr>
|
||||
|
||||
<SearchMarker :keywords="['world', 'rooms', 'avatar', '3d']">
|
||||
<MkFolder>
|
||||
<template #icon><i class="ti ti-box"></i></template>
|
||||
<template #label><SearchLabel>{{ i18n.ts.threeDAvatar }}</SearchLabel></template>
|
||||
<template #caption>{{ i18n.ts.threeDAvatar_description }}</template>
|
||||
|
||||
<MkWorldAvatarManager/>
|
||||
</MkFolder>
|
||||
</SearchMarker>
|
||||
|
||||
<SearchMarker :keywords="['qrcode']">
|
||||
<FormLink to="/qr">
|
||||
<template #icon><i class="ti ti-qrcode"></i></template>
|
||||
@@ -184,6 +194,7 @@ import { store } from '@/store.js';
|
||||
import MkInfo from '@/components/MkInfo.vue';
|
||||
import MkTextarea from '@/components/MkTextarea.vue';
|
||||
import { genId } from '@/utility/id.js';
|
||||
import MkWorldAvatarManager from '@/components/MkWorldAvatarManager.vue';
|
||||
|
||||
const $i = ensureSignin();
|
||||
|
||||
|
||||
@@ -13282,6 +13282,14 @@ export interface Locale extends ILocale {
|
||||
*/
|
||||
"mfm": string;
|
||||
};
|
||||
/**
|
||||
* 3Dアバター
|
||||
*/
|
||||
"threeDAvatar": string;
|
||||
/**
|
||||
* MisskeyWorld / MisskeyRoomsで使用可能なアバターを作成できます。
|
||||
*/
|
||||
"threeDAvatar_description": string;
|
||||
"_miWorld": {
|
||||
/**
|
||||
* 描画を別スレッドに分離
|
||||
|
||||
Reference in New Issue
Block a user