Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix(frontend): チュートリアルを現状に合わせて修正 #586

Merged
merged 5 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG_YOJO.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Feat: システムユーザーのファイル一覧を追加 [#595](https://github.com/yojo-art/cherrypick/pull/595)

### Client
- Fix: チュートリアルを現状に合わせて更新[#586](https://github.com/yojo-art/cherrypick/pull/586)
- Enhance: ノート詳細から前後のHTL/LTLを開く機能を追加 [#572](https://github.com/yojo-art/cherrypick/pull/572)
- Enhance: インポート時にライセンス欄にインポート元を追記する [#573](https://github.com/yojo-art/cherrypick/pull/573)
- Feat: コンパネのファイルに絵文字として利用中ラベルを表示する [#603](https://github.com/yojo-art/cherrypick/pull/603)
Expand Down
34 changes: 34 additions & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6549,6 +6549,10 @@ export interface Locale extends ILocale {
* 接続している他のすべてのサーバーからの投稿を見られます。
*/
"global": string;
/**
* 接続している他のすべてのサーバーからのファイル付き投稿を見られます。
*/
"media": string;
/**
* それぞれのタイムラインは、画面上部でいつでも切り替えられます。
*/
Expand Down Expand Up @@ -6601,6 +6605,36 @@ export interface Locale extends ILocale {
*/
"localOnly": string;
};
"_searchbility": {
/**
* 検索許可の設定
*/
"title": string;
/**
* ノートを表示できる相手を制限できます。
*/
"description": string;
/**
* すべてのユーザーが検索できます
*/
"public": string;
/**
* フォロワーと反応した人が検索できます
*/
"followers": string;
/**
* 反応した人が検索できます
*/
"reactedOnly": string;
/**
* 自分のみが検索できます
*/
"private": string;
/**
* リモートサーバーでは適用されない可能性があります。
*/
"notApplyRemote": string;
};
"_cw": {
/**
* 内容を隠す(CW)
Expand Down
9 changes: 9 additions & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1656,6 +1656,7 @@ _initialTutorial:
local: "このサーバーにいるユーザー全員の投稿を見られます。"
social: "ホームタイムラインとローカルタイムラインの投稿が両方表示されます。"
global: "接続している他のすべてのサーバーからの投稿を見られます。"
media: "接続している他のすべてのサーバーからのファイル付き投稿を見られます。"
description2: "それぞれのタイムラインは、画面上部でいつでも切り替えられます。"
description3: "その他にも、リストタイムラインやチャンネルタイムラインなどがあります。詳しくは{link}をご覧ください。"
_postNote:
Expand All @@ -1670,6 +1671,14 @@ _initialTutorial:
doNotSendConfidencialOnDirect1: "機密情報は送信する際は注意してください。"
doNotSendConfidencialOnDirect2: "送信先のサーバーの管理者は投稿内容を見ることが可能なので、信頼できないサーバーのユーザーにダイレクト投稿を送信する場合は、機密情報の扱いに注意が必要です。"
localOnly: "他のサーバーに投稿を連合しません。上記の公開範囲に関わらず、他のサーバーのユーザーは、この設定がついたノートを直接閲覧することができなくなります。"
_searchbility:
title: "検索許可の設定"
description: "ノートを表示できる相手を制限できます。"
public: "すべてのユーザーが検索できます"
followers: "フォロワーと反応した人が検索できます"
reactedOnly: "反応した人が検索できます"
private: "自分のみが検索できます"
notApplyRemote: "リモートサーバーでは適用されない可能性があります。"
_cw:
title: "内容を隠す(CW)"
description: "本文のかわりに「注釈」に書いた内容が表示されます。「もっと見る」を押すと本文が表示されます。"
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/components/MkTutorialDialog.Note.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const exampleNote = reactive<Misskey.entities.Note>({
text: 'just setting up my crpk',
cw: null,
visibility: 'public',
searchableBy: 'public',
localOnly: false,
reactionAcceptance: null,
renoteCount: 0,
Expand Down
18 changes: 16 additions & 2 deletions packages/frontend/src/components/MkTutorialDialog.PostNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,21 @@ SPDX-License-Identifier: AGPL-3.0-only
<b>{{ i18n.ts._initialTutorial._postNote._visibility.doNotSendConfidencialOnDirect1 }}</b> {{ i18n.ts._initialTutorial._postNote._visibility.doNotSendConfidencialOnDirect2 }}
</MkInfo>
</div>
<div><i class="ti ti-rocket-off"></i> <b>{{ i18n.ts._visibility.disableFederation }}</b> … {{ i18n.ts._initialTutorial._postNote._visibility.localOnly }}</div>
</div>
</MkFormSection>
<MkFormSection>
<template #label>{{ i18n.ts._initialTutorial._postNote._searchbility.title }}</template>
<div class="_gaps">
<div>{{ i18n.ts._initialTutorial._postNote._searchbility.description }}</div>
<div><i class="ti ti-world-search"></i> <b>{{ i18n.ts._searchbility.public }}</b> … {{ i18n.ts._initialTutorial._postNote._searchbility.public }}</div>
<div><i class="ti ti-user-search"></i> <b>{{ i18n.ts._searchbility.followersAndReacted }}</b> … {{ i18n.ts._initialTutorial._postNote._searchbility.followers }}</div>
<div><i class="ti ti-lock-search"></i> <b>{{ i18n.ts._searchbility.reactedOnly }}</b> … {{ i18n.ts._initialTutorial._postNote._searchbility.reactedOnly }}</div>
<div class="_gaps_s">
<div><i class="ti ti-mail-search"></i> <b>{{ i18n.ts._searchbility.private }}</b> … {{ i18n.ts._initialTutorial._postNote._searchbility.private }}</div>
</div>
<MkInfo :warn="true">
<b>{{ i18n.ts._initialTutorial._postNote._searchbility.notApplyRemote }}</b>
</MkInfo>
</div>
</MkFormSection>
<MkFormSection>
Expand Down Expand Up @@ -64,7 +78,7 @@ const exampleCWNote = reactive<Misskey.entities.Note>({
text: i18n.ts._initialTutorial._postNote._cw._exampleNote.note,
cw: i18n.ts._initialTutorial._postNote._cw._exampleNote.cw,
visibility: 'public',
penginn-net marked this conversation as resolved.
Show resolved Hide resolved
localOnly: false,
searchableBy: 'public',
reactionAcceptance: null,
renoteCount: 0,
repliesCount: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const exampleNote = reactive<Misskey.entities.Note>({
text: i18n.ts._initialTutorial._howToMakeAttachmentsSensitive._exampleNote.note,
cw: null,
visibility: 'public',
searchableBy: 'public',
localOnly: false,
reactionAcceptance: null,
renoteCount: 0,
Expand Down
Loading