diff --git a/content/.README.md b/content/.README.md new file mode 100644 index 00000000..b2e99ad9 --- /dev/null +++ b/content/.README.md @@ -0,0 +1,9 @@ +# **DO NOT edit locale files** except `ja-JP` directory. + +When you add files/text to the ja-JP directory (of misskey-dev/misskey-hub), it will automatically be applied to other language files. +Translations added in ja-JP file should contain the original Japanese strings. + +# 移行作業 + +- `.docs-legacy/`内にvuepress時代のファイルを格納 +- `docs/`内にディレクトリ構造を作成中 \ No newline at end of file diff --git a/content/blog/2021-11-05-mac2021.md b/content/blog/2021-11-05-mac2021.md index 103d4bec..0a7c446d 100644 --- a/content/blog/2021-11-05-mac2021.md +++ b/content/blog/2021-11-05-mac2021.md @@ -1,4 +1,5 @@ --- +date: 2021-11-05 description: '2021年も恒例のMisskey Advent Calendarが企画されています。' --- diff --git a/content/blog/2021-12-01-inside-misskey-hub.md b/content/blog/2021-12-01-inside-misskey-hub.md index de80cd25..70520a25 100644 --- a/content/blog/2021-12-01-inside-misskey-hub.md +++ b/content/blog/2021-12-01-inside-misskey-hub.md @@ -1,10 +1,11 @@ --- +date: 2021-12-01 description: 'Misskey Advent Calendar 2021 1日目の記事です。Misskey Hubの実装について紹介します。' --- # インサイド Misskey Hub -::: tip +:::tip この記事は、[Misskey Advent Calendar 2021](https://adventar.org/calendars/6273) 1日目の記事です。 ::: @@ -27,7 +28,7 @@ description: 'Misskey Advent Calendar 2021 1日目の記事です。Misskey Hub Misskey Hubの実装について理解するためには、いくつかの前提知識が必要となるので、まずそれらの説明をします。ひとつめは静的サイトについて、ふたつめはSSGについてです。それでは始めましょう🚀 ## 静的サイト is 何 -::: warning +:::warning **性的サイト**と誤変換しやすいので注意 ::: @@ -40,7 +41,7 @@ Misskey Hubは、Misskey Hub内のMisskey Hub説明ページにもあるよう 静的なサイトは逆に、そういったリッチなことは行わず、**予め用意したコンテンツをどのユーザーに対しても同じように表示するだけのサイト**です。Misskey Hubは(サイト更新を除けば)誰がいつ見ても同じ内容なので、静的サイトです。 -::: tip +:::tip 技術的な話になりますが、静的と言っても、静的なのは「サーバーから」送られてくる内容だけであって、JavaScriptを使ってブラウザ上で動的にページの内容を変えることは可能です。 例えばMisskey Hubでは、サイドバーに表示されるMisskeyや藍ちゃんの広告はページを訪れるたびにランダムで変わるようになっています。\ さらに言うと、静的サイト内に別の動的サイトを埋め込んで表示することも可能です。これを利用して、将来的にはそのページに対するMisskeyのコメントタイムラインをページに表示する、といったことも実装されるかもしれません。 @@ -62,7 +63,7 @@ Misskey Hubは、Misskey Hub内のMisskey Hub説明ページにもあるよう 動的サイトを運営する際に発生するそのような諸々の心配から解放されるというのは非常に大きなメリットです。つまり、金銭面においても精神面においても、**ゼロコスト**でMisskey Hubを運用できます。 -::: details さらに技術的な話(危険) +:::details さらに技術的な話(危険) ここまで言っておいてなんですが、先ほど言った > もちろんMisskeyは動的サイトということになります。 @@ -120,7 +121,7 @@ Misskey Hubもプラグイン機能を使っていて、「関連するページ さらに、MFMを実際に書いて試せるプレイグラウンド機能や、APIリファレンスにおけるAPIコンソールなども今後実装予定です。 -::: tip +:::tip 「関連するページ」「最近更新されたページ」は我ながら便利機能だと思っているので、Misskey Hub以外のvuepressを採用したサイトでも使えるようにnpmで一般公開しようかとも考えています。 ::: @@ -149,15 +150,15 @@ vuepress標準の機能で、右上にあるやつです。各ページの見出 ## ページ 各ページはMarkdown(MFMみたいなもの(いや本来はMFMが「Markdownのようなもの」という立ち位置だけれども))というマークアップ言語で書かれています。Markdownを使うことで、簡単に見出し、リンク、画像、表といった要素を表現できるほか、 -::: tip +:::tip こんな ::: -::: warning +:::warning 感じの ::: -::: danger +:::danger メッセージ ::: @@ -195,7 +196,7 @@ Misskey Hub内のMisskey Hub説明ページにもあるように、Misskey Hub 各インスタンス紹介は、インスタンス側で用意されたプロフィールレンダリングページをiframeというHTMLの機能で埋め込んで表示するようになっています。したがって、一度Misskey Hubにインスタンスを登録してしまえば、インスタンスの名前、説明、バナー画像といった情報を更新した場合でもリアルタイムでインスタンス一覧に反映されます。 -::: tip +:::tip インスタンス一覧へ掲載するインスタンスを募集しています。お気軽にご連絡ください🤗 ::: @@ -215,7 +216,7 @@ Misskey Hubにおいては、GitHub ActionsというGitHubの機能を利用し GitHub Pagesは前述した「静的サイトを提供してくれる機能」です。GitHubのインフラストラクチャ上で動くため、いちどデプロイしてしまえば、あとは何の心配もなくMisskey Hubが提供され続けます。 -::: warning +:::warning 「何の心配もなく」はちょっと言い過ぎたかもしれません。というのも、(強いていうと)ひとつだけ心配があって、それはドメインです。Misskey Hubはmisskey-hub.netというドメインで提供されていますが、これは私が用意したものです。そのため、もし万が一私がドメインの更新を忘れるとMisskey Hubに繋がらなくなりますが、そこは𝑇𝑟𝑢𝑠𝑡 𝑚𝑒 ::: @@ -238,7 +239,7 @@ SSGはMisskey Hubのようなドキュメントサイトだけでなく、ブロ 静的サイトはいいぞ。vuepressはいいぞ。Misskey Hubに幸あれ🙏 -::: details Webで記事を公開する際に必ず記述しなければならないと法令で定められている言葉 +:::details Webで記事を公開する際に必ず記述しなければならないと法令で定められている言葉 > いかがでしたか? ::: @@ -256,6 +257,6 @@ SSGはMisskey Hubのようなドキュメントサイトだけでなく、ブロ 栄養があるし、加熱不要で調理も楽(ハサミで切って味噌に突っ込んでチンするだけで味噌汁できる) -::: danger +:::danger ただし加熱しないと風味が強すぎ、ちょっとしたワサビ食べてるみたいになるので多少訓練が必要 ::: diff --git a/content/blog/2022-02-11-inside-mfm.md b/content/blog/2022-02-11-inside-mfm.md index 9f661c03..7647320f 100644 --- a/content/blog/2022-02-11-inside-mfm.md +++ b/content/blog/2022-02-11-inside-mfm.md @@ -1,4 +1,5 @@ --- +date: 2022-02-11 description: 'MFMで使われている技術や考え方について紹介します。' --- diff --git a/content/blog/2023-02-08-contribute-to-earn.md b/content/blog/2023-02-08-contribute-to-earn.md index 04468bc9..0bebbf1e 100644 --- a/content/blog/2023-02-08-contribute-to-earn.md +++ b/content/blog/2023-02-08-contribute-to-earn.md @@ -1,4 +1,5 @@ --- +date: 2023-02-08 description: 'Misskey開発に貢献すると報奨金がもらえるキャンペーンを行います。 We offer campaigns you to recieve rewards for contributing to the development of Misskey.' --- @@ -8,7 +9,7 @@ We offer campaigns you to recieve rewards for contributing to the development of -::: tip +:::tip 条件や報奨金の額は、予告なく変更になる場合があります。 Conditions and reward amounts are subject to change without notice. @@ -16,7 +17,7 @@ Conditions and reward amounts are subject to change without notice. In addition to those, benefits are being paid at irregular intervals based on contributions. ::: -::: warning +:::warning 報奨金の原資はパトロンの皆様からの寄付で成り立っています。 Rewards come from donations from patrons. diff --git a/content/en-US/docs/admin/cdn.md b/content/en-US/.docs-legacy/admin/cdn.md similarity index 98% rename from content/en-US/docs/admin/cdn.md rename to content/en-US/.docs-legacy/admin/cdn.md index fad298f6..fe15e56e 100644 --- a/content/en-US/docs/admin/cdn.md +++ b/content/en-US/.docs-legacy/admin/cdn.md @@ -12,6 +12,6 @@ The Misskey API cannot be cached. You need to configure the following settings in your CDN - Cache all requests except `/api/*`. -::: tip +:::tip You don't need to clear the cache when you update Misskey. :::: diff --git a/content/en-US/docs/admin/default-reaction.md b/content/en-US/.docs-legacy/admin/default-reaction.md similarity index 100% rename from content/en-US/docs/admin/default-reaction.md rename to content/en-US/.docs-legacy/admin/default-reaction.md diff --git a/content/en-US/docs/admin/emoji.md b/content/en-US/.docs-legacy/admin/emoji.md similarity index 99% rename from content/en-US/docs/admin/emoji.md rename to content/en-US/.docs-legacy/admin/emoji.md index 257cbc39..ef3fb42d 100644 --- a/content/en-US/docs/admin/emoji.md +++ b/content/en-US/.docs-legacy/admin/emoji.md @@ -20,7 +20,7 @@ If you have an image file that you would like to turn into a custom emoji you ca This works just like attaching files to a note: You can choose to upload a new file, pick a file from your Misskey drive or upload a file from another URL. -::: danger +:::danger When you import emoji from your drive, the file will remain inside your drive. Misskey does not make a copy of this file so if you delete it, the emoji will be broken. ::: @@ -32,7 +32,7 @@ The emoji will be added to the instance and you will then be able to edit or del Emojis can be imported in bulk as packed ZIP files with a special format. This ability can be found in the three dots menu in the top right corner of the custom emoji menu. -::: warning +:::warning Bulk emoji import may overwrite existing emoji or otherwise mess up your instance. Be sure to only import emoji from trusted sources, ideally only ones you exported yourself. ::: @@ -89,7 +89,7 @@ The properties of an emoji can be edited by clicking it in the list of local emo When you click on a custom emoji, a dialog for editing the properties will open. This dialog will also allow you to delete an emoji. -::: danger +:::danger When you delete a custom emoji, old notes that contain it will still have the text name of the emoji in it. The emoji will no longer be rendered correctly. ::: diff --git a/content/en-US/docs/admin/nginx.md b/content/en-US/.docs-legacy/admin/nginx.md similarity index 100% rename from content/en-US/docs/admin/nginx.md rename to content/en-US/.docs-legacy/admin/nginx.md diff --git a/content/en-US/docs/admin/push-docker-hub.md b/content/en-US/.docs-legacy/admin/push-docker-hub.md similarity index 95% rename from content/en-US/docs/admin/push-docker-hub.md rename to content/en-US/.docs-legacy/admin/push-docker-hub.md index 2f6e64a9..8e3d386e 100644 --- a/content/en-US/docs/admin/push-docker-hub.md +++ b/content/en-US/.docs-legacy/admin/push-docker-hub.md @@ -1,5 +1,5 @@ # How to use GitHub Actions to push to Docker Hub -::: warning +:::warning Sorry, this page is not translated yet. If you can, please edit this page to translate the [Japanese version](/docs/admin/push-docker-hub.md). Until then, try using a machine translator. diff --git a/content/en-US/docs/admin/troubleshooting.md b/content/en-US/.docs-legacy/admin/troubleshooting.md similarity index 94% rename from content/en-US/docs/admin/troubleshooting.md rename to content/en-US/.docs-legacy/admin/troubleshooting.md index 994b28e6..467bca2c 100644 --- a/content/en-US/docs/admin/troubleshooting.md +++ b/content/en-US/.docs-legacy/admin/troubleshooting.md @@ -1,6 +1,6 @@ # Troubleshooting guide -::: warning +:::warning Sorry, this page is not translated yet. If you can, please edit this page to translate the [Japanese version](/docs/admin/troubleshooting.html). Until then, try using a machine translator. diff --git a/content/en-US/docs/api/app.md b/content/en-US/.docs-legacy/api/app.md similarity index 100% rename from content/en-US/docs/api/app.md rename to content/en-US/.docs-legacy/api/app.md diff --git a/content/en-US/docs/api/common.json5 b/content/en-US/.docs-legacy/api/common.json5 similarity index 100% rename from content/en-US/docs/api/common.json5 rename to content/en-US/.docs-legacy/api/common.json5 diff --git a/content/en-US/docs/api/index.md b/content/en-US/.docs-legacy/api/index.md similarity index 98% rename from content/en-US/docs/api/index.md rename to content/en-US/.docs-legacy/api/index.md index 68574574..9e1d3c39 100644 --- a/content/en-US/docs/api/index.md +++ b/content/en-US/.docs-legacy/api/index.md @@ -6,7 +6,7 @@ description: 'Misskey exposes an API that you can use to develop Misskey clients Misskey exposes an API that you can use to develop Misskey clients, Misskey-connected web services, bots, etc. ("Applications"). We also have a streaming API, so you can create applications with real-time capabilities. -::: tip +:::tip By using the official Misskey SDK or third party libraries, you can use the API more conveniently, for example by simplifying some of the steps described in this document. See [here](TODO) for more information about libraries. ::: @@ -18,7 +18,7 @@ This document will walk you through the process of obtaining an access token and The API generally requires an access token to make a request. An access token is a set of credentials associated with a user, which identifies the user using the API and controls what operations each access token is authorised to perform. -::: tip +:::tip There is a one-to-many relationship between a user and the access token associated with that user, and multiple access tokens can be issued for a given user. ::: @@ -27,14 +27,14 @@ You can easily [obtain an access token for yourself](#Manually-issue-an-access-t ### Manually issue an access token You can issue your own access token in Misskey Web under 'Settings > API'. -::: danger +:::danger Please do not share your access token with anyone. ::: ### Request an access token to be issued To obtain an access token for a user of the application ( simply "the user"), you can request it to be issued in the following way. -::: tip +:::tip The method described below is called MiAuth, ant it issues an instant access token without creating an app. You can still [create an app to obtain access token](./app.md). @@ -43,7 +43,7 @@ You can still [create an app to obtain access token](./app.md). #### Step 1 Generate a UUID. This will be referred to as the **session ID** from now on. -::: danger +:::danger This session ID should be generated each time and should not be reused. ::: @@ -67,7 +67,7 @@ You can also set a few options as query parameters to the URL: | `callback` | The URL to which the user will be redirected after authentication, with the session ID added to the redirect with the query parameter `session`. | | `permission` | The permissions that the application requires.
List the permissions to be requested, separated by `,`. The list of permissions can be found [here](TODO). | -::: tip Example +:::tip Example ```:no-line-numbers https://misskey.io/miauth/c1f6d42b-468b-4fd2-8274-e58abdedef6f?name=MyApp&callback=https%3A%2F%2Fmyapp.example.com%2Fcallback&permisson=write:notes,write:following,read:drive ``` @@ -94,7 +94,7 @@ The properties included in the response are as follows: ## Using the API Once you have your API access token, you can use the API by making requests to the various endpoints. -::: tip +:::tip - All HTTP APIs are POST, and both request and response are in JSON format (excluding drive/files/create). - Specify `Content-Type: application/json` in the request header. @@ -115,12 +115,12 @@ The access token is included in the request body JSON at the parameter `i`. For more information on the API, see the [API Reference](./endpoints.html). -::: warning +:::warning Misskey does not use REST. ::: In addition to the HTTP API, Misskey also provides a streaming API. More information about the streaming API can be found [here](./streaming/). -::: tip +:::tip Your Misskey instance also provides API documentation at `/api-doc`. ::: diff --git a/content/en-US/docs/api/streaming/channel/global-timeline.md b/content/en-US/.docs-legacy/api/streaming/channel/global-timeline.md similarity index 100% rename from content/en-US/docs/api/streaming/channel/global-timeline.md rename to content/en-US/.docs-legacy/api/streaming/channel/global-timeline.md diff --git a/content/en-US/docs/api/streaming/channel/home-timeline.md b/content/en-US/.docs-legacy/api/streaming/channel/home-timeline.md similarity index 100% rename from content/en-US/docs/api/streaming/channel/home-timeline.md rename to content/en-US/.docs-legacy/api/streaming/channel/home-timeline.md diff --git a/content/en-US/docs/api/streaming/channel/hybrid-timeline.md b/content/en-US/.docs-legacy/api/streaming/channel/hybrid-timeline.md similarity index 100% rename from content/en-US/docs/api/streaming/channel/hybrid-timeline.md rename to content/en-US/.docs-legacy/api/streaming/channel/hybrid-timeline.md diff --git a/content/en-US/docs/api/streaming/channel/index.md b/content/en-US/.docs-legacy/api/streaming/channel/index.md similarity index 100% rename from content/en-US/docs/api/streaming/channel/index.md rename to content/en-US/.docs-legacy/api/streaming/channel/index.md diff --git a/content/en-US/docs/api/streaming/channel/local-timeline.md b/content/en-US/.docs-legacy/api/streaming/channel/local-timeline.md similarity index 100% rename from content/en-US/docs/api/streaming/channel/local-timeline.md rename to content/en-US/.docs-legacy/api/streaming/channel/local-timeline.md diff --git a/content/en-US/docs/api/streaming/channel/main.md b/content/en-US/.docs-legacy/api/streaming/channel/main.md similarity index 100% rename from content/en-US/docs/api/streaming/channel/main.md rename to content/en-US/.docs-legacy/api/streaming/channel/main.md diff --git a/content/en-US/docs/api/streaming/index.md b/content/en-US/.docs-legacy/api/streaming/index.md similarity index 99% rename from content/en-US/docs/api/streaming/index.md rename to content/en-US/.docs-legacy/api/streaming/index.md index ee23fd0e..22fa0ff9 100644 --- a/content/en-US/docs/api/streaming/index.md +++ b/content/en-US/.docs-legacy/api/streaming/index.md @@ -4,7 +4,7 @@ description: 'The streaming API provides real-time information (e.g., new posts # Streaming API -::: tip +:::tip You should read the [Misskey API documentation](../index.md) first. ::: @@ -24,7 +24,7 @@ where - `{host}` is the host of the instance you want to connect to. - `{token}` is the users access token. -::: tip +:::tip You can also connect without the access token, but this will limit the information you receive and operations you can perform. ::: @@ -38,7 +38,7 @@ To receive such events, you need to join a **channel** on the stream, as describ Misskey's streaming API has the concept of channels. This is a mechanism for separating the information to be sent and received. By joining channels on the stream, you will be able to receive various kinds of information and send information. -::: tip +:::tip You can join multiple channels simultaneously on a single stream connection. ::: @@ -65,7 +65,7 @@ where - `id` is an arbitrary ID for interacting with that channel. This is necessary to identify which channel the message is coming from, because a stream contains multiple channels. This ID can be something like a UUID or a random number. - `params` are parameters required when joining a channel. Different channels require different parameters when connecting. When connecting to a channel that does not require parameters, this property can be omitted. -::: tip +:::tip The ID is not per channel but per channel connection, because a channel may be needed multiple times but with different parameters. ::: diff --git a/content/en-US/docs/api/streaming/note-capture-events.md b/content/en-US/.docs-legacy/api/streaming/note-capture-events.md similarity index 100% rename from content/en-US/docs/api/streaming/note-capture-events.md rename to content/en-US/.docs-legacy/api/streaming/note-capture-events.md diff --git a/content/en-US/docs/donate.md b/content/en-US/.docs-legacy/donate.md similarity index 100% rename from content/en-US/docs/donate.md rename to content/en-US/.docs-legacy/donate.md diff --git a/content/en-US/docs/faq.md b/content/en-US/.docs-legacy/faq.md similarity index 100% rename from content/en-US/docs/faq.md rename to content/en-US/.docs-legacy/faq.md diff --git a/content/en-US/docs/features/ads.md b/content/en-US/.docs-legacy/features/ads.md similarity index 98% rename from content/en-US/docs/features/ads.md rename to content/en-US/.docs-legacy/features/ads.md index 2948e6f0..6925e951 100644 --- a/content/en-US/docs/features/ads.md +++ b/content/en-US/.docs-legacy/features/ads.md @@ -3,7 +3,7 @@ Misskey can display ads in the instance timeline and other places if enabled by the instance administrator. You can reduce how often an ad is shown by clicking in the upper right corner of it. -::: tip +:::tip If the total number of ads being shown on the instance is small then an ad may still be shown to you often even after you choose to reduce how often it is displayed. ::: diff --git a/content/en-US/docs/features/antenna.md b/content/en-US/.docs-legacy/features/antenna.md similarity index 100% rename from content/en-US/docs/features/antenna.md rename to content/en-US/.docs-legacy/features/antenna.md diff --git a/content/en-US/docs/features/charts.md b/content/en-US/.docs-legacy/features/charts.md similarity index 100% rename from content/en-US/docs/features/charts.md rename to content/en-US/.docs-legacy/features/charts.md diff --git a/content/en-US/docs/features/clip.md b/content/en-US/.docs-legacy/features/clip.md similarity index 100% rename from content/en-US/docs/features/clip.md rename to content/en-US/.docs-legacy/features/clip.md diff --git a/content/en-US/docs/features/custom-emoji.md b/content/en-US/.docs-legacy/features/custom-emoji.md similarity index 100% rename from content/en-US/docs/features/custom-emoji.md rename to content/en-US/.docs-legacy/features/custom-emoji.md diff --git a/content/en-US/docs/features/deck.md b/content/en-US/.docs-legacy/features/deck.md similarity index 100% rename from content/en-US/docs/features/deck.md rename to content/en-US/.docs-legacy/features/deck.md diff --git a/content/en-US/docs/features/drive.md b/content/en-US/.docs-legacy/features/drive.md similarity index 98% rename from content/en-US/docs/features/drive.md rename to content/en-US/.docs-legacy/features/drive.md index 438b8ac8..97d67bb4 100644 --- a/content/en-US/docs/features/drive.md +++ b/content/en-US/.docs-legacy/features/drive.md @@ -2,7 +2,7 @@ Drive is a feature that allows you to manage your files on Misskey. -::: tip +:::tip Technically speaking, the drive can be seen as an interface where all the files are centrally managed on Misskey's system, which is also open to users. ::: @@ -12,7 +12,7 @@ Files uploaded to the drive can be downloaded at any time, or files can be reuse You can also create folders on your drive to organize multiple files together. -::: warning +:::warning At the moment, when you delete a file from your drive, **all the content (notes, pages, etc.)** attached to that file will also be deleted. ::: diff --git a/content/en-US/docs/features/favorite.md b/content/en-US/.docs-legacy/features/favorite.md similarity index 100% rename from content/en-US/docs/features/favorite.md rename to content/en-US/.docs-legacy/features/favorite.md diff --git a/content/en-US/docs/features/follow.md b/content/en-US/.docs-legacy/features/follow.md similarity index 100% rename from content/en-US/docs/features/follow.md rename to content/en-US/.docs-legacy/features/follow.md diff --git a/content/en-US/docs/features/index.md b/content/en-US/.docs-legacy/features/index.md similarity index 100% rename from content/en-US/docs/features/index.md rename to content/en-US/.docs-legacy/features/index.md diff --git a/content/en-US/docs/features/mfm.md b/content/en-US/.docs-legacy/features/mfm.md similarity index 97% rename from content/en-US/docs/features/mfm.md rename to content/en-US/.docs-legacy/features/mfm.md index 60b90f94..e7ba3550 100644 --- a/content/en-US/docs/features/mfm.md +++ b/content/en-US/.docs-legacy/features/mfm.md @@ -5,7 +5,7 @@ description: 'MFM is a dedicated markup language that can be used in various pla # MFM MFM, which stands for Misskey Flavoured Markdown, is a dedicated markup language that can be used in various places on Misskey. -::: tip +:::tip Some of the syntax is compatible with Markdown. ::: @@ -17,7 +17,7 @@ Some of the syntax is compatible with Markdown. ## Syntax ### Mentions -::: tip +:::tip For more information about Mentions, see [here](./mention.md). ::: @@ -30,7 +30,7 @@ For more information about Mentions, see [here](./mention.md). ### Hashtags -::: tip +:::tip For more information about hashtags, see [here](./hashtag). ::: @@ -40,7 +40,7 @@ For more information about hashtags, see [here](./hashtag). ### Custom Emoji -::: tip +:::tip For more information about custom emoji, see [here](./custom-emoji). ::: @@ -62,7 +62,7 @@ For more information about custom emoji, see [here](./custom-emoji). --- -::: tip +:::tip More available syntax can be found in the **MFM cheat sheet** provided by the Misskey web UI under `/mfm-cheat-sheet` on your instance. ::: diff --git a/content/en-US/docs/features/mute-and-block.md b/content/en-US/.docs-legacy/features/mute-and-block.md similarity index 97% rename from content/en-US/docs/features/mute-and-block.md rename to content/en-US/.docs-legacy/features/mute-and-block.md index 6f8b1a6b..948bb1c0 100644 --- a/content/en-US/docs/features/mute-and-block.md +++ b/content/en-US/.docs-legacy/features/mute-and-block.md @@ -4,11 +4,11 @@ If you don't like a user, you can mute them to make them disappear from your tim Alternatively, you can block a user to prevent them from seeing your content or engaging with you in any way. People won't know that you have muted them, but they will know that you have blocked them. It is up to you to decide which option you prefer. -::: tip +:::tip Mute and block can be used together. ::: -::: warning +:::warning Please consider reporting any users who violate the Terms of Service to the moderators. ::: @@ -25,7 +25,7 @@ If you mute a user, the following content about that user will no longer appear To mute a user in Misskey Web, open the menu on the user's profile page and press the "Mute" button. -::: tip +:::tip They will not be notified that you have muted them, and they will not know that you have muted them. ::: @@ -46,11 +46,11 @@ Also, To block a user on Misskey Web, open the menu on the user's profile page and press the "Block" button. -::: warning +:::warning You will not be notified that you have been blocked by someone, but you will know indirectly that you have been blocked because you will not be able to take any of the above actions, such as following someone. ::: -::: warning +:::warning The other person will not be able to see your content, but they will be able to see it if they switch accounts or log out. Blocking is only a simple, but useful feature. You can change your privacy settings in Settings > Privacy to make it more difficult for blocked users to view your content by requiring approval for follow requests and setting your default note visibility to "Followers". ::: diff --git a/content/en-US/docs/features/note.md b/content/en-US/.docs-legacy/features/note.md similarity index 98% rename from content/en-US/docs/features/note.md rename to content/en-US/.docs-legacy/features/note.md index 1ef0349d..3612a978 100644 --- a/content/en-US/docs/features/note.md +++ b/content/en-US/.docs-legacy/features/note.md @@ -12,11 +12,11 @@ By adding a note to your [Favorites](./favorite), you can easily find it at a la To compose a note, press one of the buttons with a pencil icon on your screen to open the posting form (either at the top of your timeline or at the bottom of the navigation menu). Enter the content you want to post in the form, and press the "Note" button to publish it. Notes can contain text, files such as images or videos, and [Polls](./poll). In addition, by using [MFM](./mfm) within your text, you can include [Mentions](./mention) and [Hashtags](./hashtag). There are also other settings such as CW (Content Warning) or note visibility that are explained below. -::: tip +:::tip If you are on a computer and have an image saved in your clipboard, you can attach it to your note by using the usual paste keyboard shortcut within the text box. ::: -::: tip +:::tip You can also press Ctrl + Enter within the text box to publish your note. ::: @@ -24,7 +24,7 @@ You can also press Ctrl + Enter within the text box to pu The act of quoting an existing note or sharing an existing note. The note created as a result of these acts are all called a Renote/RN (or "renoting" as verb). Most of the time, this is used when you want to share a note you like to your own followers, or when you want a share a note that you posted in the past once more. While it is possible to renote the same note multiple times, please be aware that doing so may be seen as annoying by others. -::: warning +:::warning If you've set your note's visibility to Followers-only or Direct, then others will not be able to renote it. ::: @@ -42,7 +42,7 @@ It's possible to individually set where your note will be visible (Visibility) f Your note will be visible to all users and will show up on all timelines (home, local, social, global). -::: warning +:::warning This visibility will be unavailable if your account is silenced. ::: @@ -74,7 +74,7 @@ If you enable this option, your note won't be federated to remote instances. By pinning a note to your profile it will be constantly displayed on your profile page. To pin a note, open the note menu and press "Pin to profile". -::: tip +:::tip It's possible to pin multiple notes to your profile. ::: diff --git a/content/en-US/docs/features/online-status.md b/content/en-US/.docs-legacy/features/online-status.md similarity index 98% rename from content/en-US/docs/features/online-status.md rename to content/en-US/.docs-legacy/features/online-status.md index f2384d7e..77662c4b 100644 --- a/content/en-US/docs/features/online-status.md +++ b/content/en-US/.docs-legacy/features/online-status.md @@ -34,6 +34,6 @@ Your online status is displayed as an indicator in the corner of the user icon o Your online status will change automatically and cannot be set manually. You can set your online status to be private. -::: warning +:::warning Some features, such as user suggestions, may be based on online status, so making your status private may make it harder for other users to find you. ::: diff --git a/content/en-US/docs/features/pages.md b/content/en-US/.docs-legacy/features/pages.md similarity index 100% rename from content/en-US/docs/features/pages.md rename to content/en-US/.docs-legacy/features/pages.md diff --git a/content/en-US/docs/features/plugin.md b/content/en-US/.docs-legacy/features/plugin.md similarity index 100% rename from content/en-US/docs/features/plugin.md rename to content/en-US/.docs-legacy/features/plugin.md diff --git a/content/en-US/docs/features/reaction.md b/content/en-US/.docs-legacy/features/reaction.md similarity index 99% rename from content/en-US/docs/features/reaction.md rename to content/en-US/.docs-legacy/features/reaction.md index 11c047f2..7d6f0213 100644 --- a/content/en-US/docs/features/reaction.md +++ b/content/en-US/.docs-legacy/features/reaction.md @@ -18,7 +18,7 @@ Usually, ActivityPub's "Like" is implemented as a favorite. Since Misskey does not have likes, a "Like" from a remote instance will be displayed as a '👍' reaction. -::: tip +:::tip Your instance administrator may change this to be displayed as a '⭐' reaction. If you are an admin, see [here](../admin/default-reaction.md). ::: diff --git a/content/en-US/docs/features/share-form.md b/content/en-US/.docs-legacy/features/share-form.md similarity index 98% rename from content/en-US/docs/features/share-form.md rename to content/en-US/.docs-legacy/features/share-form.md index 3d30124c..a3579f27 100644 --- a/content/en-US/docs/features/share-form.md +++ b/content/en-US/.docs-legacy/features/share-form.md @@ -6,7 +6,7 @@ You can specify a number of options in the URL, including the shared content, as ## Query Parameters -::: tip +:::tip All parameters are **optional**. ::: @@ -45,7 +45,7 @@ The following options allow to select a scope. | `visibleUserIds` | target user IDs | | `visibleAccts` | target user [acct](../glossary.md#acct)s (comma separated) | -::: warning +:::warning If `visibility` is set to `specified`, either `visibleUserIds` or `visibleAccts` must be set too. ::: diff --git a/content/en-US/docs/features/silence.md b/content/en-US/.docs-legacy/features/silence.md similarity index 100% rename from content/en-US/docs/features/silence.md rename to content/en-US/.docs-legacy/features/silence.md diff --git a/content/en-US/docs/features/theme.md b/content/en-US/.docs-legacy/features/theme.md similarity index 100% rename from content/en-US/docs/features/theme.md rename to content/en-US/.docs-legacy/features/theme.md diff --git a/content/en-US/docs/features/thread-mute.md b/content/en-US/.docs-legacy/features/thread-mute.md similarity index 96% rename from content/en-US/docs/features/thread-mute.md rename to content/en-US/.docs-legacy/features/thread-mute.md index 8a2ef090..29af2dee 100644 --- a/content/en-US/docs/features/thread-mute.md +++ b/content/en-US/.docs-legacy/features/thread-mute.md @@ -1,6 +1,6 @@ # Thread mute -::: tip +:::tip This feature is available since version 12.95.0. ::: @@ -10,6 +10,6 @@ If you mute a thread, you will no longer be notified of new replies to that thre To mute a thread in Misskey Web, open the menu of any note belonging to the thread in question or the note from which it originated and select 'Mute Thread'. -::: warning +:::warning The entire thread will be muted, regardless of which note in the thread the mute operation is performed from. ::: diff --git a/content/en-US/docs/features/timeline.md b/content/en-US/.docs-legacy/features/timeline.md similarity index 100% rename from content/en-US/docs/features/timeline.md rename to content/en-US/.docs-legacy/features/timeline.md diff --git a/content/en-US/docs/features/webhook.md b/content/en-US/.docs-legacy/features/webhook.md similarity index 99% rename from content/en-US/docs/features/webhook.md rename to content/en-US/.docs-legacy/features/webhook.md index a124debc..fc3a16ee 100644 --- a/content/en-US/docs/features/webhook.md +++ b/content/en-US/.docs-legacy/features/webhook.md @@ -1,10 +1,10 @@ # Webhook -::: tip +:::tip This feature is available as of Misskey version 12.109.0. ::: -::: warning +:::warning This is an experimental feature and may be unstable or subject to change in the future. ::: diff --git a/content/en-US/docs/features/widgets.md b/content/en-US/.docs-legacy/features/widgets.md similarity index 100% rename from content/en-US/docs/features/widgets.md rename to content/en-US/.docs-legacy/features/widgets.md diff --git a/content/en-US/docs/features/word-mute.md b/content/en-US/.docs-legacy/features/word-mute.md similarity index 100% rename from content/en-US/docs/features/word-mute.md rename to content/en-US/.docs-legacy/features/word-mute.md diff --git a/content/en-US/docs/getting-started.md b/content/en-US/.docs-legacy/getting-started.md similarity index 98% rename from content/en-US/docs/getting-started.md rename to content/en-US/.docs-legacy/getting-started.md index b66212d3..0b5eedb8 100644 --- a/content/en-US/docs/getting-started.md +++ b/content/en-US/.docs-legacy/getting-started.md @@ -5,10 +5,10 @@ To use Misskey, you need to create an account in one of the instances and use th You can select an instance of your choice from the [instance list](../instances.md). -::: tip +:::tip No matter which instance you choose, you will be able to interact with users on other instances. -::: details +:::details Misskey has the ability to federate. Misskey has built-in federation support, which allows users in different instances to follow, react, and renote in the same way as users on the same instance. diff --git a/content/en-US/docs/glossary.md b/content/en-US/.docs-legacy/glossary.md similarity index 100% rename from content/en-US/docs/glossary.md rename to content/en-US/.docs-legacy/glossary.md diff --git a/content/en-US/docs/install.md b/content/en-US/.docs-legacy/install.md similarity index 97% rename from content/en-US/docs/install.md rename to content/en-US/.docs-legacy/install.md index a91ce768..e247e853 100644 --- a/content/en-US/docs/install.md +++ b/content/en-US/.docs-legacy/install.md @@ -2,11 +2,11 @@ Thank you for your interest in building a Misskey instance 🚀 There are several ways to create an instance, so please choose one below and read the guide. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: danger +:::danger If you use Cloudflare for your own server, do not use the Auto Minify setting. Misskey will not work properly because Cloudflare will not interpret the latest JavaScript and will break the source code inside. diff --git a/content/fr-FR/docs/install/bash.md b/content/en-US/.docs-legacy/install/bash.md similarity index 99% rename from content/fr-FR/docs/install/bash.md rename to content/en-US/.docs-legacy/install/bash.md index e51561b5..90dcc1ff 100644 --- a/content/fr-FR/docs/install/bash.md +++ b/content/en-US/.docs-legacy/install/bash.md @@ -16,7 +16,7 @@ There is also an update script. 2. An Ubuntu Server 3. A Cloudflare Account (recommended) -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: diff --git a/content/fr-FR/docs/install/docker.md b/content/en-US/.docs-legacy/install/docker.md similarity index 98% rename from content/fr-FR/docs/install/docker.md rename to content/en-US/.docs-legacy/install/docker.md index dc51f9a7..265239ff 100644 --- a/content/fr-FR/docs/install/docker.md +++ b/content/en-US/.docs-legacy/install/docker.md @@ -3,11 +3,11 @@ Create Misskey instance with Docker Compose This guide describes how to install and setup Misskey with Docker Compose. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: tip Requirement +:::tip Requirement - docker and dockercompose installed ::: @@ -56,7 +56,7 @@ GLHF✨ How to update your Misskey server ---------------------------------------------------------------- -::: warning +:::warning When updating, be sure to check the [release notes](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) to know in advance the changes and whether or not additional work is required (in most cases, it is not). ::: diff --git a/content/en-US/docs/install/kubernetes.md b/content/en-US/.docs-legacy/install/kubernetes.md similarity index 98% rename from content/en-US/docs/install/kubernetes.md rename to content/en-US/.docs-legacy/install/kubernetes.md index 8b04e8e2..4e1c6aaa 100644 --- a/content/en-US/docs/install/kubernetes.md +++ b/content/en-US/.docs-legacy/install/kubernetes.md @@ -1,14 +1,14 @@ # Create Misskey Instance with Kubernetes/TrueNAS This guide describes how to install and setup Misskey using Kubernetes and Helm charts. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: ## TrueCharts and TrueNAS Scale The Helm chart for Misskey is hosted on TrueCharts which is a repository designed to be used with TrueNAS Scale, but its charts can also be installed as normal Helm charts. The [TrueCharts](https://truecharts.org/charts/incubator/misskey/) site has a list of all the charts available as well as documentation on how to install. The TrueCharts [Discord](https://discord.gg/Ax9ZgzKx9t) server is also a resource that can be used if you have questions. Misskey is currently on the *incubator* train. -::: tip Requirements +:::tip Requirements - TrueNAS Scale OR - Kubernetes cluster and Helm diff --git a/content/en-US/docs/install/manual.md b/content/en-US/.docs-legacy/install/manual.md similarity index 99% rename from content/en-US/docs/install/manual.md rename to content/en-US/.docs-legacy/install/manual.md index fd974d5b..44176e0b 100644 --- a/content/en-US/docs/install/manual.md +++ b/content/en-US/.docs-legacy/install/manual.md @@ -6,7 +6,7 @@ This guide describes how to install and setup Misskey. ---------------------------------------------------------------- -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: @@ -114,7 +114,7 @@ Just `NODE_ENV=production pnpm run start`. GLHF! 2. Edit it, and paste this and save: - ::: details + :::details ``` [Unit] Description=Misskey daemon @@ -150,7 +150,7 @@ You can check if the service is running with `systemctl status misskey`. 1. Copy the following text to `/etc/init.d/misskey`: - ::: details + :::details ```sh #!/sbin/openrc-run diff --git a/content/en-US/docs/misskey-hub.md b/content/en-US/.docs-legacy/misskey-hub.md similarity index 98% rename from content/en-US/docs/misskey-hub.md rename to content/en-US/.docs-legacy/misskey-hub.md index 238e9897..51417b29 100644 --- a/content/en-US/docs/misskey-hub.md +++ b/content/en-US/.docs-legacy/misskey-hub.md @@ -4,7 +4,7 @@ We aim to be the place for "everything Misskey". Misskey Hub is [open source](https://github.com/misskey-dev/misskey-hub). -::: tip +:::tip Misskey Hub is a static site built with [VuePress](https://github.com/vuepress/vuepress-next). ::: diff --git a/content/en-US/docs/misskey.md b/content/en-US/.docs-legacy/misskey.md similarity index 99% rename from content/en-US/docs/misskey.md rename to content/en-US/.docs-legacy/misskey.md index 4b7406ce..fbd587dd 100644 --- a/content/en-US/docs/misskey.md +++ b/content/en-US/.docs-legacy/misskey.md @@ -5,7 +5,7 @@ Misskey is an open-source and distributed platform for microblogging. Developmen ## History While Misskey started centered around Bulletin Boards as its main feature, the growth in popularity due to the addition of a timeline that let users post short messages and view them in chronological order lead to a gradual shift in the main focus of development towards this kind of functionality. Misskey was not always a decentralized service, but became decentralized through the adoption of ActivityPub in 2018. Since then, it has become a service that is acknowledged and used by many. -::: tip +:::tip The name "Misskey" comes from a song called "Brain Diver" by a band that syuilo used to listen to at the time called May'n. ::: @@ -17,7 +17,7 @@ A Distributed service, also called a Decentralized service, refers ## Always Open-Source Misskey has always been, and will always be, open source.Open source means, simply speaking, making the source code of software (a program) publicly available.This also includes being able to adjust or redistribute the source code in its definition. The entirety of Misskey's source code is [being licensed](https://github.com/misskey-dev) under an open-source license called [AGPL](https://github.com/misskey-dev/misskey/blob/develop/LICENSE), which means anyone can freely inspect, use, adjust, change or redistribute as they see fit. Open source has many merits, including allowing anyone being able to make changes as they like, to make sure the code does not include any harmful components and being able to easily participate in its development. For realizing the distributed nature of Misskey, this concept of open source is indispensable. Using the same example as before, most profit-oriented services like Twitter, Facebook etc. are not open source. -::: tip +:::tip Technically speaking, Misskey's source code is being managed via Git, and its repository is being hosted at [GitHub.](https://github.com/misskey-dev) ::: diff --git a/content/en-US/docs/releases.md b/content/en-US/.docs-legacy/releases.md similarity index 99% rename from content/en-US/docs/releases.md rename to content/en-US/.docs-legacy/releases.md index fe3a9795..62f7f2e7 100644 --- a/content/en-US/docs/releases.md +++ b/content/en-US/.docs-legacy/releases.md @@ -1,7 +1,7 @@ # Release Notes Notes for indivudual misskey releases. -::: tip +:::tip Information updates may not be translated yet. For the latest information see [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: @@ -743,6 +743,6 @@ Released at: 12/03/2021 - client: fixed an issue where "All" in user search did not work - client: fixed the style of the Reaction List and Renote List tooltips -::: warning +:::warning Older releases are not translated yet. If you can, please edit this page to add them from the Japanese changelog on [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: diff --git a/content/en-US/docs/tips/disable-timelines.md b/content/en-US/.docs-legacy/tips/disable-timelines.md similarity index 99% rename from content/en-US/docs/tips/disable-timelines.md rename to content/en-US/.docs-legacy/tips/disable-timelines.md index 76458492..45895925 100644 --- a/content/en-US/docs/tips/disable-timelines.md +++ b/content/en-US/.docs-legacy/tips/disable-timelines.md @@ -3,7 +3,7 @@ In Misskey, it's possible to individually deactivate the LTL/STL/GTL.You can ena As all posts across your instance can be seen in both the LTL and STL, they have the advantage of making it easy for new users to find others that they are interested in without having to use the manual user search. At the same time however, this means that following other users to see their posts is less important and inappropriate posts may be shown to users more frequently. Additionally, the experience becomes more alike that of a Chatroom, which in turn may make it more difficult for new users to join in one conversations with those who have been taking part for a long time. As the weight of these advantages and disadvantages may vary from server to server, the choice of using or not using them has been left to each individual instance. If you feel like the demerits outweigh the merits, please consider deactivating these respective timelines. -::: warning +:::warning Disabling timelines can lead to confusion and possibly to a short-time drop in users.Therefore, please carefully consider the effects of disabling a timeline, and explain the reasoning for doing so in advance, so that your users can prepare by e.g. following users they often talk with on the LTL/STL. ::: diff --git a/content/en-US/docs/troubleshooting.md b/content/en-US/.docs-legacy/troubleshooting.md similarity index 99% rename from content/en-US/docs/troubleshooting.md rename to content/en-US/.docs-legacy/troubleshooting.md index 3819cee1..2e3df718 100644 --- a/content/en-US/docs/troubleshooting.md +++ b/content/en-US/.docs-legacy/troubleshooting.md @@ -3,7 +3,7 @@ description: 'If you run into a problem, please check this page first.' --- # Troubleshooting -::: tip +:::tip Please also use the [Frequently asked questions](./faq.md) page. ::: @@ -32,7 +32,7 @@ Please try the following: ## Parts of the UI are weird (For example, the background is transparent) Broken UI display may be caused by the theme cache system when the UI is changed as part of an update. Pressing "Clear cache" in the settings will fix this. -::: warning +:::warning Specifically clear the "Client's" cache. Don't clear the "Browser's" cache. ::: diff --git a/content/en-US/README.md b/content/en-US/README.md deleted file mode 100644 index f8bd0bb1..00000000 --- a/content/en-US/README.md +++ /dev/null @@ -1,85 +0,0 @@ ---- -layout: Landing - -description: "Misskey is an open source, decentralized social media platform that's free forever!" -gettingStarted: "Get started!" -learnMore: "Learn more" -keyFeatures: - open: - title: "Open" - description: "Misskey is open source software that anyone can contribute to and everyone can use for free whenever and wherever." - federated: - title: "Federated" - description: "Misskey is a decentralized platform, so communities on different instances can connect with each other." - multifunction: - title: "Powerful" - description: "Misskey is both easy to understand for beginners and has powerful features for advanced users." - customizable: - title: "Customizable" - description: "Make Misskey yours! With themes, widgets, layouts, and more, you make make Misskey just the way you like it." -sections: - federatedSoftware: - title: "Misskey is a decentralized platform." - description: "Misskey is just a platform for server owners to make their own instances of Misskey, and they can all talk to each other! There's large instances for the masses, smaller ones for groups, fandoms, and subcultures, and even instances just for individuals and their friends. Want to have even more control? You can make your own instance on your server with relative ease, cutting ties from any large company who wants to spy on you and sell your data. Misskey is about community and sharing, not corporations and big tech. Have friends not on Misskey? No problem! Because Misskey is on the Fediverse (ActivityPub), you can interact with people on other platforms like Mastodon, PixelFed, PeerTube, and more!" - features: - title: "Features" - description: "Misskey has a wide variety of unique features!" - list: - note: - title: "Note" - description: "On Misskey, posts from users are called \"notes\". Reply, quote, add custom emojis, animated text, content warnings, attach multiple images, videos, GIFs, audio clips, or anything else!" - reaction: - title: "Reactions" - description: "You can add emoji reactions to any post! No longer are you bound by a like button, show everyone exactly how you feel with the tap of a button." - theme: - title: "Theme" - description: "Why be limited by just a Light or Dark theme when you can change all the colors? Use Misskey's intuitive theming functions to make Misskey just how you like it." - charts: - title: "Charts" - description: "For those who need to see everything, Misskey has powerful charts for both users and admins to see what exactly is going on in your instance in real time." - federation: - title: "Federation" - description: "Not on Misskey? No problem! Not only can Misskey instances talk to each other, but you can make friends with people on other networks like Mastodon and Pixelfed!" - drive: - title: "Drive" - description: "Hate not being able to find something you uploaded? With Drive, you get managed and powerful cloud storage right in your social media!" - thread: - title: "Threads" - description: "Have a lot on your mind? Make a thread! Each post can have up to 3,000 characters by default, and you can keep the conversation going for hours." - widgets: - title: "Widgets" - description: "Have everything at your fingertips with over a dozen customizable widgets!" - gettingStarted: - title: "Join Misskey today!" - find: - title: "Find an instance!" - list: "List of instances" - create: - title: "Make your own instance" - guide: "Setup guide" - docs: - title: "Learn more" - docs: "See docs" - donation: - title: "Donation" - description: "Because Misskey is a non-profit, we rely on your donations to fund our development. If you like Misskey, please consider donating so that we can continue to make Misskey awesome for years to come!" - sponsors: - title: "Sponsors" ---- - - diff --git a/content/en-US/appendix/assets.md b/content/en-US/appendix/assets.md deleted file mode 100644 index 0a8ed9b4..00000000 --- a/content/en-US/appendix/assets.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -description: 'collection of Misskey logos, icons, and other assets.' ---- - -# Assets collection -This is a collection of Misskey logos, icons, and other assets. - - -::: tip -These assets are free to use under the **CC BY-NC-SA** license!🎉 - -CC BY-NC-SA -::: - -::: tip -All assets are managed in [misskey-dev/assets](https://github.com/misskey-dev/assets). -::: - -## Logo - - - - -## Icon - - - - - diff --git a/content/en-US/help.md b/content/en-US/help.md deleted file mode 100644 index 45d55940..00000000 --- a/content/en-US/help.md +++ /dev/null @@ -1,3 +0,0 @@ -# Help - -- [List of functions](./docs/features/index.md) diff --git a/content/en-US/home.md b/content/en-US/home.md deleted file mode 100644 index 77f6aab5..00000000 --- a/content/en-US/home.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -home: true -title: Misskey Hub -heroImage: /banner.svg -tagline: Official web site of open-source interplanetary micro-blogging platform Misskey -footer: Copyright © 2023 syuilo and other contributors -actions: - - text: Getting started - link: ./docs/getting-started - type: primary - - text: What is Misskey? - link: ./docs/misskey - type: secondary -features: - - title: Distributed 🪐 - details: Independent communities are run on multiple servers, and these are interconnected. - - title: Lightweight 🚀 - details: Because it uses Node.js, which runs at high speed, it is lightweight even when federated with a large number of servers. - - title: Fun 🍮 - details: It has distinctive features such as reactions and a highly customizable UI. ---- - - - - - -
- -# Sponsors -
- RSS3 -
-
- - diff --git a/content/en-US/instances.md b/content/en-US/instances.md deleted file mode 100644 index e0d3b112..00000000 --- a/content/en-US/instances.md +++ /dev/null @@ -1,17 +0,0 @@ -# List of instances -::: tip -If you would like to list your instance here, please feel free to contact us via [Discord](https://discord.gg/Wp8gVStHW3) or make a pull request on this site's [GitHub](https://github.com/misskey-dev/misskey-hub). -::: - - - -Alternatively, you can find an instance from the [unofficial list of instances](https://join.misskey.page/en-US/instances). - - diff --git a/content/en-US/plugins.md b/content/en-US/plugins.md deleted file mode 100644 index 3df51b1a..00000000 --- a/content/en-US/plugins.md +++ /dev/null @@ -1,12 +0,0 @@ -# Plugin Store -A collection of [plugins](./docs/features/plugin.md) that you can install in the Misskey web UI. - -::: tip -If you would like to see your plugin here, please see [the section on submitting plugins](#Submitting-Plugins). -::: - -## Plugins -- TODO - -## Submitting Plugins -TODO diff --git a/content/en-US/updates.md b/content/en-US/updates.md deleted file mode 100644 index 0834572c..00000000 --- a/content/en-US/updates.md +++ /dev/null @@ -1,3 +0,0 @@ -# Recent changes - - diff --git a/content/fr-FR/docs/admin/cdn.md b/content/fr-FR/.docs-legacy/admin/cdn.md similarity index 98% rename from content/fr-FR/docs/admin/cdn.md rename to content/fr-FR/.docs-legacy/admin/cdn.md index 3ba6faa5..40f558ff 100644 --- a/content/fr-FR/docs/admin/cdn.md +++ b/content/fr-FR/.docs-legacy/admin/cdn.md @@ -12,6 +12,6 @@ L’API Misskey ne peut pas être mise en cache. Vous devez configurer l’option suivante dans votre CDN : - Mettre en cache toutes les requêtes sauf `/api/*`. -::: tip +:::tip Pas besoin de vider le cache lorsque vous mettez à jour Misskey. :::: diff --git a/content/fr-FR/docs/admin/default-reaction.md b/content/fr-FR/.docs-legacy/admin/default-reaction.md similarity index 100% rename from content/fr-FR/docs/admin/default-reaction.md rename to content/fr-FR/.docs-legacy/admin/default-reaction.md diff --git a/content/fr-FR/docs/admin/emoji.md b/content/fr-FR/.docs-legacy/admin/emoji.md similarity index 99% rename from content/fr-FR/docs/admin/emoji.md rename to content/fr-FR/.docs-legacy/admin/emoji.md index caeffe45..8821c9d2 100644 --- a/content/fr-FR/docs/admin/emoji.md +++ b/content/fr-FR/.docs-legacy/admin/emoji.md @@ -20,7 +20,7 @@ Si vous disposez d’une image que vous souhaiter utiliser, celle-ci peut être Cela fonctionne comme en joignant des fichiers à une note : Vous pouvez choisir de téléverser un nouveau fichier, et le sélectionner depuis votre Drive Misskey ou une URL distante. -::: warning +:::warning En important une émoticône sur votre Drive, le fichier y restera. Misskey ne fait pas de copies de ce fichier et si vous le supprimez celui-ci sera cassé. ::: @@ -32,7 +32,7 @@ L’émoticône sera ajoutée à l’instance et vous pourez la modifier ou supp Les émoticônes peuvent être importées en masse à partir d’un format spécial au sein d’une archive ZIP. Cette fonction est disponible dans le menu du coin supérieur droit de l’onglet d’émoticônes personnalisées. -::: warning +:::warning L’import en masse peut écraser les émoticônes existant et créer de nombreux problèmes sur l’instance. Assurez vous de n’importer que depuis des sources de confiance, voire que vous aurez-vous même exporté dans l’idéal. ::: @@ -88,7 +88,7 @@ Seul les suivants sont utilisés : Les propriétés d’une émoticône peuvent être modifiése en la sélectionnant dans la liste locale. Un menu permet de la modifier ou supprimer. -::: warning +:::warning En supprimant une émoticône personnalisées, les anciennes notes seront modifiées. ::: diff --git a/content/fr-FR/docs/admin/nginx.md b/content/fr-FR/.docs-legacy/admin/nginx.md similarity index 100% rename from content/fr-FR/docs/admin/nginx.md rename to content/fr-FR/.docs-legacy/admin/nginx.md diff --git a/content/fr-FR/docs/admin/push-docker-hub.md b/content/fr-FR/.docs-legacy/admin/push-docker-hub.md similarity index 95% rename from content/fr-FR/docs/admin/push-docker-hub.md rename to content/fr-FR/.docs-legacy/admin/push-docker-hub.md index 07b0f122..1b66d722 100644 --- a/content/fr-FR/docs/admin/push-docker-hub.md +++ b/content/fr-FR/.docs-legacy/admin/push-docker-hub.md @@ -1,5 +1,5 @@ # Comment utiliser GitHub Actions pour pousser vers un Docker Hub -::: warning +:::warning Cette page n’est pas encore traduite. Le contenu est disponible en [japonais exclusivement](/docs/admin/push-docker-hub.md). En attendant, essayez d’utiliser un traducteur automatique. diff --git a/content/fr-FR/docs/admin/troubleshooting.md b/content/fr-FR/.docs-legacy/admin/troubleshooting.md similarity index 95% rename from content/fr-FR/docs/admin/troubleshooting.md rename to content/fr-FR/.docs-legacy/admin/troubleshooting.md index b7754662..efaf098c 100644 --- a/content/fr-FR/docs/admin/troubleshooting.md +++ b/content/fr-FR/.docs-legacy/admin/troubleshooting.md @@ -1,5 +1,5 @@ # Guide de dépannage -::: warning +:::warning Cette page n’est pas encore traduite. Vous trouverez le contenu dans la version [japonaise exclusivement](/docs/admin/troubleshooting.html). En attendant, veuillez utiliser un traducteur automatique. diff --git a/content/fr-FR/docs/api/app.md b/content/fr-FR/.docs-legacy/api/app.md similarity index 100% rename from content/fr-FR/docs/api/app.md rename to content/fr-FR/.docs-legacy/api/app.md diff --git a/content/fr-FR/docs/api/common.json5 b/content/fr-FR/.docs-legacy/api/common.json5 similarity index 100% rename from content/fr-FR/docs/api/common.json5 rename to content/fr-FR/.docs-legacy/api/common.json5 diff --git a/content/fr-FR/docs/api/index.md b/content/fr-FR/.docs-legacy/api/index.md similarity index 98% rename from content/fr-FR/docs/api/index.md rename to content/fr-FR/.docs-legacy/api/index.md index 6717490f..ed5ec982 100644 --- a/content/fr-FR/docs/api/index.md +++ b/content/fr-FR/.docs-legacy/api/index.md @@ -6,7 +6,7 @@ description: 'Misskey offre une API pour développer son propre client Misskey, Misskey dispose d’une APi pour développer son propre client Misskey, des services liés, des bots, etc… (« Applications »). Il existe également un flux API pour créer des applications avec des fonctions en temps réel. -::: tip +:::tip En utilisant le SDK officiel Misskey ou une librairie tierce, vous pouvez utiliser l’API de manière à simplifier des étapes décrites dans ce document. Voir [ici](TODO) pour plus d’informations à propos des librairies. ::: @@ -18,7 +18,7 @@ Ce document vous accompagne dans l’obtention de cette clé et montre comment l L’API requiert une clé d’accès pour ses requêtes. Une clé d’accès est un ensemble de données associée à une personne, l’identifiant comme utilisant l’API et contrôlant les opérations qui sont effectuées. -::: tip +:::tip La clé est nominative et ne peut être utilisée que par une personne, plusieurs clés peuvent être possédées par une personne. ::: @@ -27,14 +27,14 @@ Vous pouvez facilement [obtenir votre clé d’accès](#Méthode-manuelle), ou u ### Méthode manuelle Vous pouvez créer votre propre clé d’accès via l’interface Misskey Web dans la section API des paramètres. -::: warning +:::warning Ne communiquez pas cette clé. ::: ### Demander une clé d’accès Pour obtenir une clé d’accès pour une personne utilisant votre application, suivre les étapes suivantes : -::: tip +:::tip 以下に説明する方法は、アプリを作成せずインスタントにアクセストークンを発行する、MiAuthと呼ばれるものです。 [アプリ作成方式でのアクセストークン取得方法もあります(旧来型)。](./app) @@ -43,7 +43,7 @@ Pour obtenir une clé d’accès pour une personne utilisant votre application, #### Étape 1 Générer un UUID, ci-après dénommé **ID session**. -::: warning +:::warning Cet ID session est à usage unique. ::: @@ -91,7 +91,7 @@ Les propriétés incluses dans la réponse sont les suivantes : ## Utilisation de l’API Une fois la clé en main, vous pouvez utiliser l’API pour faire des requêtes. -::: tip +:::tip - Toutes les API HTTP sont POST, et les requête comme les réponses sont au format JSON (à l’exception de drive/files/create ; - Indiquez `Content-Type: application/json` dans l’entête de requête ; - La clé d’accès est dans le corps de requête JSON avec comme valeur de name `i`. @@ -110,12 +110,12 @@ La clé d’accès est incluse dans le corps de requête JSON comme paramètre ` Pour plus d’informations à propos de l’API voir [référence API](./endpoints.html). -::: warning +:::warning Misskey n’utilise pas REST. ::: En plus de l’API HTTP, Misskey fourni un flux API. Plus d’informations à ce sujet [ici](.streaming/). -::: tip +:::tip Votre instance Misskey dispose de sa propre documentation d’API à `/api-doc`. ::: diff --git a/content/fr-FR/docs/api/streaming/channel/global-timeline.md b/content/fr-FR/.docs-legacy/api/streaming/channel/global-timeline.md similarity index 100% rename from content/fr-FR/docs/api/streaming/channel/global-timeline.md rename to content/fr-FR/.docs-legacy/api/streaming/channel/global-timeline.md diff --git a/content/fr-FR/docs/api/streaming/channel/home-timeline.md b/content/fr-FR/.docs-legacy/api/streaming/channel/home-timeline.md similarity index 100% rename from content/fr-FR/docs/api/streaming/channel/home-timeline.md rename to content/fr-FR/.docs-legacy/api/streaming/channel/home-timeline.md diff --git a/content/fr-FR/docs/api/streaming/channel/hybrid-timeline.md b/content/fr-FR/.docs-legacy/api/streaming/channel/hybrid-timeline.md similarity index 100% rename from content/fr-FR/docs/api/streaming/channel/hybrid-timeline.md rename to content/fr-FR/.docs-legacy/api/streaming/channel/hybrid-timeline.md diff --git a/content/fr-FR/docs/api/streaming/channel/index.md b/content/fr-FR/.docs-legacy/api/streaming/channel/index.md similarity index 100% rename from content/fr-FR/docs/api/streaming/channel/index.md rename to content/fr-FR/.docs-legacy/api/streaming/channel/index.md diff --git a/content/fr-FR/docs/api/streaming/channel/local-timeline.md b/content/fr-FR/.docs-legacy/api/streaming/channel/local-timeline.md similarity index 100% rename from content/fr-FR/docs/api/streaming/channel/local-timeline.md rename to content/fr-FR/.docs-legacy/api/streaming/channel/local-timeline.md diff --git a/content/fr-FR/docs/api/streaming/channel/main.md b/content/fr-FR/.docs-legacy/api/streaming/channel/main.md similarity index 100% rename from content/fr-FR/docs/api/streaming/channel/main.md rename to content/fr-FR/.docs-legacy/api/streaming/channel/main.md diff --git a/content/fr-FR/docs/api/streaming/index.md b/content/fr-FR/.docs-legacy/api/streaming/index.md similarity index 99% rename from content/fr-FR/docs/api/streaming/index.md rename to content/fr-FR/.docs-legacy/api/streaming/index.md index e745b678..c44b2ac1 100644 --- a/content/fr-FR/docs/api/streaming/index.md +++ b/content/fr-FR/.docs-legacy/api/streaming/index.md @@ -4,7 +4,7 @@ description: 'L’API de flux fournit des informations en temps réel (ex : nou # API de flux -::: tip +:::tip Assurez-vous d’avoir lu la [documention API Misskey](../index.md) au préalable. ::: @@ -24,7 +24,7 @@ où - `{host}` est le nom de l’hôte de l’instance ; - `{token}` est la clé d’accès. -::: tip +:::tip Vous pouvez vous connecter sans clé d’accès, mais cela limitera les informations reçues et les opérations possibles. ::: @@ -38,7 +38,7 @@ Pour recevoir ces évènements, vous devez rejoindre un **canal** sur le flux, t L’API de flux Misskey utilise un concept de canaux. Ce mécanisme sépare les informations reçus et envoyées. En rejoignant des canux, vous aurez la possibilité de recevoir et envoyer de nombreuses informations. -::: tip +:::tip Vous pouvez rejoindre plusieurs canaux simultanément via un flux unique. ::: @@ -65,7 +65,7 @@ où - `id` est un identifiant arbitraire pour interragir avec ce canal. Il est nécessaire pour identifier de quel canal le message provient, un flux pouvant contenir différent canaux. Cet identifiant peut être un UUID ou un nombre aléatoire ; - `params` sont les paramètres requis pour rejoindre un canal. Chaque canal requiert des paramètres propres. Si un canal n’en demande pas, alors cette propriété peut être laissée vide. -::: tip +:::tip L’identifiant n’est pas unique par canal mais par connexion car un canal peut être utilisé plusieurs fois avec différents paramètres. ::: diff --git a/content/fr-FR/docs/api/streaming/note-capture-events.md b/content/fr-FR/.docs-legacy/api/streaming/note-capture-events.md similarity index 100% rename from content/fr-FR/docs/api/streaming/note-capture-events.md rename to content/fr-FR/.docs-legacy/api/streaming/note-capture-events.md diff --git a/content/fr-FR/docs/donate.md b/content/fr-FR/.docs-legacy/donate.md similarity index 100% rename from content/fr-FR/docs/donate.md rename to content/fr-FR/.docs-legacy/donate.md diff --git a/content/fr-FR/docs/faq.md b/content/fr-FR/.docs-legacy/faq.md similarity index 100% rename from content/fr-FR/docs/faq.md rename to content/fr-FR/.docs-legacy/faq.md diff --git a/content/fr-FR/docs/features/ads.md b/content/fr-FR/.docs-legacy/features/ads.md similarity index 98% rename from content/fr-FR/docs/features/ads.md rename to content/fr-FR/.docs-legacy/features/ads.md index ffbbfaf3..a8fa377b 100644 --- a/content/fr-FR/docs/features/ads.md +++ b/content/fr-FR/.docs-legacy/features/ads.md @@ -3,7 +3,7 @@ Misskey peut afficher des publicités dans les fils et d’autres emplacements de l’interface si activé par l’administration. Vous pouvez réduire la fréquence d’apparition d’une publicité en cliquant dans son coin supérieur droit. -::: tip +:::tip Si le nombre total de publicités d’une instance est limité, une publicité peut apparaître souvent même si vous choisissez de réduire sa fréquence d’apparition. ::: diff --git a/content/fr-FR/docs/features/antenna.md b/content/fr-FR/.docs-legacy/features/antenna.md similarity index 100% rename from content/fr-FR/docs/features/antenna.md rename to content/fr-FR/.docs-legacy/features/antenna.md diff --git a/content/fr-FR/docs/features/charts.md b/content/fr-FR/.docs-legacy/features/charts.md similarity index 100% rename from content/fr-FR/docs/features/charts.md rename to content/fr-FR/.docs-legacy/features/charts.md diff --git a/content/fr-FR/docs/features/clip.md b/content/fr-FR/.docs-legacy/features/clip.md similarity index 100% rename from content/fr-FR/docs/features/clip.md rename to content/fr-FR/.docs-legacy/features/clip.md diff --git a/content/fr-FR/docs/features/custom-emoji.md b/content/fr-FR/.docs-legacy/features/custom-emoji.md similarity index 100% rename from content/fr-FR/docs/features/custom-emoji.md rename to content/fr-FR/.docs-legacy/features/custom-emoji.md diff --git a/content/fr-FR/docs/features/deck.md b/content/fr-FR/.docs-legacy/features/deck.md similarity index 100% rename from content/fr-FR/docs/features/deck.md rename to content/fr-FR/.docs-legacy/features/deck.md diff --git a/content/fr-FR/docs/features/drive.md b/content/fr-FR/.docs-legacy/features/drive.md similarity index 98% rename from content/fr-FR/docs/features/drive.md rename to content/fr-FR/.docs-legacy/features/drive.md index b2df1d45..a463098e 100644 --- a/content/fr-FR/docs/features/drive.md +++ b/content/fr-FR/.docs-legacy/features/drive.md @@ -2,7 +2,7 @@ Drive est une fonction permettant de gérer vos fichiers sur Misskey. -::: tip +:::tip Techniquement, Drive est une interface centrale pour gérer tout le système Misskey qui est également disponible aux membres. ::: @@ -12,7 +12,7 @@ Les fichiers téléversés sur Drive peuvent être téléchargés à tout moment Vous pouvez également créer des dossiers sur votre Drive pour rassembler des fichiers ensemble. -::: warning +:::warning Pour le moment, la suppression d’un fichier sur le drive entraîne la suppression de **tout contenu (note, pages, etc…)** rattaché. ::: diff --git a/content/fr-FR/docs/features/favorite.md b/content/fr-FR/.docs-legacy/features/favorite.md similarity index 100% rename from content/fr-FR/docs/features/favorite.md rename to content/fr-FR/.docs-legacy/features/favorite.md diff --git a/content/fr-FR/docs/features/follow.md b/content/fr-FR/.docs-legacy/features/follow.md similarity index 100% rename from content/fr-FR/docs/features/follow.md rename to content/fr-FR/.docs-legacy/features/follow.md diff --git a/content/fr-FR/docs/features/index.md b/content/fr-FR/.docs-legacy/features/index.md similarity index 100% rename from content/fr-FR/docs/features/index.md rename to content/fr-FR/.docs-legacy/features/index.md diff --git a/content/fr-FR/docs/features/mfm.md b/content/fr-FR/.docs-legacy/features/mfm.md similarity index 97% rename from content/fr-FR/docs/features/mfm.md rename to content/fr-FR/.docs-legacy/features/mfm.md index 7825415f..f1531af7 100644 --- a/content/fr-FR/docs/features/mfm.md +++ b/content/fr-FR/.docs-legacy/features/mfm.md @@ -5,7 +5,7 @@ description: 'MFM est un langage de balise spécifique à Misskey.' # MFM MFM, abréviation de Misskey Flavoured Markdown, est un langage de balise spécifique à Misskey. -::: tip +:::tip Une partie de la syntaxe est compatible avec Markdown. ::: @@ -17,7 +17,7 @@ Une partie de la syntaxe est compatible avec Markdown. ## Syntaxe ### Mentions -::: tip +:::tip Pour plus d’informations sur les mentions, voir [ici](./mention.md). ::: @@ -30,7 +30,7 @@ Pour plus d’informations sur les mentions, voir [ici](./mention.md). ### Mot-croisillon -::: tip +:::tip Pour plus d’informations sur les mots-croisillons, voir [ici](./hashtag). ::: @@ -40,7 +40,7 @@ Pour plus d’informations sur les mots-croisillons, voir [ici](./hashtag). ### Émoticône personnalisé -::: tip +:::tip Pour plus d’informations sur les émoticônes personnalisés, voir [ici](./custom-emoji). ::: @@ -62,7 +62,7 @@ Pour plus d’informations sur les émoticônes personnalisés, voir [ici](./cus --- -::: tip +:::tip Plus de détails sur la syntaxe sont disponibles sur le **pense-bête MFM** de l’interface web Misskey sur la page `/mfm-cheat-sheet` de votre instance. ::: diff --git a/content/fr-FR/docs/features/mute-and-block.md b/content/fr-FR/.docs-legacy/features/mute-and-block.md similarity index 97% rename from content/fr-FR/docs/features/mute-and-block.md rename to content/fr-FR/.docs-legacy/features/mute-and-block.md index 49e7e8f9..65103f20 100644 --- a/content/fr-FR/docs/features/mute-and-block.md +++ b/content/fr-FR/.docs-legacy/features/mute-and-block.md @@ -4,11 +4,11 @@ Si une personne ne vous plaît pas, il vous est possible de l’ignorer de sorte Autrement, il est possible de bloquer une personne pour l’empêcher de voir votre activité et d’interagir de quelque façon que ce soit. Les personnes ne sont pas notifiée que vous les ignorez mais sauront si vous les avez bloqué. À vous de décider quelle option vous préférez. -::: tip +:::tip Ignorer et bloquer peuvent être utilisés ensemble. ::: -::: warning +:::warning Pensez à signaler à la modération toute personne qui violerait les conditions générales d’utilisation. ::: @@ -24,7 +24,7 @@ En ignorant une personne, n’apparaîtront plus sur Misskey : Pour l’ignorer, ouvrez le menu sur son profil et cliquez sur le bouton « Ignorer ». -::: tip +:::tip Ces personnes ne sauront pas que vous les ignorez. ::: @@ -45,11 +45,11 @@ De plus ; Pour bloquer une personne, ouvrez le menu sur son profil et cliquez sur le bouton « Bloquer ». -::: warning +:::warning Vous ne recevrez pas de notification si une personne vous bloque, vous le saurez indirectement en étant incapable d’interagir avec son contenu. ::: -::: warning +:::warning Une personne bloquée pourra tout de même voir votre contenu en se déconnectant ou changeant de compte. Bloquer est une fonction simple mais pratique. Vous pouvez modifier vos paramètres de manière à rendre la tâche plus difficile aux personnes bloquées en demandant systématiquement votre autorisation pour vous suivre et en limitant votre visibilité auxpersonnes qui vous suivent. ::: diff --git a/content/fr-FR/docs/features/note.md b/content/fr-FR/.docs-legacy/features/note.md similarity index 98% rename from content/fr-FR/docs/features/note.md rename to content/fr-FR/.docs-legacy/features/note.md index c8e18228..3a555d6b 100644 --- a/content/fr-FR/docs/features/note.md +++ b/content/fr-FR/.docs-legacy/features/note.md @@ -12,11 +12,11 @@ Ajouter une note à vos [favoris](./favorite) vous permet de la retrouver facile Pour composer une note, cliquez sur l’un des boutons avec une icône de crayon de votre écran pour ovurir l’onglet (en tête de votre fil ou en pied de votre menu de navigation). Insérez le contenu souhaité et cliquez sur « Noter » pour la publier. Les notes peuvent contenir du texte, des fichiers multimédias, et des [sondages](./poll). De plus, vous pouvez utiliser le [MFM](./mfm) au sein de votre texte pour inclure des [mentions](./mention) et des [mots-croisillons](./hashtag). D’autres options comme l’avertissement de contenu (CW) ou la visibilité de note sont expliquées plus bas. -::: tip +:::tip Si vous êtes sur un ordinateur et qu’une image est dans votre presse-papier, vous pouvez l’insérer dans une note avec le raccourci usuel au sein du champ de texte. ::: -::: tip +:::tip Vous pouvez également utiliser Ctrl + Entrée dans le champ de texte pour publier la note. ::: @@ -24,7 +24,7 @@ Vous pouvez également utiliser Ctrl + Entrée dans le ch Désigne l’action de citer ou partager une note existante. La note résultante est appelée une Renote/RN du verbe renoter. Généralement, cette fonction est utilisée pour partager une note qui vous plait à votre propre cercle, ou pour republier une de vos anciennes notes. Bien que possible, renoter plusieurs fois la même note peut être mal vu. -::: warning +:::warning Si la visibilité de votre note est limitée à Directe ou aux personnes qui vous suivent, il ne sera pas possible de la renoter. ::: @@ -42,7 +42,7 @@ Il est possible de régler la visibilité de chaque note. En cliquant sur l’ic Votre note sera visible pour tout le monde et sera affichée dans tous les fils. -::: warning +:::warning Cette option n’est pas disponible si votre compte est limité. ::: @@ -74,7 +74,7 @@ Cette option permet à votre note de pas apparaître sur d’autres instances. En épinglant une note à votre profil, celle-ci sera constamment affichée en en-tête. Pour l’épingler, sélectionnez l’option dans le menu d’une note. -::: tip +:::tip Il est possible d’épingler plusieurs notes à son profil. ::: diff --git a/content/fr-FR/docs/features/online-status.md b/content/fr-FR/.docs-legacy/features/online-status.md similarity index 98% rename from content/fr-FR/docs/features/online-status.md rename to content/fr-FR/.docs-legacy/features/online-status.md index a1d02a43..84d3ae9a 100644 --- a/content/fr-FR/docs/features/online-status.md +++ b/content/fr-FR/.docs-legacy/features/online-status.md @@ -34,6 +34,6 @@ Votre état est affiché comme indicateur dans le coin de votre icône de profil Votre état de connexion change automatiquement et ne peut pas être réglé manuellement. Vous pouvez le rendre privé. -::: warning +:::warning Certaines fonctions comme les suggestions de membres, peuvent se baser sur votre état de connexion. Le rendre privé peut vous rendre difficile à trouver. ::: diff --git a/content/fr-FR/docs/features/pages.md b/content/fr-FR/.docs-legacy/features/pages.md similarity index 100% rename from content/fr-FR/docs/features/pages.md rename to content/fr-FR/.docs-legacy/features/pages.md diff --git a/content/fr-FR/docs/features/plugin.md b/content/fr-FR/.docs-legacy/features/plugin.md similarity index 100% rename from content/fr-FR/docs/features/plugin.md rename to content/fr-FR/.docs-legacy/features/plugin.md diff --git a/content/fr-FR/docs/features/reaction.md b/content/fr-FR/.docs-legacy/features/reaction.md similarity index 99% rename from content/fr-FR/docs/features/reaction.md rename to content/fr-FR/.docs-legacy/features/reaction.md index d0f99a06..e83fd812 100644 --- a/content/fr-FR/docs/features/reaction.md +++ b/content/fr-FR/.docs-legacy/features/reaction.md @@ -17,7 +17,7 @@ Les réactions étant exclusives à Misskey, l’action sera généralement trad Misskey ne possédant pas de « J’aime », ce type d’action depuis d’autres instances seront affichées comme un '👍'. -::: tip +:::tip L’administration de votre serveur peut modifier cela pour un '⭐'. Pour cela, voir [ici](../admin/default-reaction.md). ::: diff --git a/content/fr-FR/docs/features/share-form.md b/content/fr-FR/.docs-legacy/features/share-form.md similarity index 98% rename from content/fr-FR/docs/features/share-form.md rename to content/fr-FR/.docs-legacy/features/share-form.md index a7fe71c7..df221ed9 100644 --- a/content/fr-FR/docs/features/share-form.md +++ b/content/fr-FR/.docs-legacy/features/share-form.md @@ -6,7 +6,7 @@ Différentes options sont disponibles dans l’URL, dont le contenu partagé, en ## Paramètres de requête -::: tip +:::tip Tous les paramètres sont **facultatifs**. ::: @@ -45,7 +45,7 @@ Les options suivantes vous permettent de sélectionner la portée : | `visibleUserIds` | ID du profil cible | | `visibleAccts` | [acct](../glossary.md#acct) des profils cibles (séparés par des virgules) | -::: warning +:::warning Si `visibility` est réglé sur `specified`, `visibleUserIds` ou `visibleAccts` sont nécessaires. ::: diff --git a/content/fr-FR/docs/features/silence.md b/content/fr-FR/.docs-legacy/features/silence.md similarity index 100% rename from content/fr-FR/docs/features/silence.md rename to content/fr-FR/.docs-legacy/features/silence.md diff --git a/content/fr-FR/docs/features/theme.md b/content/fr-FR/.docs-legacy/features/theme.md similarity index 100% rename from content/fr-FR/docs/features/theme.md rename to content/fr-FR/.docs-legacy/features/theme.md diff --git a/content/fr-FR/docs/features/thread-mute.md b/content/fr-FR/.docs-legacy/features/thread-mute.md similarity index 96% rename from content/fr-FR/docs/features/thread-mute.md rename to content/fr-FR/.docs-legacy/features/thread-mute.md index 33954648..eaae5614 100644 --- a/content/fr-FR/docs/features/thread-mute.md +++ b/content/fr-FR/.docs-legacy/features/thread-mute.md @@ -1,6 +1,6 @@ # Ignore un fil -::: tip +:::tip Cette fonction est disponible depuis la version 12.95.0. ::: @@ -10,6 +10,6 @@ En ignorant un fil, vous recevrez plus de notifications de nouvelles réponses, Pour ignorer un fil sur Misskey Web, ouvrez le menu d’une note du fil et sélectionner « Ignorer le fil ». -::: warning +:::warning Le fil entier sera ignoré, peu importe de la note que vous sélectionnez. ::: diff --git a/content/fr-FR/docs/features/timeline.md b/content/fr-FR/.docs-legacy/features/timeline.md similarity index 100% rename from content/fr-FR/docs/features/timeline.md rename to content/fr-FR/.docs-legacy/features/timeline.md diff --git a/content/fr-FR/docs/features/webhook.md b/content/fr-FR/.docs-legacy/features/webhook.md similarity index 99% rename from content/fr-FR/docs/features/webhook.md rename to content/fr-FR/.docs-legacy/features/webhook.md index 0fcb9b2f..f802c998 100644 --- a/content/fr-FR/docs/features/webhook.md +++ b/content/fr-FR/.docs-legacy/features/webhook.md @@ -1,10 +1,10 @@ # Webhook -::: tip +:::tip Cette fonction est disponible à partir de la version 12.109.0. ::: -::: warning +:::warning C’est une fonction expérimentale qui peut être instable ou être modifiée à l’avenir. ::: diff --git a/content/fr-FR/docs/features/widgets.md b/content/fr-FR/.docs-legacy/features/widgets.md similarity index 100% rename from content/fr-FR/docs/features/widgets.md rename to content/fr-FR/.docs-legacy/features/widgets.md diff --git a/content/fr-FR/docs/features/word-mute.md b/content/fr-FR/.docs-legacy/features/word-mute.md similarity index 100% rename from content/fr-FR/docs/features/word-mute.md rename to content/fr-FR/.docs-legacy/features/word-mute.md diff --git a/content/fr-FR/docs/getting-started.md b/content/fr-FR/.docs-legacy/getting-started.md similarity index 98% rename from content/fr-FR/docs/getting-started.md rename to content/fr-FR/.docs-legacy/getting-started.md index 4216f140..08ab9d29 100644 --- a/content/fr-FR/docs/getting-started.md +++ b/content/fr-FR/.docs-legacy/getting-started.md @@ -5,10 +5,10 @@ Pour utiliser Misskey, vous devez créer un compte sur une instance et vous y co Vous pouvez sélectionner l’instance de votre choix depuis la [liste des instances](../instances.md). -::: tip +:::tip Peu importe l’importe choisie, vous serez en capacité de communiquer avec les autres instances. -::: Détails +:::Détails Misskey est capable de fédération. Misskey prend en charge la fédération de manière native, cela permet à différentes instances d’échanger, se suivre, réagir, et citer comme pour des notes comme sur une instance unique. diff --git a/content/fr-FR/docs/glossary.md b/content/fr-FR/.docs-legacy/glossary.md similarity index 100% rename from content/fr-FR/docs/glossary.md rename to content/fr-FR/.docs-legacy/glossary.md diff --git a/content/fr-FR/docs/install.md b/content/fr-FR/.docs-legacy/install.md similarity index 97% rename from content/fr-FR/docs/install.md rename to content/fr-FR/.docs-legacy/install.md index c059b8c4..ca34cef6 100644 --- a/content/fr-FR/docs/install.md +++ b/content/fr-FR/.docs-legacy/install.md @@ -2,11 +2,11 @@ Merci de votre intérêt à créer votre instance Misskey 🚀 Il existe différentes façons de créer votre instance, choisissez en une en bas et suivez le guide. -::: danger +:::danger Ne changez jamais le nom de domaine (hostname) d’une instance une fois celle-ci lancée ! ::: -::: danger +:::danger Si vous utilisez Cloudflare, n'utilisez pas le paramètre Auto Minify. Misskey ne fonctionnera pas correctement car Cloudflare n'interprétera pas le dernier JavaScript et cassera le code source à l'intérieur. diff --git a/content/en-US/docs/install/bash.md b/content/fr-FR/.docs-legacy/install/bash.md similarity index 99% rename from content/en-US/docs/install/bash.md rename to content/fr-FR/.docs-legacy/install/bash.md index e51561b5..90dcc1ff 100644 --- a/content/en-US/docs/install/bash.md +++ b/content/fr-FR/.docs-legacy/install/bash.md @@ -16,7 +16,7 @@ There is also an update script. 2. An Ubuntu Server 3. A Cloudflare Account (recommended) -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: diff --git a/content/en-US/docs/install/docker.md b/content/fr-FR/.docs-legacy/install/docker.md similarity index 98% rename from content/en-US/docs/install/docker.md rename to content/fr-FR/.docs-legacy/install/docker.md index dc51f9a7..265239ff 100644 --- a/content/en-US/docs/install/docker.md +++ b/content/fr-FR/.docs-legacy/install/docker.md @@ -3,11 +3,11 @@ Create Misskey instance with Docker Compose This guide describes how to install and setup Misskey with Docker Compose. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: tip Requirement +:::tip Requirement - docker and dockercompose installed ::: @@ -56,7 +56,7 @@ GLHF✨ How to update your Misskey server ---------------------------------------------------------------- -::: warning +:::warning When updating, be sure to check the [release notes](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) to know in advance the changes and whether or not additional work is required (in most cases, it is not). ::: diff --git a/content/fr-FR/docs/install/kubernetes.md b/content/fr-FR/.docs-legacy/install/kubernetes.md similarity index 98% rename from content/fr-FR/docs/install/kubernetes.md rename to content/fr-FR/.docs-legacy/install/kubernetes.md index 8b04e8e2..4e1c6aaa 100644 --- a/content/fr-FR/docs/install/kubernetes.md +++ b/content/fr-FR/.docs-legacy/install/kubernetes.md @@ -1,14 +1,14 @@ # Create Misskey Instance with Kubernetes/TrueNAS This guide describes how to install and setup Misskey using Kubernetes and Helm charts. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: ## TrueCharts and TrueNAS Scale The Helm chart for Misskey is hosted on TrueCharts which is a repository designed to be used with TrueNAS Scale, but its charts can also be installed as normal Helm charts. The [TrueCharts](https://truecharts.org/charts/incubator/misskey/) site has a list of all the charts available as well as documentation on how to install. The TrueCharts [Discord](https://discord.gg/Ax9ZgzKx9t) server is also a resource that can be used if you have questions. Misskey is currently on the *incubator* train. -::: tip Requirements +:::tip Requirements - TrueNAS Scale OR - Kubernetes cluster and Helm diff --git a/content/fr-FR/docs/install/manual.md b/content/fr-FR/.docs-legacy/install/manual.md similarity index 99% rename from content/fr-FR/docs/install/manual.md rename to content/fr-FR/.docs-legacy/install/manual.md index d33aa641..986f9a7f 100644 --- a/content/fr-FR/docs/install/manual.md +++ b/content/fr-FR/.docs-legacy/install/manual.md @@ -6,7 +6,7 @@ This guide describes how to install and setup Misskey. ---------------------------------------------------------------- -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: @@ -113,7 +113,7 @@ Just `NODE_ENV=production pnpm run start`. GLHF! 2. Edit it, and paste this and save: - ::: details + :::details ``` [Unit] Description=Misskey daemon @@ -149,7 +149,7 @@ You can check if the service is running with `systemctl status misskey`. 1. Copy the following text to `/etc/init.d/misskey`: - ::: details + :::details ```sh #!/sbin/openrc-run diff --git a/content/fr-FR/docs/misskey-hub.md b/content/fr-FR/.docs-legacy/misskey-hub.md similarity index 98% rename from content/fr-FR/docs/misskey-hub.md rename to content/fr-FR/.docs-legacy/misskey-hub.md index 83f44df3..f185e612 100644 --- a/content/fr-FR/docs/misskey-hub.md +++ b/content/fr-FR/.docs-legacy/misskey-hub.md @@ -4,7 +4,7 @@ L’objectif est d’en faire un pilier central pour tout ce qui a lien avec Mi Misskey Hub est [libre](https://github.com/misskey-dev/misskey-hub). -::: tip +:::tip Misskey Hub est un site static construit via [VuePress](https://github.com/vuepress/vuepress-next). ::: diff --git a/content/fr-FR/docs/misskey.md b/content/fr-FR/.docs-legacy/misskey.md similarity index 99% rename from content/fr-FR/docs/misskey.md rename to content/fr-FR/.docs-legacy/misskey.md index 9bf97c90..13948ce0 100644 --- a/content/fr-FR/docs/misskey.md +++ b/content/fr-FR/.docs-legacy/misskey.md @@ -5,7 +5,7 @@ Misskey est une plateforme libre et distribuée de microblogage. Son développem ## Historique D’abord pensé comme un tableau public, le gain en popularité suite à l’ajout d’un fil d’actualité (permettant aux membres de publier des messages courts et de les visualiser dans un ordre chronologique) a opéré un changement graduel du développement vers ce type de fonctionnalité. Misskey n’a pas toujours été un service décentralisé et l’est devenu avec l’adoption d’ActivityPub en 2018. C’est depuis lors un service utilisé et reconnu par la population. -::: tip +:::tip Le nom « Misskey » vient de la chanson « Brain Diver » d’un groupe, alors appelé May’n, que syuilo écoutait. ::: @@ -17,7 +17,7 @@ Un service distribué ou décentralizé, désigne un service où l ## Code ouvert Misskey a toujours été, et sera toujours, libre. De manière simplifiée, cela signifie rendre visible au public le code source d’un logiciel.. Cela permet également de modifier ou redistribuer le code. L’intégralité du [code de Misskey](https://github.com/misskey-dev) est sous licence [AGPL](https://github.com/misskey-dev/misskey/blob/develop/LICENSE), ce qui signifie que vous êtes libre de l’auditer, utiliser, modifier, et redistribuer de manière à assurer qu’il ne contient rien de dangereux et pouvoir participer à son développement. Pour concrétiser la nature distribuée de Misskey, cet aspect libre est indispensable. Comme précédemment, les services à but lucratif comme Twitter ou Facebook n’ont pas de code ouvert. -::: tip +:::tip Techniquement, le code source de Misskey est géré via Git, et son dépot est hébergé sur [GitHub.](https://github.com/misskey-dev). ::: diff --git a/content/fr-FR/docs/releases.md b/content/fr-FR/.docs-legacy/releases.md similarity index 99% rename from content/fr-FR/docs/releases.md rename to content/fr-FR/.docs-legacy/releases.md index fe3a9795..62f7f2e7 100644 --- a/content/fr-FR/docs/releases.md +++ b/content/fr-FR/.docs-legacy/releases.md @@ -1,7 +1,7 @@ # Release Notes Notes for indivudual misskey releases. -::: tip +:::tip Information updates may not be translated yet. For the latest information see [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: @@ -743,6 +743,6 @@ Released at: 12/03/2021 - client: fixed an issue where "All" in user search did not work - client: fixed the style of the Reaction List and Renote List tooltips -::: warning +:::warning Older releases are not translated yet. If you can, please edit this page to add them from the Japanese changelog on [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: diff --git a/content/fr-FR/docs/tips/disable-timelines.md b/content/fr-FR/.docs-legacy/tips/disable-timelines.md similarity index 99% rename from content/fr-FR/docs/tips/disable-timelines.md rename to content/fr-FR/.docs-legacy/tips/disable-timelines.md index 7f58f693..f9476eb7 100644 --- a/content/fr-FR/docs/tips/disable-timelines.md +++ b/content/fr-FR/.docs-legacy/tips/disable-timelines.md @@ -3,7 +3,7 @@ Dans Misskey, il est possible d’activer ou désactiver individuellement les LT Toutes les publications de votre instance étant disponibles dans le LTL et le STL, ils permettent aux nouveaux membres de trouver des personnes qui les intéressent sans avoir à manuellement les rechercher. À l’inverse, cela rend moins important de suivre des personnes pour voir leur activité et les publications inappropriées peuvent apparaître plus fréquemment. De plus, l’expérience se rapproche d’un salon de discussion où il est plus difficile de trouver sa place parmi les personnes plus anciennes. Cette balance variant selon les serveurs, le choix a été laissé à chaque instance. Si vous penser que les coûts sont trop importants, nous vous invitons à désactiver ces fils. -::: warning +:::warning Désactiver ces fils peuvent amener une certaine confusion et entraîner une diminution temporaire du nombre de membres. Pensez à bien réflechir à cela avant tout action, et de l’expliquer à vos membres en leur laissant le temps de se préparer en s’abonnant aux personnes avec qui elles interagissent fréquemment. ::: diff --git a/content/fr-FR/docs/troubleshooting.md b/content/fr-FR/.docs-legacy/troubleshooting.md similarity index 99% rename from content/fr-FR/docs/troubleshooting.md rename to content/fr-FR/.docs-legacy/troubleshooting.md index 3c3aa187..797a983a 100644 --- a/content/fr-FR/docs/troubleshooting.md +++ b/content/fr-FR/.docs-legacy/troubleshooting.md @@ -3,7 +3,7 @@ description: 'En cas de problème, d’abord consulter cette page.' --- # Dépannage -::: Astuce +:::Astuce Également voir la [Foire Aux Questions](./faq.md). ::: @@ -32,7 +32,7 @@ Veuillez essayer de : ## Des parties de l’interface sont étranges (ex : Fond transparent) Une interface cassée peut être due au cache système du thème lorsque l’interface est modifiée suite à une mise à jour. La fonction « Vider le cache » dans les paramètres résoudra ce problème. -::: Attention +:::Attention Il est ici question du cache « Client », pas celui du « Navigateur ». ::: diff --git a/content/fr-FR/README.md b/content/fr-FR/README.md deleted file mode 100644 index 9877a848..00000000 --- a/content/fr-FR/README.md +++ /dev/null @@ -1,85 +0,0 @@ ---- -layout: Landing - -description: "Misskey est une plateforme libre et décentralisée de média social qui sera toujours gratuite !" -gettingStarted: "Allons-y !" -learnMore: "En savoir plus" -keyFeatures: - open: - title: "Libre" - description: "Misskey est un logiciel libre auquel tout le monde peut contribuer et qui est utilisable gratuitement tout le temps et partout." - federated: - title: "Féderée" - description: "Misskey est une plateforme décentralisée où les communautées de différentes instances peuvent interagir ensemble." - multifunction: - title: "Puissante" - description: "Misskey est à la fois simple à prendre en main et plein de fonctions avancées." - customizable: - title: "Personnalisable" - description: "Personnalisez Misskey ! Avec des thèmes, des extensions, des présentations, et plus encores, faites de Misskey la plateforme que vous voulez." -sections: - federatedSoftware: - title: "Misskey est une plateforme décentralisée." - description: "Misskey est une simple plateforme pour les propriétaires de serveurs souhaitant créer leur propre instance Misskey, et échanger ensemble ! Il existe de grandes instances pour les foules, de plus petites pour les groupes et sous-cultures, et même des instances pour des personnes et leur cercle de proches. Vous voulez encore plus de contrôle ? Vous pouvez créer votre propre instance sur votre serveur très simplement, coupant les ponts avec les grandes entreprises qui cherchent à vous espionner et vendre vos données. Misskey est destiné aux communautés et l’échange, pas les enterprises et leur technologie. Des proches ne sont pas sur Misskey ? Aucun soucis ! Misskey fait partie du Fédivers (ActivityPub), vous pourrez interagir avec des personnes d’autres plateformes comme Mastodon, PixelFed, PeerTube, et plus encore !" - features: - title: "Fonctionnalités" - description: "Misskey dispose d’un large choix de fonctionnalités uniques !" - list: - note: - title: "Note" - description: "Sur Misskey, les publications sont appelées des « Notes ». Répondez, citez, ajoutez des émoticônes personnalisés, du texte animé, des avertissements de contenu, des images, des vidéos, des GIFs, des fichiers audio, et plus encore !" - reaction: - title: "Réactions" - description: "Vous pouvez ajouter des émoticônes à n’importe quelle publication ! Adieu la limitation d’un bouton « J’aime », partagez vos émotions via un simple bouton." - theme: - title: "Thème" - description: "Pourquoi se limiter à un thème clair et un thème sombre alors que vous contrôlez toutes les couleurs ? Utilisez les fonctions de personnalisation intuitives de Misskey pour le rendre unique." - charts: - title: "Diagrammes" - description: "Besoin d’informations ? Misskey offre des diagrammes pour savoir exactement ce qu’il se passe en direct." - federation: - title: "Féderation" - description: "Pas sur Misskey ? Pas de soucis ! Non seulement les instances Misskey peuvent interagir, mais vous pouvez également communiquer avec d’autres réseaux comme Mastodon et PixelFed !" - drive: - title: "Drive" - description: "Vous détestez perdre votre contenu ? Drive vous offre un stockage en ligne, puissant et contrôlé, directment dans votre média social !" - thread: - title: "Fils" - description: "Vous avez la parlotte ? Faites un fil ! Chaque publication peut contenir jusqu’à 3000 caractères par défaut, de quoi faire durer vos conversations durant de longues heures." - widgets: - title: "Extensions" - description: "Disposez de nombreuses fonctions à portée de doigt avec plus d’une douzaine d’extensions personnalisables !" - gettingStarted: - title: "Rejoignez Misskey aujourd’hui !" - find: - title: "Trouvez une instance !" - list: "Liste d’instances" - create: - title: "Créer votre instance" - guide: "Guide d’installation" - docs: - title: "En savoir plus" - docs: "Consulter la documentation" - donation: - title: "Donation" - description: "Misskey étant un logiciel gratit, son développement repose sur vos dons. Si vous aimez Misskey, montrez le via une donation qui nous permettra de continuer à garder Misskey fabuleux durant les années à venir !" - sponsors: - title: "Sponsors" ---- - - diff --git a/content/fr-FR/appendix/assets.md b/content/fr-FR/appendix/assets.md deleted file mode 100644 index 3cd841a7..00000000 --- a/content/fr-FR/appendix/assets.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -description: 'Liste de logos, icônes, et autres ressources Misskey.' ---- - -# Liste de ressources -Voici une liste de logos, icônes, et autres ressources Misskey. - -::: tip -Ces ressources sont libres d’utilisation sous la licence **CC BY-NC-SA** !🎉 - -CC BY-NC-SA -::: - -::: tip -Toutes les ressources sont disponibles dans [misskey-dev/assets](https://github.com/misskey-dev/assets). -::: - -## Logo - - - - -## Icône - - - - - diff --git a/content/fr-FR/help.md b/content/fr-FR/help.md deleted file mode 100644 index c6f1bc0c..00000000 --- a/content/fr-FR/help.md +++ /dev/null @@ -1,3 +0,0 @@ -# Aide - -- [Liste de fonctions](./docs/features/index.md) diff --git a/content/fr-FR/home.md b/content/fr-FR/home.md deleted file mode 100644 index 52d210f1..00000000 --- a/content/fr-FR/home.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -home: true -title: Misskey Hub -heroImage: /banner.svg -tagline: Site officiel de la plateforme ouverte de microblogage interplanétaire Misskey -footer: Copyright © 2023 syuilo et autres contributeur·ice·s -actions: - - text: Débuter - link: ./docs/getting-started - type: primary - - text: Qu’est ce que Misskey? - link: ./docs/misskey - type: secondary -features: - - title: Distribué 🪐 - details: Independent communities are run on multiple servers, and these are interconnected. - - title: Léger 🚀 - details: Because it uses Node.js, which runs at high speed, it is lightweight even when federated with a large number of servers. - - title: Fun 🍮 - details: It has distinctive features such as reactions and a highly customizable UI. ---- - - - - - -
- -# Sponsors -
- RSS3 -
-
- - diff --git a/content/fr-FR/instances.md b/content/fr-FR/instances.md deleted file mode 100644 index e1e85177..00000000 --- a/content/fr-FR/instances.md +++ /dev/null @@ -1,17 +0,0 @@ -# Liste d’instances -::: tip -Si vous souhaitez voir votre instance dans cette liste, contactez nous via [Discord](https://discord.gg/Wp8gVStHW3) ou faites une PullRequest sur le dépot [GitHub](https://github.com/misskey-dev/misskey-hub) de ce site. -::: - - - -Vous pouvez également trouver une instance depuis la [liste non-officielle d’instances](https://join.misskey.page/en-US/instances). - - diff --git a/content/fr-FR/plugins.md b/content/fr-FR/plugins.md deleted file mode 100644 index 4f608e81..00000000 --- a/content/fr-FR/plugins.md +++ /dev/null @@ -1,12 +0,0 @@ -# Liste d’extension -Une liste d’[extensions](./docs/features/plugin.md) que vous pouvez installer depuis l’interface web Misskey. - -::: tip -Si vous souhaitez ajouter votre extension ici, veuillez vous référer à la [section à ce sujet](#Soumettre-une-extension). -::: - -## Extensions -- TODO - -## Soumettre une extension -TODO diff --git a/content/fr-FR/updates.md b/content/fr-FR/updates.md deleted file mode 100644 index 3aa384f7..00000000 --- a/content/fr-FR/updates.md +++ /dev/null @@ -1,3 +0,0 @@ -# Modifications récentes - - diff --git a/content/it-IT/docs/admin/cdn.md b/content/it-IT/.docs-legacy/admin/cdn.md similarity index 99% rename from content/it-IT/docs/admin/cdn.md rename to content/it-IT/.docs-legacy/admin/cdn.md index 78124b6e..7615f730 100644 --- a/content/it-IT/docs/admin/cdn.md +++ b/content/it-IT/.docs-legacy/admin/cdn.md @@ -12,6 +12,6 @@ Però non tutta Misskey può essere "cachata", le API non devono esserlo. Dunque - Metti in cache tutte le richieste, tranne: `/api/*`. -::: tip +:::tip Non è necessario svuotare la cache quando aggiorni Misskey. :::: diff --git a/content/it-IT/docs/admin/default-reaction.md b/content/it-IT/.docs-legacy/admin/default-reaction.md similarity index 100% rename from content/it-IT/docs/admin/default-reaction.md rename to content/it-IT/.docs-legacy/admin/default-reaction.md diff --git a/content/it-IT/docs/admin/emoji.md b/content/it-IT/.docs-legacy/admin/emoji.md similarity index 99% rename from content/it-IT/docs/admin/emoji.md rename to content/it-IT/.docs-legacy/admin/emoji.md index 0d73467a..4994f95b 100644 --- a/content/it-IT/docs/admin/emoji.md +++ b/content/it-IT/.docs-legacy/admin/emoji.md @@ -18,7 +18,7 @@ Considera che quella emoji potrebbe essere soggetta al diritto d'autore e marchi Se hai una immagine che vuoi convertire in una emoji personalizzata, puoi importarla. Funziona come allegare una immagine ad una nota. Carichi un nuovo file, scegli dal tuo Drive o indichi la URL dove si trova l'immagine. -::: danger +:::danger Quando importi la emoji dal tuo Drive, il file rimarrà lì dove si trova. Misskey non lo copia, se fosse eliminato la emoji risulterebbe rotta. ::: @@ -29,7 +29,7 @@ Le emoji possono essere importate in modo massiccio da pacchetti in formato ZIP, Questa funzionalità si trova nel menu a pallini (...) in alto a destra nella pagina **Emoji Personalizzati**. -::: warning +:::warning Una importazione massiccia potrebbe sovrascrivere quelle esistenti oppure danneggiare la tua istanza. Assicurati di importare emoji solamente da fonti affidabili. L'ideale sarebbe che fossero importate solo quelle esportate da te. ::: @@ -84,7 +84,7 @@ Per ogni `Emoji`: Le proprietà di una emoji si modificano cliccandola nella lista di quelle _Locali_ Comparirà una finestra di dialogo in cui modificare i parametri oppure eliminare la emoji. -::: danger +:::danger Quando elimini una emoji personalizzata, le vecchie note che la contenevano inizieranno a mostrare invece il testo (campo `name`). E non potranno essere più rappresentate correttamente. ::: diff --git a/content/it-IT/docs/admin/nginx.md b/content/it-IT/.docs-legacy/admin/nginx.md similarity index 100% rename from content/it-IT/docs/admin/nginx.md rename to content/it-IT/.docs-legacy/admin/nginx.md diff --git a/content/it-IT/docs/admin/push-docker-hub.md b/content/it-IT/.docs-legacy/admin/push-docker-hub.md similarity index 100% rename from content/it-IT/docs/admin/push-docker-hub.md rename to content/it-IT/.docs-legacy/admin/push-docker-hub.md diff --git a/content/it-IT/docs/admin/troubleshooting.md b/content/it-IT/.docs-legacy/admin/troubleshooting.md similarity index 99% rename from content/it-IT/docs/admin/troubleshooting.md rename to content/it-IT/.docs-legacy/admin/troubleshooting.md index 3d03384b..723179a2 100644 --- a/content/it-IT/docs/admin/troubleshooting.md +++ b/content/it-IT/.docs-legacy/admin/troubleshooting.md @@ -4,7 +4,7 @@ description: "Leggi questa pagina quando ci sono degli errori" # Soluzione agli errori di installazione -::: tip +:::tip Per prima cosa, leggi attentamente la [guida di installazione](../install/manual.html). ::: diff --git a/content/it-IT/docs/api/app.md b/content/it-IT/.docs-legacy/api/app.md similarity index 100% rename from content/it-IT/docs/api/app.md rename to content/it-IT/.docs-legacy/api/app.md diff --git a/content/it-IT/docs/api/common.json5 b/content/it-IT/.docs-legacy/api/common.json5 similarity index 100% rename from content/it-IT/docs/api/common.json5 rename to content/it-IT/.docs-legacy/api/common.json5 diff --git a/content/it-IT/docs/api/index.md b/content/it-IT/.docs-legacy/api/index.md similarity index 98% rename from content/it-IT/docs/api/index.md rename to content/it-IT/.docs-legacy/api/index.md index 3a7466bd..a826fa94 100644 --- a/content/it-IT/docs/api/index.md +++ b/content/it-IT/.docs-legacy/api/index.md @@ -9,7 +9,7 @@ Misskey espone una API che puoi usare per sviluppare client mobile, servizi web Abbiamo anche una **API di streaming** per ccreare applicazioni con caratteristiche push, in realtime. -::: tip +:::tip Usando la SDK ufficiale di Misskey, o librerie di terze parti, puoi fruire della API in modo più conveniente. Per esempio semplificando alcuni dei passi descritti in questa pagina. ::: @@ -21,7 +21,7 @@ Questa pagina ti spiega passo passo come ottenerlo e le basi per fruire delle AP Le API, in generale, richiedono l'accesso autenticato da un token. Si tratta di un set di credenziali associate ad un profilo, che lo identificano e controllano quali operazioni sia autorizzato a svolgere quello specifico token. -::: tip +:::tip Tra il profilo e i token c'è la relazione uno-a-molti, significa che per ogni profilo si possono creare più token (anche con diversi livelli di privilegi) ::: @@ -34,7 +34,7 @@ Ci sono due modi per ottenere il token: Per ottenere un token per il proprio profilo, è sufficiente aprire il proprio profilo in Misskey e, nelle impostazioni, scegliere il menu API. Da lì, seguire le indicazioni. -::: danger +:::danger Fai attenzione! Non condividere il token con nessuno, deve rimanere segreto, altrimenti qualcuno potrebbe ottenere l'accesso del profilo. ::: @@ -42,7 +42,7 @@ Fai attenzione! Non condividere il token con nessuno, deve rimanere segreto, alt Per richiedere il token di accesso per un altro profile, occorre inizializzare la richiesta come indicato. -::: tip +:::tip 以下に説明する方法は、アプリを作成せずインスタントにアクセストークンを発行する、MiAuthと呼ばれるものです。 @@ -53,7 +53,7 @@ Per richiedere il token di accesso per un altro profile, occorre inizializzare l Genera un UUID (identificativo unico dell'utente). Da ora in poi lo chiameremo _ID Sessione_. -::: danger +:::danger L'**ID Sessione** dovrebbe essere generato ogni volta e mai riutilizzato. ::: @@ -77,7 +77,7 @@ Si possono anche aggiungere alcune opzioni, come parametri GET nella URL: | `callback` | Indirizzo URL a cui reindirizzare dopo l'autenticazione (con **ID Sessione** aggiunto come parametro GET denominato `session`) | | `permission` | I permessi richiesti dall'applicazione. Permessi multipli vanno suddivisi con la virgola `,` | -::: tip Esempio concreto +:::tip Esempio concreto ```:no-line-numbers https://misskey.io/miauth/c1f6d42b-468b-4fd2-8274-e58abdedef6f?name=MyApp&callback=https%3A%2F%2Fmyapp.example.com%2Fcallback&permisson=write:notes,write:following,read:drive @@ -108,7 +108,7 @@ Le proprietà incluse nella risposta sono le seguenti: Una volta che hai ottenuto il **token di accesso** puoi usare le API inviando richieste HTTP alle varie risorse. -::: tip +:::tip - HTTP APIはすべてPOSTで、リクエスト/レスポンスともにJSON形式です(drive/files/createを除く)。 - 要求ヘッダーに`Content-Type: application/json`を指定します。 @@ -129,10 +129,10 @@ Il **token di accesso** deve essere incluso nel corpo nella richiesta, in un par In aggiunta alle API HTTP, Misskey mette a disposizione anche le [Streaming API](./streaming/). -::: warning +:::warning Le API di Misskey non sono RESTful. ::: -::: tip +:::tip La tua istanza Misskey mette a disposizione il **Catalogo delle API** e la documentazione, al seguente indirizzo: `/api-doc` ::: diff --git a/content/it-IT/docs/api/streaming/channel/global-timeline.md b/content/it-IT/.docs-legacy/api/streaming/channel/global-timeline.md similarity index 100% rename from content/it-IT/docs/api/streaming/channel/global-timeline.md rename to content/it-IT/.docs-legacy/api/streaming/channel/global-timeline.md diff --git a/content/it-IT/docs/api/streaming/channel/home-timeline.md b/content/it-IT/.docs-legacy/api/streaming/channel/home-timeline.md similarity index 100% rename from content/it-IT/docs/api/streaming/channel/home-timeline.md rename to content/it-IT/.docs-legacy/api/streaming/channel/home-timeline.md diff --git a/content/it-IT/docs/api/streaming/channel/hybrid-timeline.md b/content/it-IT/.docs-legacy/api/streaming/channel/hybrid-timeline.md similarity index 100% rename from content/it-IT/docs/api/streaming/channel/hybrid-timeline.md rename to content/it-IT/.docs-legacy/api/streaming/channel/hybrid-timeline.md diff --git a/content/it-IT/docs/api/streaming/channel/index.md b/content/it-IT/.docs-legacy/api/streaming/channel/index.md similarity index 100% rename from content/it-IT/docs/api/streaming/channel/index.md rename to content/it-IT/.docs-legacy/api/streaming/channel/index.md diff --git a/content/it-IT/docs/api/streaming/channel/local-timeline.md b/content/it-IT/.docs-legacy/api/streaming/channel/local-timeline.md similarity index 100% rename from content/it-IT/docs/api/streaming/channel/local-timeline.md rename to content/it-IT/.docs-legacy/api/streaming/channel/local-timeline.md diff --git a/content/it-IT/docs/api/streaming/channel/main.md b/content/it-IT/.docs-legacy/api/streaming/channel/main.md similarity index 100% rename from content/it-IT/docs/api/streaming/channel/main.md rename to content/it-IT/.docs-legacy/api/streaming/channel/main.md diff --git a/content/it-IT/docs/api/streaming/index.md b/content/it-IT/.docs-legacy/api/streaming/index.md similarity index 99% rename from content/it-IT/docs/api/streaming/index.md rename to content/it-IT/.docs-legacy/api/streaming/index.md index 4c1aaf0e..429dd7c6 100644 --- a/content/it-IT/docs/api/streaming/index.md +++ b/content/it-IT/.docs-legacy/api/streaming/index.md @@ -4,7 +4,7 @@ description: "La Streaming API mette a disposizione informazioni in real-time (e # Streaming API -::: tip +:::tip Prima di continuare, dovresti aver già letto [Le API di Misskey](../index.md). ::: @@ -23,7 +23,7 @@ wss://{host}/streaming?i={token} - `{host}` È il dominio dell'istanza a cui connettersi - `{token}` È il token di accesso ottenuto in precedenza -::: tip +:::tip Puoi anche connetterti senza il token di accesso, ma in questo caso otterrai informazioni limitate e svolgere attività limitate. ::: @@ -36,7 +36,7 @@ Dopo aver aperto la connessione al flusso, potrai iscriverti ai post come descri La Streaming API di Misskey ha il concetto dei canali. Con questo stratagemma si possono separare le informazioni da spedire e ricevere. Entrando in un canale del flusso potrai ricevere vari tipi di informazione e spedirne di altre. -::: tip +:::tip Puoi entrare in più canali contemporaneamente con una unica connessione al flusso. ::: @@ -63,7 +63,7 @@ Per entrare in un canale del flusso, spedisci i seguenti dati in formato JSON: - `id` è un identificativo arbitrario pe interagire col canale. Necessario per indentificare da quale canale proviene il messaggio, perché il flusso contiene più canali. Potrebbe essere un UUID oppure un numero casuale. - `params` sono i parametri richiesti per entrare nel canale. Ogni canale necessita dei suoi paremtri specifici. Quando entri in un canale che non necessita di parametri, questo valore può essere ommesso (opzionale) -::: tip +:::tip L' ID non è per canale ma _per ingresso al canale_, poiché potrebbe essere neccessario entrarci più volte ma con parametri diversi. ::: diff --git a/content/it-IT/docs/api/streaming/note-capture-events.md b/content/it-IT/.docs-legacy/api/streaming/note-capture-events.md similarity index 100% rename from content/it-IT/docs/api/streaming/note-capture-events.md rename to content/it-IT/.docs-legacy/api/streaming/note-capture-events.md diff --git a/content/it-IT/docs/faq.md b/content/it-IT/.docs-legacy/faq.md similarity index 100% rename from content/it-IT/docs/faq.md rename to content/it-IT/.docs-legacy/faq.md diff --git a/content/it-IT/docs/features/ads.md b/content/it-IT/.docs-legacy/features/ads.md similarity index 98% rename from content/it-IT/docs/features/ads.md rename to content/it-IT/.docs-legacy/features/ads.md index b80bd9a8..4eb8542e 100644 --- a/content/it-IT/docs/features/ads.md +++ b/content/it-IT/.docs-legacy/features/ads.md @@ -4,7 +4,7 @@ Misskey ha una funzione che permette agli amministratori di mostrare annunci pro Selezionando l'icona (i), visibile nell'angolo in alto a destra dell'annuncio, si può ridurre la frequenza di visualizzazione. -::: tip +:::tip Anche riducendo la frequenza, è possibile che gli annunci rimangano comunque visibili. ::: diff --git a/content/it-IT/docs/features/antenna.md b/content/it-IT/.docs-legacy/features/antenna.md similarity index 100% rename from content/it-IT/docs/features/antenna.md rename to content/it-IT/.docs-legacy/features/antenna.md diff --git a/content/it-IT/docs/features/charts.md b/content/it-IT/.docs-legacy/features/charts.md similarity index 100% rename from content/it-IT/docs/features/charts.md rename to content/it-IT/.docs-legacy/features/charts.md diff --git a/content/it-IT/docs/features/clip.md b/content/it-IT/.docs-legacy/features/clip.md similarity index 100% rename from content/it-IT/docs/features/clip.md rename to content/it-IT/.docs-legacy/features/clip.md diff --git a/content/it-IT/docs/features/custom-emoji.md b/content/it-IT/.docs-legacy/features/custom-emoji.md similarity index 100% rename from content/it-IT/docs/features/custom-emoji.md rename to content/it-IT/.docs-legacy/features/custom-emoji.md diff --git a/content/it-IT/docs/features/deck.md b/content/it-IT/.docs-legacy/features/deck.md similarity index 100% rename from content/it-IT/docs/features/deck.md rename to content/it-IT/.docs-legacy/features/deck.md diff --git a/content/it-IT/docs/features/drive.md b/content/it-IT/.docs-legacy/features/drive.md similarity index 98% rename from content/it-IT/docs/features/drive.md rename to content/it-IT/.docs-legacy/features/drive.md index 00fe63e6..898267d3 100644 --- a/content/it-IT/docs/features/drive.md +++ b/content/it-IT/.docs-legacy/features/drive.md @@ -2,7 +2,7 @@ Il **Drive** è una caratteristica che ti permette di gestire i file caricati su Misskey. -::: tip +:::tip Tecnicamente, il drive può essere visto come uno strumento gestito in modo centralizzato da Misskey ma anche aperto ai vari profili locali ::: @@ -12,7 +12,7 @@ I file caricati nel Drive possono essere scaricati sempre. Possono anche essere Per comodità puoi organizzare i file in cartelle, anche solo per raggrupparli. -::: warning +:::warning Quando elimini un file dal Drive, **verranno eliminati anche i contenuti a cui è allegato** (Note, pagine, ecc...) ::: diff --git a/content/it-IT/docs/features/favorite.md b/content/it-IT/.docs-legacy/features/favorite.md similarity index 100% rename from content/it-IT/docs/features/favorite.md rename to content/it-IT/.docs-legacy/features/favorite.md diff --git a/content/it-IT/docs/features/follow.md b/content/it-IT/.docs-legacy/features/follow.md similarity index 98% rename from content/it-IT/docs/features/follow.md rename to content/it-IT/.docs-legacy/features/follow.md index 9d3dee4a..5c0b99a2 100644 --- a/content/it-IT/docs/features/follow.md +++ b/content/it-IT/.docs-legacy/features/follow.md @@ -6,7 +6,7 @@ Per seguire un utente, seleziona il bottone «Segui», visitando il profilo stes Clicca di nuovo, per interrompere il follow. -::: tip +:::tip Se compare la scritta «in elaborazione...» significa che quel profilo valuterà se approvare o meno la tua richiesta. Oppure che si sono verificati degli impedimenti causati dalla istanza remota. diff --git a/content/it-IT/docs/features/index.md b/content/it-IT/.docs-legacy/features/index.md similarity index 100% rename from content/it-IT/docs/features/index.md rename to content/it-IT/.docs-legacy/features/index.md diff --git a/content/it-IT/docs/features/mfm.md b/content/it-IT/.docs-legacy/features/mfm.md similarity index 98% rename from content/it-IT/docs/features/mfm.md rename to content/it-IT/.docs-legacy/features/mfm.md index 3e83146c..3874d79f 100644 --- a/content/it-IT/docs/features/mfm.md +++ b/content/it-IT/.docs-legacy/features/mfm.md @@ -6,7 +6,7 @@ description: "MFM è uno speciale linguaggio di marcatura del testo che può ess Uno speciale linguaggio di marcatura del testo che può essere usato in varie zone di Misskey. -::: tip +:::tip Alcune parti sono compatibili con MarkDown ::: @@ -65,7 +65,7 @@ Il testo racchiuso da `**` due asterischi, diventerà grassetto, o bold. --- -::: tip +:::tip Puoi trovare più esempi nella pagina **Bigliettino MFM** che trovi presso la tua istanza, all'indirizzo `/mfm-cheat-sheet` ::: diff --git a/content/it-IT/docs/features/mute-and-block.md b/content/it-IT/.docs-legacy/features/mute-and-block.md similarity index 97% rename from content/it-IT/docs/features/mute-and-block.md rename to content/it-IT/.docs-legacy/features/mute-and-block.md index 9e7c8bd7..92db01de 100644 --- a/content/it-IT/docs/features/mute-and-block.md +++ b/content/it-IT/.docs-legacy/features/mute-and-block.md @@ -6,11 +6,11 @@ In alternativa, puoi bloccarlo per impedirgli di vedere i tuoi contenuti o inter Le persone non sapranno che le hai silenziate, ma sapranno di esser state bloccate. Sta a te decidere. -::: tip +:::tip Silenziare e Bloccare, non si escludono. Possono essere usati simultaneamente. ::: -::: warning +:::warning Considera l'eventualità di segnalare contenuti fastidiosi da altri profili, se violano il regolamento della tua istanza. ::: @@ -27,7 +27,7 @@ Quando silenzi un profilo, smetterai di vedere i seguenti contenuti: Per silenziare un profilo, visita la pagina del profilo e apri il menu, in fine scegli **Silenzia** -::: tip +:::tip Il profilo Silenziato non riceverà alcuna notifica e non saprà mai di essere stato silenziato. ::: @@ -49,10 +49,10 @@ Inoltre... Per **Bloccare** un profilo, apri il menu nella pagina e scegli Blocca dal menu. -::: warning +:::warning Il profilo bloccato non riceverà alcuna notifica ma indirettamente ne sarà consapevole, poiché non sarà in grado di svolgere alcuna azione nei tuoi confronti. ::: -::: warning +:::warning L'altra persona non sarà in grado di vedere i tuoi contenuti tramite quel profilo, ma potrebbe riuscirci cambiando profilo oppure scollegandosi. ::: diff --git a/content/it-IT/docs/features/note.md b/content/it-IT/.docs-legacy/features/note.md similarity index 98% rename from content/it-IT/docs/features/note.md rename to content/it-IT/.docs-legacy/features/note.md index 4ae149a1..ceb3a673 100644 --- a/content/it-IT/docs/features/note.md +++ b/content/it-IT/.docs-legacy/features/note.md @@ -17,11 +17,11 @@ Le note possono contenere testi o allegati, come immagini o video. Oppure anche Inoltre, sfruttando [MFM](./mfm) nel testo, puoi anche includere [Menzioni](./mention) e [Hashtag](./hashtag). C'è anche la funzionalità ContentWarning e la scelta per l'ambito di pubblicazione. -::: tip +:::tip Se sei al computer e hai copiato una immagine nel blocco appunti, poi allegarla semplicemente usando **Incolla** all'interno del campo di testo. ::: -::: tip +:::tip Puoi anche premere Ctrl + Invio mentre digiti, per pubblicare immediatamente la Nota. ::: @@ -31,7 +31,7 @@ L'azione di _Citare_ una Nota esistente, di condividere un'altra, o la Nota stes Il più delle volte lo si fa per ricondividere una Nota che avevi scritto in passato. Siccome è possibile "Rinotare" più volte, fai attenzione poiché potresti infastidire le altre persone. -::: warning +:::warning Se hai impostato l'ambito di visibilità a **Solo Followers**, o **Diretto**, allora non è possibile _Rinotare_. ::: @@ -55,7 +55,7 @@ Scegli premendo l'icona alla sinistra del bottone "Nota". La Nota sarà visibile a tutti i profili del fediverso e non (sul web). Comparirà in tutte le Timeline (home, locale, sociale, globale). -::: warning +:::warning Questa opzione non è disponibile se il tuo profilo è stato Silenziato. ::: @@ -89,7 +89,7 @@ Una Nota fissata in cima al profilo, ottiene visibilità costante, poiché compa Per attivare questa opzione, scegli la voce ** Fissa sul profilo** dal menu Nota. -::: tip +:::tip Puoi fissarne più di una. ::: diff --git a/content/it-IT/docs/features/online-status.md b/content/it-IT/.docs-legacy/features/online-status.md similarity index 98% rename from content/it-IT/docs/features/online-status.md rename to content/it-IT/.docs-legacy/features/online-status.md index 8d91769b..401bf36c 100644 --- a/content/it-IT/docs/features/online-status.md +++ b/content/it-IT/.docs-legacy/features/online-status.md @@ -33,6 +33,6 @@ Viene indicato tramite un pallino colorato all'angolo dell'immagine profilo. Il tuo **Stato di presenza** cambia automaticamente, non può essere impostato manualmente. Anche se puoi impostare che sia privato (grigio). -::: warning +:::warning Attenzione alcune funzionalità come suggerirti alle persone, potrebbero essere basate sullo stato di presenza, dunque essere in stato privato (grigio) potrebbe rendere più difficile trovarti agli altri. ::: diff --git a/content/it-IT/docs/features/pages.md b/content/it-IT/.docs-legacy/features/pages.md similarity index 100% rename from content/it-IT/docs/features/pages.md rename to content/it-IT/.docs-legacy/features/pages.md diff --git a/content/it-IT/docs/features/plugin.md b/content/it-IT/.docs-legacy/features/plugin.md similarity index 100% rename from content/it-IT/docs/features/plugin.md rename to content/it-IT/.docs-legacy/features/plugin.md diff --git a/content/it-IT/docs/features/reaction.md b/content/it-IT/.docs-legacy/features/reaction.md similarity index 99% rename from content/it-IT/docs/features/reaction.md rename to content/it-IT/.docs-legacy/features/reaction.md index 7cf2d881..bfc99105 100644 --- a/content/it-IT/docs/features/reaction.md +++ b/content/it-IT/.docs-legacy/features/reaction.md @@ -18,7 +18,7 @@ Nello standard ActivityPub, di solito, viene implementato come ⭐ (Preferito) Poiché **Misskey non ha i Like**, quelli provenienti da istanze remote verranno rappresentati come una Reazione 👍 (Like). -::: tip +:::tip Gli amministratori della tua istanza, potrebbero cambiare una impostazione per rappresentare i Like remoti come Reazione ⭐ (Preferito). [Informazioni per amministratori](../admin/default-reaction.md). ::: diff --git a/content/it-IT/docs/features/share-form.md b/content/it-IT/.docs-legacy/features/share-form.md similarity index 99% rename from content/it-IT/docs/features/share-form.md rename to content/it-IT/.docs-legacy/features/share-form.md index 8575c4b3..7b72efdc 100644 --- a/content/it-IT/docs/features/share-form.md +++ b/content/it-IT/.docs-legacy/features/share-form.md @@ -6,7 +6,7 @@ Puoi specificare alcune opzioni sui contenuti, tramite la configurazione dei par ## Parametri della URL -::: tip +:::tip Tutti i parametri sono facoltativi ::: @@ -45,7 +45,7 @@ Queste opzioni ti permettono di scegliere in che ambito pubblicare | `visibleUserIds` | target user IDs | | `visibleAccts` | target user [acct](../glossary.md#acct)s (comma separated) | -::: warning +:::warning Se `visibility` viene impostato a `specified`, allora occorre inviare anche uno dei parametri `visibleUserIds` o `visibleAccts`. ::: diff --git a/content/it-IT/docs/features/theme.md b/content/it-IT/.docs-legacy/features/theme.md similarity index 100% rename from content/it-IT/docs/features/theme.md rename to content/it-IT/.docs-legacy/features/theme.md diff --git a/content/it-IT/docs/features/thread-mute.md b/content/it-IT/.docs-legacy/features/thread-mute.md similarity index 96% rename from content/it-IT/docs/features/thread-mute.md rename to content/it-IT/.docs-legacy/features/thread-mute.md index 04139780..f873c4ac 100644 --- a/content/it-IT/docs/features/thread-mute.md +++ b/content/it-IT/.docs-legacy/features/thread-mute.md @@ -1,6 +1,6 @@ # Silenziare una conversazione -::: tip +:::tip Funzionalità disponibile dalla versione 12.95.0 ::: @@ -10,6 +10,6 @@ Silenziando la conversazione, non otterrai più le relative notifiche di rispost Per attivare l'opzione, apri il menu di una Nota compresa nella discussione che vuoi silenziare e scegli **Silenzia la conversazione**. -::: warning +:::warning Attenzione: Verrà silenziata tutta la conversazione, a prescindere da quale risposta sia stata selezionata. ::: diff --git a/content/it-IT/docs/features/timeline.md b/content/it-IT/.docs-legacy/features/timeline.md similarity index 100% rename from content/it-IT/docs/features/timeline.md rename to content/it-IT/.docs-legacy/features/timeline.md diff --git a/content/it-IT/docs/features/widgets.md b/content/it-IT/.docs-legacy/features/widgets.md similarity index 100% rename from content/it-IT/docs/features/widgets.md rename to content/it-IT/.docs-legacy/features/widgets.md diff --git a/content/it-IT/docs/features/word-mute.md b/content/it-IT/.docs-legacy/features/word-mute.md similarity index 100% rename from content/it-IT/docs/features/word-mute.md rename to content/it-IT/.docs-legacy/features/word-mute.md diff --git a/content/it-IT/docs/getting-started.md b/content/it-IT/.docs-legacy/getting-started.md similarity index 98% rename from content/it-IT/docs/getting-started.md rename to content/it-IT/.docs-legacy/getting-started.md index 63100212..12f962eb 100644 --- a/content/it-IT/docs/getting-started.md +++ b/content/it-IT/.docs-legacy/getting-started.md @@ -4,10 +4,10 @@ Misskey è un sito web decentralizzato. Viene chiamato Istanza di Fediverso. Per entrare subito nel Fediverso, crea il tuo profilo su una delle [Istanze Misskey](../instances.md). -::: tip +:::tip Qualsiasi Istanza tu scelga, potrai interagire con i profili delle persone registrate su altre istanze. -::: details +:::details Misskey ha la capacità di federarsi e scambiare informazioni tramite protocollo ActivityPub. In questo modo puoi comunicare con istanze di tipo Mastodon, Pixelfed, PeerTube, Soapbox o Pleroma. diff --git a/content/it-IT/docs/glossary.md b/content/it-IT/.docs-legacy/glossary.md similarity index 100% rename from content/it-IT/docs/glossary.md rename to content/it-IT/.docs-legacy/glossary.md diff --git a/content/it-IT/docs/install.md b/content/it-IT/.docs-legacy/install.md similarity index 98% rename from content/it-IT/docs/install.md rename to content/it-IT/.docs-legacy/install.md index faa9b6b7..26cafcb0 100644 --- a/content/it-IT/docs/install.md +++ b/content/it-IT/.docs-legacy/install.md @@ -4,11 +4,11 @@ Grazie per il tuo interesse nel costruire una istanza Misskey 🚀 Ci sono vari modi per crearne una, scegli tra quelli elencati e segui la relativa guida. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: danger +:::danger Se si utilizza Cloudflare per il proprio server, non utilizzare l'impostazione Auto Minify. Misskey non funzionerà correttamente perché Cloudflare non interpreterà il JavaScript più recente e romperà il codice sorgente al suo interno. diff --git a/content/it-IT/docs/install/docker.md b/content/it-IT/.docs-legacy/install/docker.md similarity index 98% rename from content/it-IT/docs/install/docker.md rename to content/it-IT/.docs-legacy/install/docker.md index a88b3d02..3a110bf2 100644 --- a/content/it-IT/docs/install/docker.md +++ b/content/it-IT/.docs-legacy/install/docker.md @@ -6,11 +6,11 @@ description: "Questa guida spiega come installare Misskey dentro Docker" Questa guida spiega come installare Misskey dentro Docker Compose -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: tip +:::tip Requisiti iniziali: installare **Docker** e **Docker Compose** ::: @@ -55,7 +55,7 @@ sudo docker compose up -d ## Aggiornare Misskey in Docker -::: warning +:::warning Prima di procedere, leggiti le [Note di rilascio](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) per verificare se ci siano attività aggiuntive da svolgere. ::: diff --git a/content/it-IT/docs/install/manual.md b/content/it-IT/.docs-legacy/install/manual.md similarity index 97% rename from content/it-IT/docs/install/manual.md rename to content/it-IT/.docs-legacy/install/manual.md index 1df18bbf..3132fb97 100644 --- a/content/it-IT/docs/install/manual.md +++ b/content/it-IT/.docs-legacy/install/manual.md @@ -6,11 +6,11 @@ description: "Questa guida spiega come installare e configurare Misskey" Questa guida spiega come installare e configurare Misskey -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: tip +:::tip Occorre installare il seguente software - **[Node.js](https://nodejs.org/en/)** (20.4 o successivo) @@ -64,7 +64,7 @@ NODE_ENV=production pnpm run build pnpm run init ``` -::: tip +:::tip Chi usa Debian/Ubuntu ha bisogno del pacchetto `build-essential` ::: @@ -76,7 +76,7 @@ Al termine avvia Misskey usando: NODE_ENV=production pnpm run start ``` -:::: Configurazione di systemd +::::Configurazione di systemd Crea il file `/etc/systemd/system/misskey.service` @@ -102,7 +102,7 @@ Restart=always WantedBy=multi-user.target ``` -::: warning +:::warning Se usi Misskey su CentOS e una porta inferiore a 1024, Devi configurare `ExecStart=/usr/bin/sudo /usr/bin/npm start` ::: @@ -114,7 +114,7 @@ sudo systemctl enable misskey sudo systemctl start misskey ``` -::: tip +:::tip Per controllare lo stato del servizio: `systemctl status misskey` ::: @@ -122,7 +122,7 @@ Per controllare lo stato del servizio: `systemctl status misskey` ## Aggiornamento di Misskey -::: warning +:::warning Leggi sempre le [Note di rilascio](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) per sapere se ci siano attività aggiuntive da svolgere. ::: @@ -145,7 +145,7 @@ Riavvia il servizio Misskey al termine dell'aggiornamento. sudo systemctl restart misskey ``` -::: tip +:::tip Se ricevi errori in fase di compilazione, prova i seguenti comandi: - `pnpm run clean`または`pnpm run clean-all` diff --git a/content/it-IT/docs/install/ubuntu-manual.md b/content/it-IT/.docs-legacy/install/ubuntu-manual.md similarity index 99% rename from content/it-IT/docs/install/ubuntu-manual.md rename to content/it-IT/.docs-legacy/install/ubuntu-manual.md index 89b22277..cdb1f011 100644 --- a/content/it-IT/docs/install/ubuntu-manual.md +++ b/content/it-IT/.docs-legacy/install/ubuntu-manual.md @@ -7,7 +7,7 @@ ## Script per il terminale bash -::: tip +:::tip Questa installazione non è destinata alla installazione di ambienti di sviluppo. ::: @@ -38,11 +38,11 @@ Le indicazioni sono specifiche per il sistema operativo Ubuntu, alcune parti pot - Memoria RAM necessaria, circa 1.5GB. - Dominio web già configurato e account Cloudflare attivo. -::: tip +:::tip Se prepari un ambiente di sviluppo, dominio e Cloudflare non servono ::: -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: @@ -56,7 +56,7 @@ Crea un utente di sistema, poiché Misskey non dovrebbe girare con privilegi di `sudo adduser --disabled-password --disabled-login misskey` -::: tip +:::tip Se prepari un ambiente di sviluppo, non importa crearlo. ::: @@ -138,7 +138,7 @@ Se tutto è andato bene, leggerai : **Ok** Si tratta di un Application Web Server. Anche se non è essenziale, svolge comunque un compito importante, come il caching e la crittografia SSL (https). -::: tip +:::tip Se configuri un ambiente di sviluppo, non serve. ::: @@ -194,7 +194,7 @@ sudo apt install -y git build-essential Preparati ad esporre il servizio su internet -::: tip +:::tip se stai preparando un ambiente di sviluppo, queste configurazioni non sono necessarie. ::: @@ -219,7 +219,7 @@ sudo ufw allow 443 Controlla la configurazione con: `sudo ufw status` Attiva la partenza automatica al riavvio: `sudo systemctl enable ufw` -::: tip +:::tip ufw semplifica l'uso di Netfilter (IPTABLES) ::: @@ -295,7 +295,7 @@ I parametri col pallino ● vanno modificati. I parametri col cerchietto 〇 son Puoi vedere un [esempio di configurazione](https://github.com/misskey-dev/misskey/blob/develop/.config/example.yml) -::: tip +:::tip Se stai configurando un ambiente di sviluppo, indica `url: http://localhost:3000` ::: @@ -363,7 +363,7 @@ cd misskey NODE_ENV=production npm run build ``` -::: tip +:::tip Se stai preparando un ambiente di sviluppo, `NODE_ENV=production` non serve. ::: @@ -400,7 +400,7 @@ Se hai installato Misskey in un server che stà dietro una sottorete, verifica c ## Creazione servizio Misskey -::: tip +:::tip Se stai preparando un ambiente di sviluppo, non è necessario ::: diff --git a/content/it-IT/docs/misskey-hub.md b/content/it-IT/.docs-legacy/misskey-hub.md similarity index 98% rename from content/it-IT/docs/misskey-hub.md rename to content/it-IT/.docs-legacy/misskey-hub.md index 63a53528..593a6cb7 100644 --- a/content/it-IT/docs/misskey-hub.md +++ b/content/it-IT/.docs-legacy/misskey-hub.md @@ -6,7 +6,7 @@ Ci auguriamo che sia il punto centrale per tutto quel che è Misskey. Anche il codice sorgente di questo sito è [open source](https://github.com/misskey-dev/misskey-hub). -::: tip +:::tip Le pagine statiche di Misskey Hub vengono realizzate dinamicamente tramite [VuePress](https://github.com/vuepress/vuepress-next). ::: diff --git a/content/it-IT/docs/misskey.md b/content/it-IT/.docs-legacy/misskey.md similarity index 99% rename from content/it-IT/docs/misskey.md rename to content/it-IT/.docs-legacy/misskey.md index 5e80cab0..503d9a25 100644 --- a/content/it-IT/docs/misskey.md +++ b/content/it-IT/.docs-legacy/misskey.md @@ -12,7 +12,7 @@ Presto la funzionalità _timeline_ divenne la caratteristica principale e, nel 2 Da quel giorno, sempre migliorando, è divenato tra i sistemi più apprezzati dalle persone nel fediverso. -::: tip +:::tip GOSSIP! Il nome **"Misskey"** deriva da una canzone intitolata _"Brain Diver"_, composta dalla band _"May'n"_ che @syuilo ascoltava durante i periodi di sviluppo ::: @@ -47,7 +47,7 @@ Il vantaggio del codice studiabile da tutti è che tutti possono assicurarsi che Per la natura distribuita di Misskey, la necessità che sia Open Source, è basilare. Al contrario dei sistemi centralizzati citati poc'anzi. -::: tip +:::tip In linguaggio tecnico, il codice sorgente di Misskey viene gestito tramite **Git** e il codice viene ospitato sul sito [GitHub.](https://github.com/misskey-dev) ::: diff --git a/content/it-IT/docs/releases.md b/content/it-IT/.docs-legacy/releases.md similarity index 99% rename from content/it-IT/docs/releases.md rename to content/it-IT/.docs-legacy/releases.md index 1bb3a45a..a1b68b61 100644 --- a/content/it-IT/docs/releases.md +++ b/content/it-IT/.docs-legacy/releases.md @@ -2,7 +2,7 @@ Elenco delle note su ogni rilascio di Misskey, tradotte in italiano. -::: tip +:::tip Attenzione, i rilasci non tradotti in italiano, sono visibili nella pagina [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) del progetto. Abbiate cura di prenderne visione, per ottenere informazioni aggiornate puntualmente. ::: diff --git a/content/it-IT/docs/tips/disable-timelines.md b/content/it-IT/.docs-legacy/tips/disable-timelines.md similarity index 99% rename from content/it-IT/docs/tips/disable-timelines.md rename to content/it-IT/.docs-legacy/tips/disable-timelines.md index 974ab291..954c940a 100644 --- a/content/it-IT/docs/tips/disable-timelines.md +++ b/content/it-IT/.docs-legacy/tips/disable-timelines.md @@ -10,7 +10,7 @@ In più l'effetto è più simile a quello di una Chatroom in cui si intersecano Poiché il valore di questi vantaggi o svantaggi varia in ogni istanza, la scelta di utilizzare le **Timeline** o meno viene lasciata agli amministratori di ogni singola istanza. Dunque considera se sia meglio attivarle o disattivarle. -::: warning +:::warning Disabilitare le **Timeline** potrebbe portare confusione e rinuncia da parte delle persone utilizzatrici della piattaforma. Quindi, fai molta attenzione a considerare gli effetti che possono succedere disabilitandone una. Spiega chiaramente le motivazioni in anticipo, affinché le persone si possano preparare al cambiamento. Ad esempio iniziando a seguire profili con cui dialogano spesso sulla **Timeline Locale** oppure sulla **Timeline Social**. ::: diff --git a/content/it-IT/docs/troubleshooting.md b/content/it-IT/.docs-legacy/troubleshooting.md similarity index 99% rename from content/it-IT/docs/troubleshooting.md rename to content/it-IT/.docs-legacy/troubleshooting.md index 44770012..f1892a9d 100644 --- a/content/it-IT/docs/troubleshooting.md +++ b/content/it-IT/.docs-legacy/troubleshooting.md @@ -4,7 +4,7 @@ description: "Se ti capita un problema, prima di tutto leggi questa pagina" # Risoluzione autonoma dei problemi -::: tip +:::tip Per favore, leggi anche le [FAQ, domande frequenti](./faq.md) ::: diff --git a/content/it-IT/README.md b/content/it-IT/README.md deleted file mode 100644 index 654affc6..00000000 --- a/content/it-IT/README.md +++ /dev/null @@ -1,91 +0,0 @@ ---- -layout: Landing - -description: "Misskey è una piattaforma open source di social media, decentralizzata e per sempre free!" -gettingStarted: "Iniziamo!" -learnMore: "Scopri di più" -keyFeatures: - open: - title: "Open" - description: " - Misskey è un software open source utilizzabile da chiunque, a cui tutti possono contribuire." - federated: - title: "Federato" - description: "Misskey è una piattaforma decentralizzata e federata, connette le comunità tramite diverse istanze." - multifunction: - title: "Potente" - description: "Misskey è facile da capire per chi arriva e offre potenti funzionalità agli utenti più avanzati." - customizable: - title: "Personalizzabile" - description: "Puoi modificare temi, riquadri, schermate e molto altro. L'interfaccia grafica si adatta alle tue esigenze!" -sections: - federatedSoftware: - title: "Misskey è una piattaforma decentralizzata." - description: "Misskey is just a platform for server owners to make their own instances of Misskey, and they can all talk to each other! There's large instances for the masses, smaller ones for groups, fandoms, and subcultures, and even instances just for individuals and their friends. Want to have even more control? You can make your own instance on your server with relative ease, cutting ties from any large company who wants to spy on you and sell your data. Misskey is about community and sharing, not corporations and big tech. Have friends not on Misskey? No problem! Because Misskey is on the Fediverse (ActivityPub), you can interact with people on other platforms like Mastodon, PixelFed, PeerTube, and more!" - features: - title: "Funzionalità" - description: "Misskey ha una ampia gamma di funzionalità uniche!" - list: - note: - title: "Le note" - description: 'Su Misskey quel che pubblicano i profili sono le NOTE. Riempi le conversazioni con: citazioni, emoji personalizzabili, animazioni dei testi, contenuti sensibili, immagini multiple, video, GIF, audio e altro!' - reaction: - title: "Reazioni" - description: "Puoi reagire con qualsiasi emoji! Oltre alla stellina e il pollicione, esprimi come ti senti cliccando un solo bottone." - theme: - title: "Temi" - description: " - Perché limitarsi solo a Giorno/Notte, quando puoi cambiare qualsiasi colore? Tramite le funzioni intuitive di Misskey oggi puoi personalizzare l'interfaccia come desideri." - charts: - title: "Grafici" - description: " - Se hai la manìa del controllo, Misskey ti mette a disposizione grafici pontentissimi che permettono di monitorare, in tempo reale, come sta andando l'istanza." - federation: - title: "Federazione" - description: " - Non sei ancora su Misskey?! Non c'è problema. Le istanze Misskey parlano l'una con l'altra, oltre a Mastodon, Pixelfed, PeerTube, Soapbox e Pleroma. Puoi raggiungere le tue amicizie in tutto il Fediverso!" - drive: - title: "Drive" - description: " - Hai perso qualcosa di utile che avevi caricato in precedenza? Il Drive ti permette di gestire lo spazio disponibile per gli allegati, direttamente sul tuo profilo!" - thread: - title: "Argomenti" - description: " - Hai molte cose da dire? Organizzalo in un thread. Ogni Nota ti mette a disposizione 3000 caratteri (di solito). Le converazioni possono andare di lungo per ore!" - widgets: - title: "Riquadri" - description: "Personalizza la tua interfaccia client con svariati riquadri pesonalizzabili, il calendario, le notifiche, l'orologio, le statistiche..." - gettingStarted: - title: "Entra subito in Misskey!" - find: - title: "Trova una istanza!" - list: "Elenco istanze" - create: - title: "Prepara la tua istanza" - guide: "Installazione" - docs: - title: "Scopri di più" - docs: "Documentazione" - donation: - title: "Donazioni" - description: "Poiché Misskey è una organizzazione autogestita, senza incassi, per sopravvivere, si affida alla vostra generosità. Dunque, considera l'opzione di una donazione per progredirne la qualità negli anni!" - sponsors: - title: "Sponsor" ---- - - diff --git a/content/it-IT/appendix/assets.md b/content/it-IT/appendix/assets.md deleted file mode 100644 index c5160a4e..00000000 --- a/content/it-IT/appendix/assets.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -description: "collezione di risorse grafiche su Misskey, loghi, icone disegni e altro..." ---- - -# Risorse grafiche - -Questa collezione contiene Loghi Misskey, icone e altri asset. - -::: tip -Il materiale distribuito in questa pagina è soggetto alla licenza [CC BY-NC-SA](http://creativecommons.org/licenses/by-nc-sa/4.0/deed.it) Creative Commons, Attribuzione - Non commerciale - Condividi allo stesso modo 4.0 Internazionale (CC BY-NC-SA 4.0) ! 🎉 - -CC BY-NC-SA -::: - -::: tip -I file sorgente vengono gestiti in questo repository : [misskey-dev/assets](https://github.com/misskey-dev/assets). -::: - -## Logo - - - - - -## Icona - - - - - - diff --git a/content/it-IT/home.md b/content/it-IT/home.md deleted file mode 100644 index 4ad20cdd..00000000 --- a/content/it-IT/home.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -home: true -title: Misskey Hub -heroImage: /banner.svg -tagline: Sito ufficiale di Misskey, la piattaforma opensource di microblog interplanetario -footer: Copyright © 2023 syuilo ed altri co-autori -actions: - - text: Inizia con Misskey - link: ./docs/getting-started - type: primary - - text: Che cos'è Misskey? - link: ./docs/misskey.html - type: secondary -features: - - title: Distribuita 🪐 - details: Le comunità indipendenti si organizzano sui propri server, sebbene siano interconnesse. - - title: Leggera 🚀 - details: Grazie al linguaggio di programmazione NodeJS e la capacità di sfruttare le risorse in modo efficiente, la piattaforma risulta leggera anche quando c'è traffico. - - title: Divertente 🍮 - details: Le funzionalità uniche, come le reazioni infite e la personalizzazione, permettono di cambiare il divertimento ogni giorno, se lo desideri. ---- - - - - - -
- -# Sponsors - -
- RSS3 -
-
- - diff --git a/content/it-IT/instances.md b/content/it-IT/instances.md deleted file mode 100644 index 8d8541d2..00000000 --- a/content/it-IT/instances.md +++ /dev/null @@ -1,20 +0,0 @@ -# Elenco delle istanze Misskey - -::: tip -Se vuoi fare comparire anche la tua istanza, per favore contattaci su [Discord](https://discord.gg/Wp8gVStHW3) (in Giapponese o Inglese) altrimenti invia una pull-request su [GitHub](https://github.com/misskey-dev/misskey-hub). -::: - - - -## Elenco istanze Italiane - -Nella [lista non ufficiale](https://join.misskey.page/it-IT/instances), trovi tutte quelle italiane. - - diff --git a/content/it-IT/plugins.md b/content/it-IT/plugins.md deleted file mode 100644 index 51b5ef37..00000000 --- a/content/it-IT/plugins.md +++ /dev/null @@ -1,11 +0,0 @@ -# Plugin - -Tramite il client Web puoi aggiungere terze parti software che estendono le funzionalità di Misskey. - -## Creare un Plugin - -TODO - -## Condividi il tuo Plugin - -Se hai creato un plugin e vuoi condividerlo col mondo, scegli una licenza open (ad esempio AGPL) e crea un repository. Dopo di che, modifica questa pagina, indicandoci dove si trova. diff --git a/content/ja-JP/docs/admin/cdn.md b/content/ja-JP/.docs-legacy/admin/cdn.md similarity index 99% rename from content/ja-JP/docs/admin/cdn.md rename to content/ja-JP/.docs-legacy/admin/cdn.md index ea20e373..28a9a876 100644 --- a/content/ja-JP/docs/admin/cdn.md +++ b/content/ja-JP/.docs-legacy/admin/cdn.md @@ -12,6 +12,6 @@ Misskey APIはキャッシュすることはできません。 CDNで以下の設定を行なってください。 - `/api/*`以外のリクエストをすべてキャッシュする -::: tip +:::tip Misskeyをアップデートした際にキャッシュのクリアは不要です。 ::: diff --git a/content/ja-JP/docs/admin/nginx.md b/content/ja-JP/.docs-legacy/admin/nginx.md similarity index 100% rename from content/ja-JP/docs/admin/nginx.md rename to content/ja-JP/.docs-legacy/admin/nginx.md diff --git a/content/ja-JP/docs/admin/push-docker-hub.md b/content/ja-JP/.docs-legacy/admin/push-docker-hub.md similarity index 100% rename from content/ja-JP/docs/admin/push-docker-hub.md rename to content/ja-JP/.docs-legacy/admin/push-docker-hub.md diff --git a/content/ja-JP/docs/admin/troubleshooting.md b/content/ja-JP/.docs-legacy/admin/troubleshooting.md similarity index 100% rename from content/ja-JP/docs/admin/troubleshooting.md rename to content/ja-JP/.docs-legacy/admin/troubleshooting.md diff --git a/content/ja-JP/docs/advanced/aiscript.md b/content/ja-JP/.docs-legacy/advanced/aiscript.md similarity index 100% rename from content/ja-JP/docs/advanced/aiscript.md rename to content/ja-JP/.docs-legacy/advanced/aiscript.md diff --git a/content/ja-JP/docs/advanced/create-plugin.md b/content/ja-JP/.docs-legacy/advanced/create-plugin.md similarity index 100% rename from content/ja-JP/docs/advanced/create-plugin.md rename to content/ja-JP/.docs-legacy/advanced/create-plugin.md diff --git a/content/ja-JP/docs/advanced/develop-bot.md b/content/ja-JP/.docs-legacy/advanced/develop-bot.md similarity index 100% rename from content/ja-JP/docs/advanced/develop-bot.md rename to content/ja-JP/.docs-legacy/advanced/develop-bot.md diff --git a/content/ja-JP/docs/advanced/plugin-api-reference.md b/content/ja-JP/.docs-legacy/advanced/plugin-api-reference.md similarity index 100% rename from content/ja-JP/docs/advanced/plugin-api-reference.md rename to content/ja-JP/.docs-legacy/advanced/plugin-api-reference.md diff --git a/content/ja-JP/docs/api/app.md b/content/ja-JP/.docs-legacy/api/app.md similarity index 100% rename from content/ja-JP/docs/api/app.md rename to content/ja-JP/.docs-legacy/api/app.md diff --git a/content/ja-JP/docs/api/common.json5 b/content/ja-JP/.docs-legacy/api/common.json5 similarity index 100% rename from content/ja-JP/docs/api/common.json5 rename to content/ja-JP/.docs-legacy/api/common.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/abuse-user-reports.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/abuse-user-reports.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/abuse-user-reports.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/abuse-user-reports.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/accounts/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/accounts/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/accounts/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/accounts/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/accounts/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/accounts/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/accounts/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/accounts/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/ad/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/ad/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/ad/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/ad/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/ad/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/ad/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/ad/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/ad/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/ad/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/ad/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/ad/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/ad/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/ad/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/ad/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/ad/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/ad/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/announcements/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/announcements/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/announcements/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/announcements/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/announcements/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/announcements/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/announcements/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/announcements/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/announcements/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/delete-account.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/delete-account.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/delete-account.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/delete-account.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/delete-all-files-of-a-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/delete-all-files-of-a-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/delete-all-files-of-a-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/delete-all-files-of-a-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/drive-capacity-override.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/drive-capacity-override.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/drive-capacity-override.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/drive-capacity-override.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/drive/clean-remote-files.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/drive/clean-remote-files.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/drive/clean-remote-files.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/drive/clean-remote-files.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/drive/cleanup.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/drive/cleanup.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/drive/cleanup.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/drive/cleanup.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/drive/files.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/drive/files.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/drive/files.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/drive/files.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/drive/show-file.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/drive/show-file.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/drive/show-file.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/drive/show-file.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/add-aliases-bulk.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/add-aliases-bulk.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/add-aliases-bulk.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/add-aliases-bulk.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/add.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/add.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/add.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/add.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/copy.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/copy.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/copy.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/copy.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/delete-bulk.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/delete-bulk.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/delete-bulk.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/delete-bulk.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/list-remote.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/list-remote.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/list-remote.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/list-remote.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/remove-aliases-bulk.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/remove-aliases-bulk.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/remove-aliases-bulk.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/remove-aliases-bulk.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/set-aliases-bulk.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/set-aliases-bulk.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/set-aliases-bulk.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/set-aliases-bulk.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/set-category-bulk.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/set-category-bulk.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/set-category-bulk.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/set-category-bulk.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/emoji/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/emoji/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/emoji/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/federation/delete-all-files.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/federation/delete-all-files.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/federation/delete-all-files.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/federation/delete-all-files.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/federation/refresh-remote-instance-metadata.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/federation/refresh-remote-instance-metadata.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/federation/refresh-remote-instance-metadata.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/federation/refresh-remote-instance-metadata.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/federation/remove-all-following.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/federation/remove-all-following.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/federation/remove-all-following.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/federation/remove-all-following.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/federation/update-instance.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/federation/update-instance.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/federation/update-instance.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/federation/update-instance.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/get-index-stats.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/get-index-stats.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/get-index-stats.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/get-index-stats.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/get-table-stats.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/get-table-stats.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/get-table-stats.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/get-table-stats.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/get-user-ips.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/get-user-ips.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/get-user-ips.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/get-user-ips.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/invite.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/invite.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/invite.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/invite.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/meta.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/meta.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/meta.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/meta.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/moderators/add.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/moderators/add.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/moderators/add.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/moderators/add.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/moderators/remove.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/moderators/remove.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/moderators/remove.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/moderators/remove.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/promo/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/promo/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/promo/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/promo/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/queue/clear.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/queue/clear.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/queue/clear.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/queue/clear.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/queue/deliver-delayed.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/queue/deliver-delayed.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/queue/deliver-delayed.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/queue/deliver-delayed.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/queue/inbox-delayed.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/queue/inbox-delayed.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/queue/inbox-delayed.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/queue/inbox-delayed.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/queue/stats.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/queue/stats.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/queue/stats.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/queue/stats.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/relays/add.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/relays/add.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/relays/add.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/relays/add.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/relays/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/relays/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/relays/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/relays/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/relays/remove.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/relays/remove.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/relays/remove.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/relays/remove.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/reset-password.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/reset-password.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/reset-password.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/reset-password.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/resolve-abuse-user-report.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/resolve-abuse-user-report.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/resolve-abuse-user-report.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/resolve-abuse-user-report.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/send-email.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/send-email.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/send-email.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/send-email.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/server-info.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/server-info.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/server-info.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/server-info.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/show-moderation-logs.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/show-moderation-logs.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/show-moderation-logs.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/show-moderation-logs.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/show-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/show-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/show-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/show-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/show-users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/show-users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/show-users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/show-users.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/silence-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/silence-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/silence-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/silence-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/suspend-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/suspend-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/suspend-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/suspend-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/unsilence-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/unsilence-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/unsilence-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/unsilence-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/unsuspend-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/unsuspend-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/unsuspend-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/unsuspend-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/update-meta.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/update-meta.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/update-meta.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/update-meta.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/update-user-note.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/update-user-note.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/update-user-note.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/update-user-note.json5 diff --git a/content/ja-JP/docs/api/endpoints/admin/vacuum.json5 b/content/ja-JP/.docs-legacy/api/endpoints/admin/vacuum.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/admin/vacuum.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/admin/vacuum.json5 diff --git a/content/ja-JP/docs/api/endpoints/announcements.json5 b/content/ja-JP/.docs-legacy/api/endpoints/announcements.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/announcements.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/announcements.json5 diff --git a/content/ja-JP/docs/api/endpoints/antennas/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/antennas/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/antennas/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/antennas/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/antennas/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/antennas/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/antennas/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/antennas/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/antennas/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/antennas/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/antennas/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/antennas/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/antennas/notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/antennas/notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/antennas/notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/antennas/notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/antennas/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/antennas/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/antennas/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/antennas/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/antennas/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/antennas/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/antennas/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/antennas/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/ap/get.json5 b/content/ja-JP/.docs-legacy/api/endpoints/ap/get.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/ap/get.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/ap/get.json5 diff --git a/content/ja-JP/docs/api/endpoints/ap/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/ap/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/ap/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/ap/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/app/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/app/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/app/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/app/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/app/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/app/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/app/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/app/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/auth/session/generate.json5 b/content/ja-JP/.docs-legacy/api/endpoints/auth/session/generate.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/auth/session/generate.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/auth/session/generate.json5 diff --git a/content/ja-JP/docs/api/endpoints/auth/session/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/auth/session/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/auth/session/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/auth/session/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/auth/session/userkey.json5 b/content/ja-JP/.docs-legacy/api/endpoints/auth/session/userkey.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/auth/session/userkey.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/auth/session/userkey.json5 diff --git a/content/ja-JP/docs/api/endpoints/blocking/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/blocking/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/blocking/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/blocking/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/blocking/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/blocking/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/blocking/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/blocking/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/blocking/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/blocking/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/blocking/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/blocking/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/featured.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/featured.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/featured.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/featured.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/follow.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/follow.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/follow.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/follow.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/followed.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/followed.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/followed.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/followed.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/owned.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/owned.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/owned.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/owned.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/timeline.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/timeline.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/timeline.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/timeline.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/unfollow.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/unfollow.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/unfollow.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/unfollow.json5 diff --git a/content/ja-JP/docs/api/endpoints/channels/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/channels/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/channels/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/channels/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/active-users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/active-users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/active-users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/active-users.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/ap-request.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/ap-request.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/ap-request.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/ap-request.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/drive.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/drive.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/drive.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/drive.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/federation.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/federation.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/federation.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/federation.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/hashtag.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/hashtag.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/hashtag.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/hashtag.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/instance.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/instance.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/instance.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/instance.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/user/drive.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/user/drive.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/user/drive.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/user/drive.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/user/following.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/user/following.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/user/following.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/user/following.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/user/notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/user/notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/user/notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/user/notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/user/reactions.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/user/reactions.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/user/reactions.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/user/reactions.json5 diff --git a/content/ja-JP/docs/api/endpoints/charts/users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/charts/users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/charts/users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/charts/users.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/add-note.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/add-note.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/add-note.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/add-note.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/remove-note.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/remove-note.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/remove-note.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/remove-note.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/clips/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/clips/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/clips/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/clips/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/attached-notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/attached-notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/attached-notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/attached-notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/check-existence.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/check-existence.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/check-existence.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/check-existence.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/find-by-hash.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/find-by-hash.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/find-by-hash.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/find-by-hash.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/find.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/find.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/find.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/find.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/files/upload-from-url.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/files/upload-from-url.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/files/upload-from-url.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/files/upload-from-url.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/folders.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/folders.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/folders.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/folders.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/folders/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/folders/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/folders/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/folders/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/folders/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/folders/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/folders/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/folders/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/folders/find.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/folders/find.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/folders/find.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/folders/find.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/folders/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/folders/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/folders/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/folders/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/folders/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/folders/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/folders/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/folders/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/drive/stream.json5 b/content/ja-JP/.docs-legacy/api/endpoints/drive/stream.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/drive/stream.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/drive/stream.json5 diff --git a/content/ja-JP/docs/api/endpoints/email-address/available.json5 b/content/ja-JP/.docs-legacy/api/endpoints/email-address/available.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/email-address/available.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/email-address/available.json5 diff --git a/content/ja-JP/docs/api/endpoints/endpoint.json5 b/content/ja-JP/.docs-legacy/api/endpoints/endpoint.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/endpoint.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/endpoint.json5 diff --git a/content/ja-JP/docs/api/endpoints/endpoints.json5 b/content/ja-JP/.docs-legacy/api/endpoints/endpoints.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/endpoints.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/endpoints.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/followers.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/followers.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/followers.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/followers.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/following.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/following.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/following.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/following.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/instances.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/instances.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/instances.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/instances.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/show-instance.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/show-instance.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/show-instance.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/show-instance.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/stats.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/stats.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/stats.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/stats.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/update-remote-user.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/update-remote-user.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/update-remote-user.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/update-remote-user.json5 diff --git a/content/ja-JP/docs/api/endpoints/federation/users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/federation/users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/federation/users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/federation/users.json5 diff --git a/content/ja-JP/docs/api/endpoints/fetch-rss.json5 b/content/ja-JP/.docs-legacy/api/endpoints/fetch-rss.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/fetch-rss.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/fetch-rss.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/invalidate.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/invalidate.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/invalidate.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/invalidate.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/requests/accept.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/requests/accept.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/requests/accept.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/requests/accept.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/requests/cancel.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/requests/cancel.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/requests/cancel.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/requests/cancel.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/requests/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/requests/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/requests/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/requests/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/following/requests/reject.json5 b/content/ja-JP/.docs-legacy/api/endpoints/following/requests/reject.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/following/requests/reject.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/following/requests/reject.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/featured.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/featured.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/featured.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/featured.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/popular.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/popular.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/popular.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/popular.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts/like.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/like.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts/like.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/like.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts/unlike.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/unlike.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts/unlike.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/unlike.json5 diff --git a/content/ja-JP/docs/api/endpoints/gallery/posts/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/gallery/posts/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/gallery/posts/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/get-online-users-count.json5 b/content/ja-JP/.docs-legacy/api/endpoints/get-online-users-count.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/get-online-users-count.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/get-online-users-count.json5 diff --git a/content/ja-JP/docs/api/endpoints/hashtags/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/hashtags/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/hashtags/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/hashtags/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/hashtags/search.json5 b/content/ja-JP/.docs-legacy/api/endpoints/hashtags/search.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/hashtags/search.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/hashtags/search.json5 diff --git a/content/ja-JP/docs/api/endpoints/hashtags/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/hashtags/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/hashtags/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/hashtags/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/hashtags/trend.json5 b/content/ja-JP/.docs-legacy/api/endpoints/hashtags/trend.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/hashtags/trend.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/hashtags/trend.json5 diff --git a/content/ja-JP/docs/api/endpoints/hashtags/users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/hashtags/users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/hashtags/users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/hashtags/users.json5 diff --git a/content/ja-JP/docs/api/endpoints/i.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/favorites.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/favorites.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/favorites.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/favorites.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/gallery/likes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/gallery/likes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/gallery/likes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/gallery/likes.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/gallery/posts.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/gallery/posts.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/gallery/posts.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/gallery/posts.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/get-word-muted-notes-count.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/get-word-muted-notes-count.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/get-word-muted-notes-count.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/get-word-muted-notes-count.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/notifications.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/notifications.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/notifications.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/notifications.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/page-likes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/page-likes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/page-likes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/page-likes.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/pages.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/pages.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/pages.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/pages.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/pin.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/pin.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/pin.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/pin.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/read-all-messaging-messages.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/read-all-messaging-messages.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/read-all-messaging-messages.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/read-all-messaging-messages.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/read-all-unread-notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/read-all-unread-notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/read-all-unread-notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/read-all-unread-notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/read-announcement.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/read-announcement.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/read-announcement.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/read-announcement.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/unpin.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/unpin.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/unpin.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/unpin.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/webhooks/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/webhooks/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/webhooks/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/webhooks/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/webhooks/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/webhooks/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/webhooks/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/webhooks/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/i/webhooks/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/i/webhooks/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/i/webhooks/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/messaging/history.json5 b/content/ja-JP/.docs-legacy/api/endpoints/messaging/history.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/messaging/history.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/messaging/history.json5 diff --git a/content/ja-JP/docs/api/endpoints/messaging/messages.json5 b/content/ja-JP/.docs-legacy/api/endpoints/messaging/messages.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/messaging/messages.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/messaging/messages.json5 diff --git a/content/ja-JP/docs/api/endpoints/messaging/messages/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/messaging/messages/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/messaging/messages/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/messaging/messages/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/messaging/messages/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/messaging/messages/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/messaging/messages/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/messaging/messages/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/messaging/messages/read.json5 b/content/ja-JP/.docs-legacy/api/endpoints/messaging/messages/read.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/messaging/messages/read.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/messaging/messages/read.json5 diff --git a/content/ja-JP/docs/api/endpoints/meta.json5 b/content/ja-JP/.docs-legacy/api/endpoints/meta.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/meta.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/meta.json5 diff --git a/content/ja-JP/docs/api/endpoints/mute/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/mute/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/mute/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/mute/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/mute/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/mute/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/mute/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/mute/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/mute/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/mute/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/mute/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/mute/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/my/apps.json5 b/content/ja-JP/.docs-legacy/api/endpoints/my/apps.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/my/apps.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/my/apps.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/children.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/children.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/children.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/children.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/clips.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/clips.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/clips.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/clips.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/conversation.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/conversation.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/conversation.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/conversation.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/favorites/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/favorites/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/favorites/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/favorites/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/favorites/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/favorites/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/favorites/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/favorites/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/featured.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/featured.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/featured.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/featured.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/global-timeline.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/global-timeline.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/global-timeline.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/global-timeline.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/hybrid-timeline.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/hybrid-timeline.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/hybrid-timeline.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/hybrid-timeline.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/local-timeline.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/local-timeline.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/local-timeline.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/local-timeline.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/mentions.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/mentions.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/mentions.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/mentions.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/polls/recommendation.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/polls/recommendation.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/polls/recommendation.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/polls/recommendation.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/polls/vote.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/polls/vote.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/polls/vote.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/polls/vote.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/reactions.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/reactions.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/reactions.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/reactions.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/reactions/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/reactions/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/reactions/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/reactions/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/reactions/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/reactions/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/reactions/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/reactions/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/renotes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/renotes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/renotes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/renotes.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/replies.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/replies.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/replies.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/replies.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/search-by-tag.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/search-by-tag.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/search-by-tag.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/search-by-tag.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/search.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/search.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/search.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/search.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/state.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/state.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/state.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/state.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/thread-muting/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/thread-muting/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/thread-muting/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/thread-muting/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/thread-muting/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/thread-muting/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/thread-muting/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/thread-muting/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/timeline.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/timeline.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/timeline.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/timeline.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/translate.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/translate.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/translate.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/translate.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/unrenote.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/unrenote.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/unrenote.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/unrenote.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/user-list-timeline.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/user-list-timeline.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/user-list-timeline.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/user-list-timeline.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/watching/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/watching/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/watching/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/watching/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/notes/watching/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notes/watching/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notes/watching/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notes/watching/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/notifications/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notifications/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notifications/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notifications/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/notifications/mark-all-as-read.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notifications/mark-all-as-read.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notifications/mark-all-as-read.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notifications/mark-all-as-read.json5 diff --git a/content/ja-JP/docs/api/endpoints/notifications/read.json5 b/content/ja-JP/.docs-legacy/api/endpoints/notifications/read.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/notifications/read.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/notifications/read.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/featured.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/featured.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/featured.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/featured.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/like.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/like.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/like.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/like.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/unlike.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/unlike.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/unlike.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/unlike.json5 diff --git a/content/ja-JP/docs/api/endpoints/pages/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pages/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pages/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pages/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/ping.json5 b/content/ja-JP/.docs-legacy/api/endpoints/ping.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/ping.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/ping.json5 diff --git a/content/ja-JP/docs/api/endpoints/pinned-users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/pinned-users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/pinned-users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/pinned-users.json5 diff --git a/content/ja-JP/docs/api/endpoints/promo/read.json5 b/content/ja-JP/.docs-legacy/api/endpoints/promo/read.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/promo/read.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/promo/read.json5 diff --git a/content/ja-JP/docs/api/endpoints/request-reset-password.json5 b/content/ja-JP/.docs-legacy/api/endpoints/request-reset-password.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/request-reset-password.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/request-reset-password.json5 diff --git a/content/ja-JP/docs/api/endpoints/reset-db.json5 b/content/ja-JP/.docs-legacy/api/endpoints/reset-db.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/reset-db.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/reset-db.json5 diff --git a/content/ja-JP/docs/api/endpoints/reset-password.json5 b/content/ja-JP/.docs-legacy/api/endpoints/reset-password.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/reset-password.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/reset-password.json5 diff --git a/content/ja-JP/docs/api/endpoints/server-info.json5 b/content/ja-JP/.docs-legacy/api/endpoints/server-info.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/server-info.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/server-info.json5 diff --git a/content/ja-JP/docs/api/endpoints/stats.json5 b/content/ja-JP/.docs-legacy/api/endpoints/stats.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/stats.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/stats.json5 diff --git a/content/ja-JP/docs/api/endpoints/sw/register.json5 b/content/ja-JP/.docs-legacy/api/endpoints/sw/register.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/sw/register.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/sw/register.json5 diff --git a/content/ja-JP/docs/api/endpoints/sw/unregister.json5 b/content/ja-JP/.docs-legacy/api/endpoints/sw/unregister.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/sw/unregister.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/sw/unregister.json5 diff --git a/content/ja-JP/docs/api/endpoints/test.json5 b/content/ja-JP/.docs-legacy/api/endpoints/test.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/test.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/test.json5 diff --git a/content/ja-JP/docs/api/endpoints/username/available.json5 b/content/ja-JP/.docs-legacy/api/endpoints/username/available.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/username/available.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/username/available.json5 diff --git a/content/ja-JP/docs/api/endpoints/users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/clips.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/clips.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/clips.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/clips.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/followers.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/followers.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/followers.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/followers.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/following.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/following.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/following.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/following.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/gallery/posts.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/gallery/posts.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/gallery/posts.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/gallery/posts.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/get-frequently-replied-users.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/get-frequently-replied-users.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/get-frequently-replied-users.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/get-frequently-replied-users.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/create.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/create.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/create.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/create.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/delete.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/delete.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/delete.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/delete.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/list.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/list.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/list.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/list.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/pull.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/pull.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/pull.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/pull.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/push.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/push.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/push.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/push.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/lists/update.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/lists/update.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/lists/update.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/lists/update.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/notes.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/notes.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/notes.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/notes.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/pages.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/pages.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/pages.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/pages.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/reactions.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/reactions.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/reactions.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/reactions.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/recommendation.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/recommendation.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/recommendation.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/recommendation.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/relation.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/relation.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/relation.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/relation.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/report-abuse.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/report-abuse.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/report-abuse.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/report-abuse.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/search-by-username-and-host.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/search-by-username-and-host.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/search-by-username-and-host.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/search-by-username-and-host.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/search.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/search.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/search.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/search.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/show.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/show.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/show.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/show.json5 diff --git a/content/ja-JP/docs/api/endpoints/users/stats.json5 b/content/ja-JP/.docs-legacy/api/endpoints/users/stats.json5 similarity index 100% rename from content/ja-JP/docs/api/endpoints/users/stats.json5 rename to content/ja-JP/.docs-legacy/api/endpoints/users/stats.json5 diff --git a/content/ja-JP/docs/api/index.md b/content/ja-JP/.docs-legacy/api/index.md similarity index 98% rename from content/ja-JP/docs/api/index.md rename to content/ja-JP/.docs-legacy/api/index.md index 4b83fbc3..34764b19 100644 --- a/content/ja-JP/docs/api/index.md +++ b/content/ja-JP/.docs-legacy/api/index.md @@ -6,7 +6,7 @@ description: 'MisskeyはAPIを公開しています。APIを使ってMisskeyク MisskeyはAPIを公開しています。APIを使ってMisskeyクライアント、Misskey連携Webサービス、Bot等(以下「アプリケーション」と呼びます)を開発することができます。 ストリーミングAPIもあるので、リアルタイム性のあるアプリケーションを作ることも可能です。 -::: tip +:::tip Misskey公式SDKやサードパーティライブラリを使うことによって、このドキュメントで説明するいくつかの手順を簡略化できるなど、より便利にAPIを利用することができます。\ ライブラリについては[こちら](./libraries)を参照してください。 ::: @@ -18,7 +18,7 @@ APIを使い始めるには、APIを利用するアカウントに紐づいた** 基本的に、APIはリクエストにはアクセストークンが必要となります。 アクセストークンは、ユーザーに紐づいた認証情報で、APIを利用するユーザーを識別するとともに、アクセストークンごとにどういった操作の権限を持っているかが管理されます。 -::: tip +:::tip ユーザーとそのユーザーに紐づいたアクセストークンは一対多の関係であり、あるユーザーに対して複数のアクセストークンが発行され得ます。 ::: @@ -30,14 +30,14 @@ APIを使い始めるには、APIを利用するアカウントに紐づいた** ### 自分自身のアクセストークンを手動発行する Misskey Webの「設定 > API」で、自分のアクセストークンを発行できます。 -::: danger +:::danger アクセストークンは他人に知られないようにしてください。 ::: ### アプリケーション利用者にアクセストークンの発行をリクエストする アプリケーションを利用するユーザー(以下単に「ユーザー」と呼びます)のアクセストークンを取得するには、以下の手順で発行をリクエストします。 -::: tip +:::tip 以下に説明する方法は、アプリを作成せずインスタントにアクセストークンを発行する、MiAuthと呼ばれるものです。 @@ -47,7 +47,7 @@ Misskey Webの「設定 > API」で、自分のアクセストークンを発行 #### Step 1 UUIDを生成する。以後これを**セッションID**と呼びます。 -::: danger +:::danger このセッションIDは毎回生成し、使いまわさないようにしてください。 ::: @@ -71,7 +71,7 @@ https://{host}/miauth/{session} | `callback` | 認証が終わった後にリダイレクトするURL。
リダイレクト時には、`session`というクエリパラメータでセッションIDが付きます。 | | `permission` | アプリケーションが要求する権限。
要求する権限を`,`で区切って列挙します。権限の一覧は[こちら](./permission.md)で確認できます。 | -::: tip 例 +:::tip 例 ```:no-line-numbers https://misskey.io/miauth/c1f6d42b-468b-4fd2-8274-e58abdedef6f?name=MyApp&callback=https%3A%2F%2Fmyapp.example.com%2Fcallback&permission=write:notes,write:following,read:drive ``` @@ -98,7 +98,7 @@ https://{host}/api/miauth/{session}/check ## APIの利用 アクセストークンが取得できたら、各種エンドポイントにリクエストすることでAPIの利用が行えます。 -::: tip +:::tip - HTTP APIはすべてPOSTで、リクエスト/レスポンスともにJSON形式です(drive/files/createを除く)。 - 要求ヘッダーに`Content-Type: application/json`を指定します。 @@ -118,7 +118,7 @@ https://{host}/api/miauth/{session}/check APIの詳細は、[APIリファレンス](./endpoints.html)を参照してください。 -::: warning +:::warning MisskeyはRESTを採用していません。 ::: diff --git a/content/ja-JP/docs/api/libraries.md b/content/ja-JP/.docs-legacy/api/libraries.md similarity index 100% rename from content/ja-JP/docs/api/libraries.md rename to content/ja-JP/.docs-legacy/api/libraries.md diff --git a/content/ja-JP/docs/api/permission.md b/content/ja-JP/.docs-legacy/api/permission.md similarity index 100% rename from content/ja-JP/docs/api/permission.md rename to content/ja-JP/.docs-legacy/api/permission.md diff --git a/content/ja-JP/docs/api/streaming/channel/global-timeline.md b/content/ja-JP/.docs-legacy/api/streaming/channel/global-timeline.md similarity index 100% rename from content/ja-JP/docs/api/streaming/channel/global-timeline.md rename to content/ja-JP/.docs-legacy/api/streaming/channel/global-timeline.md diff --git a/content/ja-JP/docs/api/streaming/channel/home-timeline.md b/content/ja-JP/.docs-legacy/api/streaming/channel/home-timeline.md similarity index 100% rename from content/ja-JP/docs/api/streaming/channel/home-timeline.md rename to content/ja-JP/.docs-legacy/api/streaming/channel/home-timeline.md diff --git a/content/ja-JP/docs/api/streaming/channel/hybrid-timeline.md b/content/ja-JP/.docs-legacy/api/streaming/channel/hybrid-timeline.md similarity index 100% rename from content/ja-JP/docs/api/streaming/channel/hybrid-timeline.md rename to content/ja-JP/.docs-legacy/api/streaming/channel/hybrid-timeline.md diff --git a/content/ja-JP/docs/api/streaming/channel/index.md b/content/ja-JP/.docs-legacy/api/streaming/channel/index.md similarity index 100% rename from content/ja-JP/docs/api/streaming/channel/index.md rename to content/ja-JP/.docs-legacy/api/streaming/channel/index.md diff --git a/content/ja-JP/docs/api/streaming/channel/local-timeline.md b/content/ja-JP/.docs-legacy/api/streaming/channel/local-timeline.md similarity index 100% rename from content/ja-JP/docs/api/streaming/channel/local-timeline.md rename to content/ja-JP/.docs-legacy/api/streaming/channel/local-timeline.md diff --git a/content/ja-JP/docs/api/streaming/channel/main.md b/content/ja-JP/.docs-legacy/api/streaming/channel/main.md similarity index 100% rename from content/ja-JP/docs/api/streaming/channel/main.md rename to content/ja-JP/.docs-legacy/api/streaming/channel/main.md diff --git a/content/ja-JP/docs/api/streaming/index.md b/content/ja-JP/.docs-legacy/api/streaming/index.md similarity index 99% rename from content/ja-JP/docs/api/streaming/index.md rename to content/ja-JP/.docs-legacy/api/streaming/index.md index fca21b55..3e0f9f52 100644 --- a/content/ja-JP/docs/api/streaming/index.md +++ b/content/ja-JP/.docs-legacy/api/streaming/index.md @@ -4,7 +4,7 @@ description: 'ストリーミングAPIを使うと、リアルタイムで様々 # ストリーミングAPI -::: tip +:::tip 最初に[Misskey API](../index.md)のドキュメントを読むことをお勧めします。 ::: @@ -24,7 +24,7 @@ wss://{host}/streaming?i={token} - `{host}`の部分は、接続したいサーバーのホストに置き換えます。 - `{token}`の部分は、ユーザーのアクセストークンに置き換えます。 -::: tip +:::tip アクセストークンは省略することもできますが、その場合非ログインでの利用ということになり、受信できる情報や可能な操作は限られます。 ::: @@ -37,7 +37,7 @@ wss://{host}/streaming?i={token} MisskeyのストリーミングAPIにはチャンネルという概念があります。これは、送受信する情報を分離するための仕組みです。 ストリーム上でチャンネルに接続することで、様々な情報を受け取ったり情報を送信したりすることができるようになります。 -::: tip +:::tip ひとつのストリーム接続上で、同時に複数のチャンネルに接続することができます。 ::: @@ -64,7 +64,7 @@ MisskeyのストリーミングAPIにはチャンネルという概念があり - `id`にはそのチャンネルとやり取りするための任意のIDを設定します。ストリームでは様々なメッセージが流れるので、そのメッセージがどのチャンネルからのものなのか識別する必要があるからです。このIDは、UUIDや、乱数のようなもので構いません。 - `params`はチャンネルに接続する際のパラメータです。チャンネルによって接続時に必要とされるパラメータは異なります。パラメータ不要のチャンネルに接続する際は、このプロパティは省略可能です。 -::: tip +:::tip IDはチャンネルごとではなく「チャンネルの接続ごと」です。なぜなら、同じチャンネルに異なるパラメータで複数接続するケースもあるからです。 ::: diff --git a/content/ja-JP/docs/api/streaming/note-capture-events.md b/content/ja-JP/.docs-legacy/api/streaming/note-capture-events.md similarity index 100% rename from content/ja-JP/docs/api/streaming/note-capture-events.md rename to content/ja-JP/.docs-legacy/api/streaming/note-capture-events.md diff --git a/content/ja-JP/docs/apps.md b/content/ja-JP/.docs-legacy/apps.md similarity index 100% rename from content/ja-JP/docs/apps.md rename to content/ja-JP/.docs-legacy/apps.md diff --git a/content/ja-JP/docs/donate.md b/content/ja-JP/.docs-legacy/donate.md similarity index 98% rename from content/ja-JP/docs/donate.md rename to content/ja-JP/.docs-legacy/donate.md index 455b57b5..eb079485 100644 --- a/content/ja-JP/docs/donate.md +++ b/content/ja-JP/.docs-legacy/donate.md @@ -8,14 +8,14 @@ Misskeyはビジネスではなく、利用は無料であるため、収益は - 仮想通貨: `0xF1121108E21C92aAC7814137DD67e0d48eAC7Fdc` - [Amazonの欲しいものリスト](https://www.amazon.jp/hz/wishlist/ls/4JG4P6XKX9KD?ref_=wl_share) -::: tip +:::tip 額に応じて以下の返礼を用意しています。 - 1,000円以上: お使いのmisskey.ioアカウントにmiバッジ付与 - 3,000円以上: ↑ + Misskeyのクレジットへのお名前の記載 - 10,000円以上: ↑ + Misskeyのクレジットへのお名前+任意のアイコンの掲載 ::: -::: warning +:::warning **バッジ付与やクレジットへの記載は自動で行われないため、ご希望の方は寄付されたことが分かる情報を添えて@syuilo@misskey.ioまでお申し付けください。** (メンション気づかない場合があるので返信がなければ複数回メンションお願いします。また、misskey.io以外のサーバーからはメンション届かない場合があります) ::: diff --git a/content/ja-JP/docs/faq.md b/content/ja-JP/.docs-legacy/faq.md similarity index 100% rename from content/ja-JP/docs/faq.md rename to content/ja-JP/.docs-legacy/faq.md diff --git a/content/ja-JP/docs/features/ads.md b/content/ja-JP/.docs-legacy/features/ads.md similarity index 98% rename from content/ja-JP/docs/features/ads.md rename to content/ja-JP/.docs-legacy/features/ads.md index 13141719..74a966c5 100644 --- a/content/ja-JP/docs/features/ads.md +++ b/content/ja-JP/.docs-legacy/features/ads.md @@ -2,7 +2,7 @@ Misskeyではサーバーによる広告をタイムラインなどに表示できる機能があります。 広告の右上に表示されるアイコンをクリックすることで、当該の広告の表示頻度を下げることができます。 -::: tip +:::tip 広告の総数が少ない場合は、表示頻度を下げた後も連続で表示される可能性があります。 ::: diff --git a/content/ja-JP/docs/features/antenna.md b/content/ja-JP/.docs-legacy/features/antenna.md similarity index 100% rename from content/ja-JP/docs/features/antenna.md rename to content/ja-JP/.docs-legacy/features/antenna.md diff --git a/content/ja-JP/docs/features/charts.md b/content/ja-JP/.docs-legacy/features/charts.md similarity index 100% rename from content/ja-JP/docs/features/charts.md rename to content/ja-JP/.docs-legacy/features/charts.md diff --git a/content/ja-JP/docs/features/clip.md b/content/ja-JP/.docs-legacy/features/clip.md similarity index 100% rename from content/ja-JP/docs/features/clip.md rename to content/ja-JP/.docs-legacy/features/clip.md diff --git a/content/ja-JP/docs/features/custom-emoji.md b/content/ja-JP/.docs-legacy/features/custom-emoji.md similarity index 100% rename from content/ja-JP/docs/features/custom-emoji.md rename to content/ja-JP/.docs-legacy/features/custom-emoji.md diff --git a/content/ja-JP/docs/features/deck.md b/content/ja-JP/.docs-legacy/features/deck.md similarity index 100% rename from content/ja-JP/docs/features/deck.md rename to content/ja-JP/.docs-legacy/features/deck.md diff --git a/content/ja-JP/docs/features/drive.md b/content/ja-JP/.docs-legacy/features/drive.md similarity index 98% rename from content/ja-JP/docs/features/drive.md rename to content/ja-JP/.docs-legacy/features/drive.md index 1c24ab95..399e28e0 100644 --- a/content/ja-JP/docs/features/drive.md +++ b/content/ja-JP/.docs-legacy/features/drive.md @@ -1,7 +1,7 @@ # ドライブ ドライブは、Misskey上でファイルを管理できる機能です。 -::: tip +:::tip 技術的に言うと、Misskeyのシステム上、すべてのファイルが一元管理されており、それをユーザーにも公開したインターフェイスがドライブと捉えることができます。 ::: @@ -11,7 +11,7 @@ Misskey Webのドライブページから任意のファイルをアップロー ドライブ内にフォルダを作り、複数のファイルをまとめて整理することもできます。 -::: warning +:::warning 現時点で、ドライブからファイルを削除すると、そのファイルが添付された **すべてのコンテンツ(ノート、ページなど)** も同時に消えます。 ::: diff --git a/content/ja-JP/docs/features/favorite.md b/content/ja-JP/.docs-legacy/features/favorite.md similarity index 100% rename from content/ja-JP/docs/features/favorite.md rename to content/ja-JP/.docs-legacy/features/favorite.md diff --git a/content/ja-JP/docs/features/follow.md b/content/ja-JP/.docs-legacy/features/follow.md similarity index 100% rename from content/ja-JP/docs/features/follow.md rename to content/ja-JP/.docs-legacy/features/follow.md diff --git a/content/ja-JP/docs/features/hashtag.md b/content/ja-JP/.docs-legacy/features/hashtag.md similarity index 100% rename from content/ja-JP/docs/features/hashtag.md rename to content/ja-JP/.docs-legacy/features/hashtag.md diff --git a/content/ja-JP/docs/features/index.md b/content/ja-JP/.docs-legacy/features/index.md similarity index 100% rename from content/ja-JP/docs/features/index.md rename to content/ja-JP/.docs-legacy/features/index.md diff --git a/content/ja-JP/docs/features/mention.md b/content/ja-JP/.docs-legacy/features/mention.md similarity index 100% rename from content/ja-JP/docs/features/mention.md rename to content/ja-JP/.docs-legacy/features/mention.md diff --git a/content/ja-JP/docs/features/mfm.md b/content/ja-JP/.docs-legacy/features/mfm.md similarity index 99% rename from content/ja-JP/docs/features/mfm.md rename to content/ja-JP/.docs-legacy/features/mfm.md index 4ff9c93c..0de7af48 100644 --- a/content/ja-JP/docs/features/mfm.md +++ b/content/ja-JP/.docs-legacy/features/mfm.md @@ -5,7 +5,7 @@ description: 'MFMは、Misskeyの様々な場所で使用できる専用のマ # MFM MFMは、Markup language For Misskeyの略で、Misskeyの様々な場所で使用できる専用のマークアップ言語です。 -::: tip +:::tip 一部の構文はMarkdownやHTMLと互換性があります。 ::: @@ -18,7 +18,7 @@ MFMは、Markup language For Misskeyの略で、Misskeyの様々な場所で使 ## 構文 ### メンション アットマーク + ユーザー名で、特定のユーザーを示すことができます。 -::: tip +:::tip メンションについての詳細は[こちら](./mention.md)を参照してください。 ::: @@ -31,7 +31,7 @@ MFMは、Markup language For Misskeyの略で、Misskeyの様々な場所で使 ### ハッシュタグ ナンバーサイン + タグで、ハッシュタグを示すことができます。 -::: tip +:::tip ハッシュタグについての詳細は[こちら](./hashtag.md)を参照してください。 ::: @@ -53,7 +53,7 @@ https://example.com ### カスタム絵文字 コロンでカスタム絵文字名を囲むと、カスタム絵文字を表示させることができます。 -::: tip +:::tip カスタム絵文字についての詳細は[こちら](./custom-emoji.md)を参照してください。 ::: diff --git a/content/ja-JP/docs/features/mute-and-block.md b/content/ja-JP/.docs-legacy/features/mute-and-block.md similarity index 98% rename from content/ja-JP/docs/features/mute-and-block.md rename to content/ja-JP/.docs-legacy/features/mute-and-block.md index 3b52851c..6ba1a1d4 100644 --- a/content/ja-JP/docs/features/mute-and-block.md +++ b/content/ja-JP/.docs-legacy/features/mute-and-block.md @@ -3,11 +3,11 @@ また、より強力な措置として、ブロックを行うことでそのユーザーから自分のコンテンツが見えないようになるほか、自分に対して関わることができないようにすることができます。 ミュートされていることは相手は分かりませんが、ブロックされていることは相手に分かります。どちらを選ぶかはご自身の判断で行ってください。 -::: tip +:::tip ミュートとブロックは併用できます。 ::: -::: warning +:::warning 利用規約に違反するような、迷惑なユーザーがいる場合は運営者に報告することも検討してください。 ::: @@ -23,7 +23,7 @@ Misskey Webでは、設定>ミュートとブロック から、自分がミュ Misskey Webでユーザーをミュートするには、対象のユーザーのユーザーページのメニューを開き、「ミュート」ボタンを押します。 -::: tip +:::tip ミュートを行ったことは相手に通知されず、ミュートされていることを知ることもできません。 ::: @@ -44,10 +44,10 @@ Misskey Webでユーザーをミュートするには、対象のユーザーの Misskey Webでユーザーをブロックするには、対象のユーザーのユーザーページのメニューを開き、「ブロック」ボタンを押します。 -::: warning +:::warning ブロックを行ったこと自体は相手に通知されませんが、フォローを行ったりなどの上記のアクションが行えなくなるので間接的にブロックされていることは分かります。 ::: -::: warning +:::warning 相手から自分のコンテンツが見えなくなりますが、相手がアカウントを切り替えたりログアウト状態になれば見ることができます。あくまで簡易的、補助的なものとしてお考えください。 ::: diff --git a/content/ja-JP/docs/features/note.md b/content/ja-JP/.docs-legacy/features/note.md similarity index 98% rename from content/ja-JP/docs/features/note.md rename to content/ja-JP/.docs-legacy/features/note.md index 86b3f949..818bb177 100644 --- a/content/ja-JP/docs/features/note.md +++ b/content/ja-JP/.docs-legacy/features/note.md @@ -1,7 +1,7 @@ # ノート ノートは、Misskeyに投稿される、文章、ファイル、アンケートなどを含むコンテンツで、Misskeyの中心的概念です。また、そのノートを作成する行為自体もノートと呼ばれます。 -::: tip +:::tip ノートという名称は、英語で「短い記録」を意味する Note が由来になっています。 ::: @@ -16,11 +16,11 @@ Misskey Webでノートを作成するには、画面上にある鉛筆マーク ノートには、画像、動画など任意のファイルや、[アンケート](./poll)を添付することができます。また、本文中には[MFM](./mfm)が使用でき、[メンション](./mention)や[ハッシュタグ](./hashtag)を含めることもできます。 他にも、CWや公開範囲といった設定も行えます(詳細は後述)。 -::: tip +:::tip Misskey Webでは、コンピューターのクリップボードに画像データがある状態で、フォーム内のテキストボックスにペーストするとその画像を添付することができます。 ::: -::: tip +:::tip Misskey Webでは、テキストボックス内でCtrl + Enterを押すことでも投稿できます。 ::: @@ -29,7 +29,7 @@ Misskey Webでは、テキストボックス内でCtrl + Enter< 自分がフォローしているユーザーの、気に入ったノートを自分のフォロワーに共有したい場合や、過去の自分のノートを再度共有したい場合に使います。 同じノートに対して無制限にRenoteを行うことができますが、あまり連続して使用すると迷惑になる場合もあるので、注意しましょう。 -::: warning +:::warning 公開範囲がフォロワーやダイレクトのノートはRenoteできません。 ::: @@ -47,7 +47,7 @@ Misskey Webで公開範囲を設定するには、フォームの「ノート」 ### パブリック 全ての人に対してノートが公開されるほか、サーバーの全てのタイムライン(ホームタイムライン、ローカルタイムライン、ソーシャルタイムライン、グローバルタイムライン)にノートが流れます。 -::: warning +:::warning アカウントが[サイレンス](./silence)状態の時は、この公開範囲は使用できません。 ::: @@ -74,7 +74,7 @@ Misskey Webで公開範囲を設定するには、フォームの「ノート」 ノートをピン留めすると、ユーザーページに常にそのノートを表示しておくことができます。 Misskey Webでピン留めを行うには、ノートのメニューを開き、「ピン留め」を選択します。 -::: tip +:::tip 複数のノートを同時にピン留めすることも可能です。 ::: diff --git a/content/ja-JP/docs/features/online-status.md b/content/ja-JP/.docs-legacy/features/online-status.md similarity index 99% rename from content/ja-JP/docs/features/online-status.md rename to content/ja-JP/.docs-legacy/features/online-status.md index dedf71ac..f4dc9618 100644 --- a/content/ja-JP/docs/features/online-status.md +++ b/content/ja-JP/.docs-legacy/features/online-status.md @@ -33,6 +33,6 @@ オンラインステータスは自動的に変わり、手動で設定することは出来ません。 設定により、オンラインステータスを非公開にすることができます。 -::: warning +:::warning ユーザーのサジェストなど、一部の機能においてはオンラインステータスを元に処理される場合があるため、ステータスを非公開にすると他のユーザーから見つけにくくなることがあります。 ::: diff --git a/content/ja-JP/docs/features/pages.md b/content/ja-JP/.docs-legacy/features/pages.md similarity index 99% rename from content/ja-JP/docs/features/pages.md rename to content/ja-JP/.docs-legacy/features/pages.md index 4a778cbd..09db6fee 100644 --- a/content/ja-JP/docs/features/pages.md +++ b/content/ja-JP/.docs-legacy/features/pages.md @@ -2,7 +2,7 @@ Misskey上でノートとは別にページを作成できます。v13では静的ページに特化しています。 -::: warning +:::warning v13よりページによる動的ページ作成の代わりにMisskey Playが使用できます。 ::: diff --git a/content/ja-JP/docs/features/plugin.md b/content/ja-JP/.docs-legacy/features/plugin.md similarity index 100% rename from content/ja-JP/docs/features/plugin.md rename to content/ja-JP/.docs-legacy/features/plugin.md diff --git a/content/ja-JP/docs/features/reaction.md b/content/ja-JP/.docs-legacy/features/reaction.md similarity index 100% rename from content/ja-JP/docs/features/reaction.md rename to content/ja-JP/.docs-legacy/features/reaction.md diff --git a/content/ja-JP/docs/features/share-form.md b/content/ja-JP/.docs-legacy/features/share-form.md similarity index 99% rename from content/ja-JP/docs/features/share-form.md rename to content/ja-JP/.docs-legacy/features/share-form.md index 7df9d0ac..6e000d06 100644 --- a/content/ja-JP/docs/features/share-form.md +++ b/content/ja-JP/.docs-legacy/features/share-form.md @@ -5,7 +5,7 @@ URLにクエリパラメータとして共有内容をはじめとするいく ## クエリパラメータ -::: tip +:::tip すべてのパラメータは**オプション**であり、必須ではありません。 ::: @@ -41,7 +41,7 @@ URLにクエリパラメータとして共有内容をはじめとするいく | `visibleUserIds` | 対象ユーザーID(カンマ区切り) | | `visibleAccts` | 対象ユーザー[acct](../glossary.md#acct)(カンマ区切り) | -::: warning +:::warning `visibility`に`specified`を指定した場合は、`visibleUserIds`または`visibleAccts`の指定も必要です。 ::: diff --git a/content/ja-JP/docs/features/silence.md b/content/ja-JP/.docs-legacy/features/silence.md similarity index 100% rename from content/ja-JP/docs/features/silence.md rename to content/ja-JP/.docs-legacy/features/silence.md diff --git a/content/ja-JP/docs/features/theme.md b/content/ja-JP/.docs-legacy/features/theme.md similarity index 100% rename from content/ja-JP/docs/features/theme.md rename to content/ja-JP/.docs-legacy/features/theme.md diff --git a/content/ja-JP/docs/features/thread-mute.md b/content/ja-JP/.docs-legacy/features/thread-mute.md similarity index 97% rename from content/ja-JP/docs/features/thread-mute.md rename to content/ja-JP/.docs-legacy/features/thread-mute.md index f1048f27..8846ec25 100644 --- a/content/ja-JP/docs/features/thread-mute.md +++ b/content/ja-JP/.docs-legacy/features/thread-mute.md @@ -1,5 +1,5 @@ # スレッドミュート -::: tip +:::tip バージョン 12.95.0 以降の機能です。 ::: @@ -9,6 +9,6 @@ Misskey Webでスレッドをミュートするには、対象のスレッドに属する任意のノートもしくは起点のノートのメニューを開き、「スレッドをミュート」を選択します。 -::: warning +:::warning スレッド内のどのノートからミュート操作を行ったかに関わらず、そのスレッド全体がミュートされます。 ::: diff --git a/content/ja-JP/docs/features/timeline.md b/content/ja-JP/.docs-legacy/features/timeline.md similarity index 100% rename from content/ja-JP/docs/features/timeline.md rename to content/ja-JP/.docs-legacy/features/timeline.md diff --git a/content/ja-JP/docs/features/webhook.md b/content/ja-JP/.docs-legacy/features/webhook.md similarity index 99% rename from content/ja-JP/docs/features/webhook.md rename to content/ja-JP/.docs-legacy/features/webhook.md index 3abe30a9..11503e14 100644 --- a/content/ja-JP/docs/features/webhook.md +++ b/content/ja-JP/.docs-legacy/features/webhook.md @@ -1,9 +1,9 @@ # Webhook -::: tip +:::tip バージョン 12.109.0 以降の機能です。 ::: -::: warning +:::warning 実験的な機能であるため、動作が不安定だったり今後仕様が変更される可能性があります。 ::: diff --git a/content/ja-JP/docs/features/widgets.md b/content/ja-JP/.docs-legacy/features/widgets.md similarity index 100% rename from content/ja-JP/docs/features/widgets.md rename to content/ja-JP/.docs-legacy/features/widgets.md diff --git a/content/ja-JP/docs/features/word-mute.md b/content/ja-JP/.docs-legacy/features/word-mute.md similarity index 100% rename from content/ja-JP/docs/features/word-mute.md rename to content/ja-JP/.docs-legacy/features/word-mute.md diff --git a/content/ja-JP/docs/getting-started.md b/content/ja-JP/.docs-legacy/getting-started.md similarity index 98% rename from content/ja-JP/docs/getting-started.md rename to content/ja-JP/.docs-legacy/getting-started.md index dca3b838..078da7fe 100644 --- a/content/ja-JP/docs/getting-started.md +++ b/content/ja-JP/.docs-legacy/getting-started.md @@ -5,10 +5,10 @@ Misskeyを利用するには、どこかのサーバーにアカウントを作 [サーバー一覧](../instances.md)から、好きなサーバーを選ぶことができます。 -::: tip +:::tip どのサーバーを選んでも、他のサーバーのユーザーとやり取りすることができます。 -::: details +:::details Misskeyには連合機能が備わっています。 連合機能によって、別のサーバーのユーザーであっても、同じサーバーのユーザーと同じようにフォローやリアクション、Renoteなどができるようになっています。 diff --git a/content/ja-JP/docs/glossary.md b/content/ja-JP/.docs-legacy/glossary.md similarity index 100% rename from content/ja-JP/docs/glossary.md rename to content/ja-JP/.docs-legacy/glossary.md diff --git a/content/ja-JP/docs/index.md b/content/ja-JP/.docs-legacy/index.md similarity index 100% rename from content/ja-JP/docs/index.md rename to content/ja-JP/.docs-legacy/index.md diff --git a/content/ja-JP/docs/install.md b/content/ja-JP/.docs-legacy/install.md similarity index 98% rename from content/ja-JP/docs/install.md rename to content/ja-JP/.docs-legacy/install.md index 051d87e3..b0e2505a 100644 --- a/content/ja-JP/docs/install.md +++ b/content/ja-JP/.docs-legacy/install.md @@ -5,11 +5,11 @@ description: 'Misskeyサーバーの作成方法についての案内です。' # Misskeyサーバーの作成 Misskeyサーバーの構築に関心をお寄せいただきありがとうございます。サーバーの作成方法はいくつかあるので、下記から選んでガイドをお読みください。 -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: -::: danger +:::danger 自分のサーバーに対して Cloudflare を使用する場合、 Auto Minify 設定は使用しないようにしてください。 Cloudflare が最新の JavaScript を解釈せず、中のソースコードを破壊するため、Misskey が正常に動作しません。 diff --git a/content/ja-JP/docs/install/bash.md b/content/ja-JP/.docs-legacy/install/bash.md similarity index 99% rename from content/ja-JP/docs/install/bash.md rename to content/ja-JP/.docs-legacy/install/bash.md index c835542e..6c08c35d 100644 --- a/content/ja-JP/docs/install/bash.md +++ b/content/ja-JP/.docs-legacy/install/bash.md @@ -17,7 +17,7 @@ Misskeyを簡単にインストールするためのシェルスクリプトが 2. Ubuntuがインストールされたサーバー 3. Cloudflareアカウント(推奨) -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: diff --git a/content/ja-JP/docs/install/docker.md b/content/ja-JP/.docs-legacy/install/docker.md similarity index 98% rename from content/ja-JP/docs/install/docker.md rename to content/ja-JP/.docs-legacy/install/docker.md index e71ba10c..61bb1d48 100644 --- a/content/ja-JP/docs/install/docker.md +++ b/content/ja-JP/.docs-legacy/install/docker.md @@ -7,11 +7,11 @@ Docker Composeを使ったMisskey構築 このガイドはDocker Composeを使ったMisskeyセットアップ方法を説明します。 -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: -::: tip 前提条件 +:::tip 前提条件 - DockerおよびDocker Composeがインストールされていること。 ::: @@ -58,7 +58,7 @@ GLHF✨ Misskeyのアップデート方法 ---------------------------------------------------------------- -::: warning +:::warning アップデートの際は必ず[リリースノート](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md)を確認し、変更点や追加で必要になる作業の有無(ほとんどの場合ありません)を予め把握するようにしてください。 ::: diff --git a/content/ja-JP/docs/install/kubernetes.md b/content/ja-JP/.docs-legacy/install/kubernetes.md similarity index 98% rename from content/ja-JP/docs/install/kubernetes.md rename to content/ja-JP/.docs-legacy/install/kubernetes.md index 7cd1d5f8..aaa5499b 100644 --- a/content/ja-JP/docs/install/kubernetes.md +++ b/content/ja-JP/.docs-legacy/install/kubernetes.md @@ -1,7 +1,7 @@ # Kubernetes/TrueNASを使ったMisskey構築 このガイドでは、Kubernetes と HelmChartを使用したMisskeyセットアップ方法について説明します。 -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: @@ -15,7 +15,7 @@ MisskeyのHelmChartsはTrueNAS Scaleで使用するためのTrueChartsで公開 現在、Misskeyは*incubator* trainで進行中です。 -::: 前提条件 +:::前提条件 - TrueNAS Scale または - KubernetesクラスターとHelm diff --git a/content/ja-JP/docs/install/manual.md b/content/ja-JP/.docs-legacy/install/manual.md similarity index 97% rename from content/ja-JP/docs/install/manual.md rename to content/ja-JP/.docs-legacy/install/manual.md index a437123e..f1cfffee 100644 --- a/content/ja-JP/docs/install/manual.md +++ b/content/ja-JP/.docs-legacy/install/manual.md @@ -7,11 +7,11 @@ Misskey構築の手引き このガイドではMisskeyのインストール・セットアップ方法について解説します。 -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: -::: tip 前提条件 +:::tip 前提条件 以下のソフトウェアがインストール・設定されていること - **[Node.js](https://nodejs.org/en/)** (20.4.x以上) - **[PostgreSQL](https://www.postgresql.org/)** (15以上) @@ -76,7 +76,7 @@ NODE_ENV=production pnpm run start GLHF✨ -:::: details systemdを用いた管理 +::::details systemdを用いた管理 systemdサービスのファイルを作成 @@ -104,7 +104,7 @@ Restart=always WantedBy=multi-user.target ``` -::: warning +:::warning CentOSで1024以下のポートを使用してMisskeyを使用する場合は`ExecStart=/usr/bin/sudo /usr/bin/npm start`に変更する必要があります。 ::: @@ -121,13 +121,13 @@ misskeyサービスの起動 sudo systemctl start misskey ``` -::: tip +:::tip `systemctl status misskey`と入力すると、サービスの状態を調べることができます。 ::: :::: ## Misskeyのアップデート方法 -::: warning +:::warning アップデートの際は必ず[リリースノート](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md)を確認し、変更点や追加で必要になる作業の有無(ほとんどの場合ありません)を予め把握するようにしてください。 ::: @@ -150,7 +150,7 @@ pnpm run migrate sudo systemctl restart misskey ``` -::: tip +:::tip ビルドや起動時にエラーが発生した場合は、以下のコマンドをお試しください: - `pnpm run clean`または`pnpm run clean-all` - `pnpm rebuild` diff --git a/content/ja-JP/docs/install/ubuntu-manual.md b/content/ja-JP/.docs-legacy/install/ubuntu-manual.md similarity index 99% rename from content/ja-JP/docs/install/ubuntu-manual.md rename to content/ja-JP/.docs-legacy/install/ubuntu-manual.md index 2fe9aa0c..5a0e550a 100644 --- a/content/ja-JP/docs/install/ubuntu-manual.md +++ b/content/ja-JP/.docs-legacy/install/ubuntu-manual.md @@ -10,11 +10,11 @@ コピペばかりならシェルスクリプトでいいじゃん、と言うことで**シェルスクリプトでほぼ全部やってくれるやつを作ってみました!**\ [**シェルスクリプトの詳細と使用方法はこちらから!**](./bash.html) -::: tip +:::tip シェルスクリプトでの開発環境へのインストールは想定されていません。 ::: -::: tip +:::tip ドメインの購入とCloudflareのセットアップ、サーバーの確保についてはご自身でご準備ください。 ::: @@ -26,7 +26,7 @@ [docker-compose](./docker.html)なら、手作業でももうちょっと簡単に実行できるはずです。 -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: @@ -51,7 +51,7 @@ OSの違い、Misskey本体や依存するソフトウェアのバージョン * ドメインは[Google Domains](https://domains.google/intl/ja_jp/)などで予め用意しておくこと。 * ここではドメインをexample.tldとして解説を進めるので、自分が買ったドメインに適宜置き換えて読むこと。開発環境の場合はlocalhostと読み替えます(設定ファイルの項で別途説明) -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: @@ -77,7 +77,7 @@ Misskeyはrootで実行しない方がよいため、専用のユーザーを作 sudo adduser --disabled-password --disabled-login misskey ``` -::: tip +:::tip 開発環境の場合はユーザーを分ける必要はありません ::: @@ -176,7 +176,7 @@ activeならOK。 nginxは、主としてリバースプロキシに用いられるWebサーバーソフトである。Misskeyには必須ではないが、キャッシュ等をするとパフォーマンスが向上したり、httpからhttpsへの転送などをするために、インストールしておこう。 -::: tip +:::tip 開発環境の場合はnginxのセットアップは不要です ::: @@ -237,7 +237,7 @@ sudo apt install -y git build-essential サーバーをインターネットに公開する準備をする。 -::: tip +:::tip 開発環境の場合はファイヤーウォールやCloudFlare、Certbotの設定は不要です ::: @@ -271,7 +271,7 @@ systemctlで永続化する。 sudo systemctl enable ufw ``` -::: tip +:::tip ufwは、netfilter(iptables)を人間が操作しやすいようにするアプリだ。インストールスクリプトは、OCI環境ではnetfilterを直接操作する。 ::: @@ -375,7 +375,7 @@ nano .config/default.yml 設定できる値と記述方法は[.config/example.yml](https://github.com/syuilo/misskey/blob/develop/.config/example.yml)に書かれている。 -::: tip +:::tip 開発環境の場合、urlは`url: http://localhost:3000`と指定します。 ::: @@ -468,7 +468,7 @@ cd misskey NODE_ENV=production pnpm run build ``` -::: tip +:::tip 開発環境の場合、`NODE_ENV=production`は不要です。以降のコマンドでも同様に削除してください。 ::: @@ -514,7 +514,7 @@ CloudFlareのDNS設定が正しいIPアドレスになっているかもう一 ## Misskeyのデーモンを作成 -::: tip +:::tip 開発環境の場合、デーモンの作成は不要です。 ::: diff --git a/content/ja-JP/docs/misskey-hub.md b/content/ja-JP/.docs-legacy/misskey-hub.md similarity index 98% rename from content/ja-JP/docs/misskey-hub.md rename to content/ja-JP/.docs-legacy/misskey-hub.md index d3c7564f..0afb3d1a 100644 --- a/content/ja-JP/docs/misskey-hub.md +++ b/content/ja-JP/.docs-legacy/misskey-hub.md @@ -4,7 +4,7 @@ Misskey Hubは、Misskeyに関するナレッジなどのドキュメント、 Misskey Hubも[オープンソースで公開されています。](https://github.com/misskey-dev/misskey-hub) -::: tip +:::tip Misskey Hubは[VuePress](https://github.com/vuepress/vuepress-next)を使ってビルドされた静的サイトです。 ::: diff --git a/content/ja-JP/docs/misskey.md b/content/ja-JP/.docs-legacy/misskey.md similarity index 99% rename from content/ja-JP/docs/misskey.md rename to content/ja-JP/.docs-legacy/misskey.md index f0555525..6744efbb 100644 --- a/content/ja-JP/docs/misskey.md +++ b/content/ja-JP/.docs-legacy/misskey.md @@ -12,7 +12,7 @@ Misskeyはオープンソースの分散型マイクロブログプラットフ 開発当初は掲示板がメインのサービスでしたが、ユーザーが短文を投稿し、それを時系列で流れるタイムライン機能を追加したところ人気が高まり、徐々にそれがメインとして開発が進むようになりました。 当初は分散型ではありませんでしたが、2018年にActivityPubを実装し分散型になったことで、より多くの方に認知され利用されるサービスになり、現在に至ります。 -::: tip +:::tip Misskeyという名前は、syuiloが当時聴いていたMay'nというアーティストの楽曲、Brain Diverの歌詞に由来します。 ::: @@ -30,7 +30,7 @@ Misskeyのすべてのソースコードは[AGPL](https://github.com/misskey-dev 上述の分散型を実現するためにも、オープンソースであるということは必要不可欠な要素です。 再び引き合いに出しますが、TwitterやFacebookなどの利益を得ているほとんどのサービスはオープンソースではありません。 -::: tip +:::tip 技術的に言うと、MisskeyのソースコードはGitで管理されていて、リポジトリは[GitHub上でホスティングされています。](https://github.com/misskey-dev) ::: @@ -119,6 +119,6 @@ Misskeyは開発が進むにつれ使用する技術も大きく変わってき ### 時折目にする猫耳の可愛い女の子は? Misskeyの守り神、藍ちゃんです。アイチャンカワイイヤッター! -::: tip +:::tip 藍ちゃんについては[こちら](https://xn--931a.moe/)です。 ::: diff --git a/content/ja-JP/docs/notes.md b/content/ja-JP/.docs-legacy/notes.md similarity index 100% rename from content/ja-JP/docs/notes.md rename to content/ja-JP/.docs-legacy/notes.md diff --git a/content/ja-JP/docs/releases.md b/content/ja-JP/.docs-legacy/releases.md similarity index 99% rename from content/ja-JP/docs/releases.md rename to content/ja-JP/.docs-legacy/releases.md index 0f2c4fa7..94f704d9 100644 --- a/content/ja-JP/docs/releases.md +++ b/content/ja-JP/.docs-legacy/releases.md @@ -1161,7 +1161,7 @@ same as 12.112.0 リリース日: 2022/03/09 ### NOTE -::: warning +:::warning このバージョンからNode v16.14.0以降が必要です ::: @@ -1252,11 +1252,11 @@ same as 12.112.0 リリース日: 2022/02/09 ### Note -::: warning +:::warning ビルドする前に`npm run clean`を実行してください。 ::: -::: warning +:::warning このリリースはマイグレーションの規模が大きいため、インスタンスによってはマイグレーションに時間がかかる可能性があります。 マイグレーションが終わらない場合は、チャートの情報はリセットされてしまいますが`__chart__`で始まるテーブルの**レコード**を全て削除(テーブル自体は消さないでください)してから再度試す方法もあります。 ::: @@ -1316,7 +1316,7 @@ same as 12.112.0 リリース日: 2022/01/27 ### NOTE -::: warning +:::warning アップデート後、一部カスタム絵文字が表示できなくなる場合があります。その場合、一旦絵文字管理ページから絵文字を一括エクスポートし、再度コントロールパネルから一括インポートすると直ります。 12.102.0以前にエクスポートされたzipとは互換性がありません。アップデートしてからエクスポートを行なってください。 diff --git a/content/ja-JP/docs/tips/disable-timelines.md b/content/ja-JP/.docs-legacy/tips/disable-timelines.md similarity index 99% rename from content/ja-JP/docs/tips/disable-timelines.md rename to content/ja-JP/.docs-legacy/tips/disable-timelines.md index 9d1cbdeb..0df08a5f 100644 --- a/content/ja-JP/docs/tips/disable-timelines.md +++ b/content/ja-JP/.docs-legacy/tips/disable-timelines.md @@ -6,7 +6,7 @@ LTLやSTLは、そのサーバー全員の投稿が見れるため、新規の サーバーによってメリット/デメリットどちらが優勢かは異なるので、オプションとして無効にできるようになっています。 もしデメリットの方が上回っていると感じたら、それらのタイムラインを無効化することも検討してください。 -::: warning +:::warning 無効化を行うと、ユーザーが困惑し、短期的に見て利用者が減る可能性があります。そのため、無効化の際は影響を慎重に検討し、事前に説明してフォローを整える期間を一定程度設けることを推奨します。 ::: diff --git a/content/ja-JP/docs/tips/scale-out.md b/content/ja-JP/.docs-legacy/tips/scale-out.md similarity index 100% rename from content/ja-JP/docs/tips/scale-out.md rename to content/ja-JP/.docs-legacy/tips/scale-out.md diff --git a/content/ja-JP/docs/troubleshooting.md b/content/ja-JP/.docs-legacy/troubleshooting.md similarity index 99% rename from content/ja-JP/docs/troubleshooting.md rename to content/ja-JP/.docs-legacy/troubleshooting.md index 00d99640..044d630f 100644 --- a/content/ja-JP/docs/troubleshooting.md +++ b/content/ja-JP/.docs-legacy/troubleshooting.md @@ -3,7 +3,7 @@ description: '問題が発生したときは、まずこちらをご確認くだ --- # トラブルシューティング -::: tip +:::tip [よくある質問](./faq.md)も合わせてお役立てください。 ::: @@ -51,7 +51,7 @@ description: '問題が発生したときは、まずこちらをご確認くだ アップデートによりUIの改修が行われたときに、テーマのキャッシュシステムの影響でそのような表示になることがあります。 クライアントの設定の「キャッシュをクリア」すると直ります。 -::: warning +:::warning 「クライアントの」キャッシュクリアです。「ブラウザの」キャッシュクリアは行わないでください。 ::: diff --git a/content/ja-JP/docs/1.about-misskey.md b/content/ja-JP/docs/1.about-misskey.md new file mode 100644 index 00000000..6744efbb --- /dev/null +++ b/content/ja-JP/docs/1.about-misskey.md @@ -0,0 +1,124 @@ +--- +description: 'Misskeyについてのドキュメントです。' +--- + +# Misskeyについて + +Misskeyはオープンソースの分散型マイクロブログプラットフォームプロジェクトです。 +開発は日本でsyuiloによって2014年から開始されました。 +ドライブ、リアクションなどの豊富な機能や、高いカスタマイズ性を備えたUIを持つことが特徴です。 + +## 歴史 +開発当初は掲示板がメインのサービスでしたが、ユーザーが短文を投稿し、それを時系列で流れるタイムライン機能を追加したところ人気が高まり、徐々にそれがメインとして開発が進むようになりました。 +当初は分散型ではありませんでしたが、2018年にActivityPubを実装し分散型になったことで、より多くの方に認知され利用されるサービスになり、現在に至ります。 + +:::tip +Misskeyという名前は、syuiloが当時聴いていたMay'nというアーティストの楽曲、Brain Diverの歌詞に由来します。 +::: + +誰でも開発に参加することができ、現在でも活発に開発が続いています。 + +## 分散型とは何か? +分散(distributed)型とは、非中央集権(decentralized)とも呼ばれ、コミュニティが多数のサーバーに分散して存在し、それらが相互に通信(連合、federation)することでコンテンツ共有ネットワーク(Fediverse)を形成していることが特徴のサービスです。 +単一のサーバーしか存在しない、もしくは複数存在しても互いに独立している場合は中央集権なサービスと言われ、例えばTwitterやFacebookなどほとんどのサービスがそれに該当します。 +分散型のメリットは、自分に合った運営者やテーマのサーバーを選択できることです。自分でサーバーを作成することもできます。連合するおかげで、どのサーバーを選んでも、同じコミュニティにアクセスできます。 + +## 常にオープンソース +Misskeyはこれまでもこれからも、オープンソースであり続けます。オープンソースとは、簡単に言うとソフトウェアのソースコード(プログラム)が公開されていることです。ソースコードの修正や再配布が可能であることを定義に含めることもあります。 +Misskeyのすべてのソースコードは[AGPL](https://github.com/misskey-dev/misskey/blob/develop/LICENSE)というオープンソースライセンスの下に[公開](https://github.com/misskey-dev)されていて、誰でも自由に閲覧、使用、修正、改変、再配布をすることができます。 +オープンソースは、自分で好きなように変えたり、有害な処理が含まれていないことを確認することができたり、誰でも開発に参加できるなどの、様々なメリットがあります。 +上述の分散型を実現するためにも、オープンソースであるということは必要不可欠な要素です。 +再び引き合いに出しますが、TwitterやFacebookなどの利益を得ているほとんどのサービスはオープンソースではありません。 + +:::tip +技術的に言うと、MisskeyのソースコードはGitで管理されていて、リポジトリは[GitHub上でホスティングされています。](https://github.com/misskey-dev) +::: + +## 開発に参加する、プロジェクトを支援する +Misskeyを気に入っていただけたら、ぜひプロジェクトを支援してください。プロジェクトに貢献するには、以下で紹介するようにいろいろな方法があります。方法によっては開発のスキルは不要なので、誰でも気軽に参加し貢献することができます。いつでもお待ちしています。 + +### 機能を追加したり、バグを修正する +ソフトウェアエンジニアのスキルをお持ちの方であれば、ソースコードを編集する形でプロジェクトに貢献することができます。 +貢献についてのガイドは[こちら](https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md)です。 + +### 議論に参加する +新しい機能、または既存の機能について意見を述べたり、不具合を報告したりすることでも貢献できます。 +そのようなディスカッションは[GitHub](https://github.com/misskey-dev)上か、[フォーラム](https://forum.misskey.io/)等で行われます。 + +### テキストを翻訳する +Misskeyは様々な言語に対応しています(i18n -internationalizationの略- と呼ばれます)。元の言語は基本的に日本語ですが、有志によって他の言語へと翻訳されています。 +その翻訳作業に加わっていただくことでもMisskeyに貢献できます。 +Misskeyは[Crowdinというサービスを使用して翻訳の管理を行っています。](https://crowdin.com/project/misskey) + +### 感想を投稿する +不具合報告等だけではなく、Misskeyの良い点、楽しい点といったポジティブな意見もぜひ共有してください。開発の励みになり、それは間接的ですがプロジェクトへの貢献です。 + +### ミスキストを増やす +ミスキストとは、Misskeyを使用する人のことです。 +知り合いに紹介するなどしてMisskeyを広めていただければ、ミスキストが増え開発のモチベーションが上がります。 + +### 寄付をする +[こちらをご覧ください](./donate.md) + +## よくある質問 +### プロジェクトは何を目指していますか? +強いて言うと、漠然的になりますが広く使われる汎用的なプラットフォームになることを目指しています。 +Misskeyは他のプロジェクトとは違い、何らかの思想(例えば、反中央集権)やビジョンに基づいて開発が行われているわけではなく、その点ではフラットです。 +それが逆に、特定の方向性に縛られないフレキシブルさを生み出すことに繋がっていると感じています。 + + +### 企業によって開発されていますか? +いいえ。Misskeyの開発は個人で行われており、商業的でもないため、特定の企業の関りはありません。 +開発メンバーも基本的にはボランティアです。 +また、開発に対し企業のスポンサーがつくこともありますが、その場合でもやはり開発は個人のコミュニティが主体です。 + +### 誰が運営していますか? +Misskeyは分散型なため、各サーバーにそれぞれ異なった運営者がいます。従って、特定の個人や企業によって、Misskeyの全てが運営されているわけではありません。 +また、開発チームが運営を行うわけでもないため、運営に関する連絡は、お使いのサーバーの運営者に行ってください。 +サーバーの運営者は、サーバーの情報ページで確認することができます。 +あなたがサーバーを作成すれば、あなたが運営者になります。 + +### どのサーバーを選べばいいですか? +[サーバー一覧が公開されています。](../instances.md) +サーバーによってコミュニティのテーマ(特定のこと、ものが好き 等)が決められている場合があるので、自分に合ったテーマのサーバーがあれば、そこを選ぶと良いかもしれません。 +他にも、サーバーの規模、ユーザー層、国および言語、運営者が信頼できるかどうか、などの観点があります。 +なお、Misskey公式のサーバーというものはありません。自身で新しくサーバーを作成するという選択肢もあります。 + +基本的にどのサーバーを選んだとしても、他の全てのサーバーのユーザーと繋がることができます。 + +### サーバーを建てるにはどうしたらいいですか? +Misskeyサーバーの作成に興味を持っていただきありがとうございます。 +2022年現在、Misskeyのホスティングサービスは存在しないため、サーバーの作成にはある程度の知識が必要です。 +サーバーの作成方法については[こちら](./install.md)をご覧ください。 + +### どのような技術を使用していますか? +Misskeyは開発が進むにつれ使用する技術も大きく変わってきました。開発当初はMySQL + PHP + jQueryといった構成でしたが、現在は以下のようになっています。 +- サーバーサイド: Node.js +- データベース: PostgreSQL、Redis +- UIフレームワーク: Vue.js +- プログラミング言語: TypeScript + +また、MFMやAiScriptなどの、Misskeyから派生して独自の技術も開発しています。 + +### Mastodonのフォークですか? +いいえ。MisskeyはMastodonやその他のプロジェクトとは全く別のプロジェクトです。 +開発に関しても、Misskeyの方が昔から開発されています。ただし、分散型になったのはMastodonの登場より後です。 +同じActivityPubという分散のためのプロトコルを実装しているという点以外、両者に特に関りがあるわけでもありません。 + +### iOS/Androidのアプリはありますか? +公式にはそういったOSのネイティブアプリを開発していませんが、サードパーティ製のアプリがいくつかあります。 +詳しくは[こちら](./apps.md)をご覧ください。 + +ただ、サードパーティ製アプリはどうしても機能への対応が遅れてしまうため、とくに拘りがなければ公式のWebクライアントの利用をおすすめします。 +なお、MisskeyのWebクライアントはPWAに対応しているので、ネイティブアプリのように動作させることも可能です。 +詳しくは[こちら](todo)をご覧ください。 + +### Misskeyのロゴ、アイコンはどこで入手できますか? +[こちら](../appendix/assets.md) + +### 時折目にする猫耳の可愛い女の子は? +Misskeyの守り神、藍ちゃんです。アイチャンカワイイヤッター! + +:::tip +藍ちゃんについては[こちら](https://xn--931a.moe/)です。 +::: diff --git a/content/ko-KR/docs/admin/cdn.md b/content/ko-KR/.docs-legacy/admin/cdn.md similarity index 98% rename from content/ko-KR/docs/admin/cdn.md rename to content/ko-KR/.docs-legacy/admin/cdn.md index 39ab0d35..125e2879 100644 --- a/content/ko-KR/docs/admin/cdn.md +++ b/content/ko-KR/.docs-legacy/admin/cdn.md @@ -12,6 +12,6 @@ Misskey API는 캐싱할 수 없습니다. 다음 설정을 CDN에 구성해야 합니다: - `/api/*`를 제외한 모든 요청을 캐싱 -::: tip +:::tip Misskey를 업데이트할 때, 모든 캐시를 삭제할 필요는 없습니다. :::: diff --git a/content/ko-KR/docs/admin/default-reaction.md b/content/ko-KR/.docs-legacy/admin/default-reaction.md similarity index 100% rename from content/ko-KR/docs/admin/default-reaction.md rename to content/ko-KR/.docs-legacy/admin/default-reaction.md diff --git a/content/ko-KR/docs/admin/emoji.md b/content/ko-KR/.docs-legacy/admin/emoji.md similarity index 99% rename from content/ko-KR/docs/admin/emoji.md rename to content/ko-KR/.docs-legacy/admin/emoji.md index 02c7ce90..6a3c52ab 100644 --- a/content/ko-KR/docs/admin/emoji.md +++ b/content/ko-KR/.docs-legacy/admin/emoji.md @@ -17,7 +17,7 @@ 노트에 파일을 첨부하는 것처럼 동작합니다: 새 파일을 업로드하거나, Misskey 드라이브에서 선택하거나, 혹은 다른 URL에서 업로드하는 것도 가능합니다. -::: danger +:::danger 드라이브에서 이모지를 들여온다고 해서 파일이 별도로 복사되는 것은 아닙니다. 드라이브에서 해당 파일이 삭제되면 이모지도 망가지니 주의해주세요. ::: @@ -26,7 +26,7 @@ 이모지는 특별한 포맷을 따르는 ZIP 파일을 통해 들여올 수도 있습니다. 이 기능은 커스텀 이모지 창에서 맨 오른쪽 위의 점 3개(...) 메뉴에서 찾을 수 있습니다. -::: warning +:::warning 이모지를 대량으로 들여오는 과정에서 기존 이모지를 덮어쓰거나 인스턴스를 망가트릴 수 있습니다. 확인된 출처, 되도록 직접 작성한 이모지만을 들여오십시오. ::: @@ -81,7 +81,7 @@ class Emoji { 커스텀 이모지를 선택하면, 항목을 수정할 수 있는 창이 표시됩니다. 이 창에서는 이모지 삭제 또한 제공합니다. -::: danger +:::danger 커스텀 이모지를 삭제하더라도, 해당 이모지를 이용해 작성한 노트는 자동으로 수정되지 않습니다. 이에 따라, 해당 이모지는 더이상 정상적으로 표시되지 않게 됩니다. ::: diff --git a/content/ko-KR/docs/admin/nginx.md b/content/ko-KR/.docs-legacy/admin/nginx.md similarity index 100% rename from content/ko-KR/docs/admin/nginx.md rename to content/ko-KR/.docs-legacy/admin/nginx.md diff --git a/content/ko-KR/docs/admin/push-docker-hub.md b/content/ko-KR/.docs-legacy/admin/push-docker-hub.md similarity index 99% rename from content/ko-KR/docs/admin/push-docker-hub.md rename to content/ko-KR/.docs-legacy/admin/push-docker-hub.md index b562aece..a71be934 100644 --- a/content/ko-KR/docs/admin/push-docker-hub.md +++ b/content/ko-KR/.docs-legacy/admin/push-docker-hub.md @@ -4,7 +4,7 @@ 원본 저장소에서는, 실행된 타이밍에 `latest`, `<릴리스 명칭>` 각각의 태그로 Docker Hub에 푸시됩니다. -::: info +:::info Docker Hub에 `<브랜치명>`과 같은 태그가 있을 수도 있지만, 이러한 것은 자동 푸시 대상이 아닙니다. ::: diff --git a/content/ko-KR/docs/admin/troubleshooting.md b/content/ko-KR/.docs-legacy/admin/troubleshooting.md similarity index 99% rename from content/ko-KR/docs/admin/troubleshooting.md rename to content/ko-KR/.docs-legacy/admin/troubleshooting.md index be2d724a..5050dfa1 100644 --- a/content/ko-KR/docs/admin/troubleshooting.md +++ b/content/ko-KR/.docs-legacy/admin/troubleshooting.md @@ -1,6 +1,6 @@ # 문제가 발생했다면 -::: warning +:::warning 이 문서는 아직 국문/영문으로 번역되지 않았으며, 일문으로 제공되고 있습니다. 번역이 완료되기 전까지는 본 문서를 기계 번역하여 읽어주시면 감사하겠습니다. diff --git a/content/ko-KR/docs/advanced/aiscript.md b/content/ko-KR/.docs-legacy/advanced/aiscript.md similarity index 97% rename from content/ko-KR/docs/advanced/aiscript.md rename to content/ko-KR/.docs-legacy/advanced/aiscript.md index 255c5842..01c20acd 100644 --- a/content/ko-KR/docs/advanced/aiscript.md +++ b/content/ko-KR/.docs-legacy/advanced/aiscript.md @@ -1,7 +1,7 @@ # AiScript AiScript는 Misskey에서 사용할 수 있는 스크립팅 언어입니다. -::: tip +:::tip AiScript는 Misskey와는 별도의 프로젝트로, [오픈 소스](https://github.com/syuilo/aiscript)로 제공됩니다. ::: diff --git a/content/ko-KR/docs/advanced/create-plugin.md b/content/ko-KR/.docs-legacy/advanced/create-plugin.md similarity index 100% rename from content/ko-KR/docs/advanced/create-plugin.md rename to content/ko-KR/.docs-legacy/advanced/create-plugin.md diff --git a/content/ko-KR/docs/advanced/develop-bot.md b/content/ko-KR/.docs-legacy/advanced/develop-bot.md similarity index 100% rename from content/ko-KR/docs/advanced/develop-bot.md rename to content/ko-KR/.docs-legacy/advanced/develop-bot.md diff --git a/content/ko-KR/docs/advanced/plugin-api-reference.md b/content/ko-KR/.docs-legacy/advanced/plugin-api-reference.md similarity index 100% rename from content/ko-KR/docs/advanced/plugin-api-reference.md rename to content/ko-KR/.docs-legacy/advanced/plugin-api-reference.md diff --git a/content/ko-KR/docs/api/app.md b/content/ko-KR/.docs-legacy/api/app.md similarity index 100% rename from content/ko-KR/docs/api/app.md rename to content/ko-KR/.docs-legacy/api/app.md diff --git a/content/ko-KR/docs/api/common.json5 b/content/ko-KR/.docs-legacy/api/common.json5 similarity index 100% rename from content/ko-KR/docs/api/common.json5 rename to content/ko-KR/.docs-legacy/api/common.json5 diff --git a/content/ko-KR/docs/api/index.md b/content/ko-KR/.docs-legacy/api/index.md similarity index 98% rename from content/ko-KR/docs/api/index.md rename to content/ko-KR/.docs-legacy/api/index.md index c45786a2..0205e1c2 100644 --- a/content/ko-KR/docs/api/index.md +++ b/content/ko-KR/.docs-legacy/api/index.md @@ -4,7 +4,7 @@ description: 'Misskey는 클라이언트, 연동 웹 서비스, 봇 등("어플 # Misskey API -::: tip +:::tip 이 문서는 아직 국문으로 번역되지 않아, 일부 영문으로 제공됩니다. API 레퍼런스는 [여기](/docs/api/endpoints)를 참고해주세요. @@ -13,7 +13,7 @@ API 레퍼런스는 [여기](/docs/api/endpoints)를 참고해주세요. Misskey는 클라이언트, 연동 웹 서비스, 봇 등("어플리케이션"이라 합니다)을 개발할 수 있도록 API를 제공합니다. 스트리밍 API도 제공하고 있어, 실시간 호환성을 가진 어플리케이션을 제작할수도 있습니다. -::: tip +:::tip 공식 Misskey SDK나 서드파티 라이브러리를 이용하면 이 문서의 몇몇 단계를 간소화하는 등 API를 더 간편하게 이용할 수 있습니다. [여기](TODO)를 통해 자세히 알아보세요. ::: @@ -25,7 +25,7 @@ API를 사용하려면, 먼저 API를 사용하려는 계정과 연결된 **엑 API는 일반적으로 요청을 생성하기 위해 액세스 토큰이 필요합니다. 액세스 토큰은 사용자를 식별하고 API를 통한 작업을 제어하는 자격 증명 집합입니다. -::: tip +:::tip 사용자와 엑세스 토큰 사이에는 한 개에서 여러 개의 연결이 존재하며, 한 사용자가 여러 엑세스 토큰을 생성하는 것도 가능합니다. ::: @@ -35,7 +35,7 @@ API는 일반적으로 요청을 생성하기 위해 액세스 토큰이 필요 엑세스 토큰은 Misskey Web의 '설정 > API'에서 생성할 수 있습니다. -::: warning +:::warning 엑세스 토큰은 다른 사람과 공유하지 마십시오. ::: @@ -43,7 +43,7 @@ API는 일반적으로 요청을 생성하기 위해 액세스 토큰이 필요 어플리케이션의 사용자로부터 엑세스 토큰을 얻으려면, 뒤에 설명되어 있는 방법으로 요청할 수 있습니다. -::: tip +:::tip 아래에서 설명하는 것은 MiAuth를 통해 앱을 만들지 않고도 액세스 토큰을 발행하는 방법입니다. [기존처럼 앱을 생성해 액세스 토큰을 취득할 수도 있습니다.](./app.md) @@ -53,7 +53,7 @@ API는 일반적으로 요청을 생성하기 위해 액세스 토큰이 필요 UUID를 생성하세요. 이 UUID는 앞으로 **세션 ID**라 부르게 됩니다. -::: warning +:::warning 이 세션 ID는 매번 생성해야 하며, 재사용되어서는 안 됩니다. ::: @@ -79,7 +79,7 @@ https://{host}/miauth/{session} | `callback` | 인증 후 사용자가 돌아갈 URL입니다. 쿼리 파라미터로 `session`이 추가됩니다. | | `permission` | 어플리케이션이 요청하는 권한입니다.
권한은 `,`로 구분된 목록으로 요청됩니다. 권한 목록은 [여기](TODO)에서 확인할 수 있습니다. | -::: 예시 +:::예시 ```:no-line-numbers https://misskey.io/miauth/c1f6d42b-468b-4fd2-8274-e58abdedef6f?name=MyApp&callback=https%3A%2F%2Fmyapp.example.com%2Fcallback&permisson=write:notes,write:following,read:drive @@ -110,7 +110,7 @@ https://{host}/api/miauth/{session}/check ## Using the API Once you have your API access token, you can use the API by making requests to the various endpoints. -::: tip +:::tip - All HTTP APIs are POST, and both request and response are in JSON format (excluding drive/files/create). - Specify `Content-Type: application/json` in the request header. @@ -131,12 +131,12 @@ The access token is included in the request body JSON at the parameter `i`. For more information on the API, see the [API Reference](./endpoints.html). -::: warning +:::warning Misskey does not use REST. ::: In addition to the HTTP API, Misskey also provides a streaming API. More information about the streaming API can be found [here](./streaming/). -::: tip +:::tip Your Misskey instance also provides API documentation at `/api-doc`. ::: diff --git a/content/ko-KR/docs/api/libraries.md b/content/ko-KR/.docs-legacy/api/libraries.md similarity index 100% rename from content/ko-KR/docs/api/libraries.md rename to content/ko-KR/.docs-legacy/api/libraries.md diff --git a/content/ko-KR/docs/api/permission.md b/content/ko-KR/.docs-legacy/api/permission.md similarity index 100% rename from content/ko-KR/docs/api/permission.md rename to content/ko-KR/.docs-legacy/api/permission.md diff --git a/content/ko-KR/docs/api/streaming/channel/global-timeline.md b/content/ko-KR/.docs-legacy/api/streaming/channel/global-timeline.md similarity index 100% rename from content/ko-KR/docs/api/streaming/channel/global-timeline.md rename to content/ko-KR/.docs-legacy/api/streaming/channel/global-timeline.md diff --git a/content/ko-KR/docs/api/streaming/channel/home-timeline.md b/content/ko-KR/.docs-legacy/api/streaming/channel/home-timeline.md similarity index 100% rename from content/ko-KR/docs/api/streaming/channel/home-timeline.md rename to content/ko-KR/.docs-legacy/api/streaming/channel/home-timeline.md diff --git a/content/ko-KR/docs/api/streaming/channel/hybrid-timeline.md b/content/ko-KR/.docs-legacy/api/streaming/channel/hybrid-timeline.md similarity index 100% rename from content/ko-KR/docs/api/streaming/channel/hybrid-timeline.md rename to content/ko-KR/.docs-legacy/api/streaming/channel/hybrid-timeline.md diff --git a/content/ko-KR/docs/api/streaming/channel/index.md b/content/ko-KR/.docs-legacy/api/streaming/channel/index.md similarity index 100% rename from content/ko-KR/docs/api/streaming/channel/index.md rename to content/ko-KR/.docs-legacy/api/streaming/channel/index.md diff --git a/content/ko-KR/docs/api/streaming/channel/local-timeline.md b/content/ko-KR/.docs-legacy/api/streaming/channel/local-timeline.md similarity index 100% rename from content/ko-KR/docs/api/streaming/channel/local-timeline.md rename to content/ko-KR/.docs-legacy/api/streaming/channel/local-timeline.md diff --git a/content/ko-KR/docs/api/streaming/channel/main.md b/content/ko-KR/.docs-legacy/api/streaming/channel/main.md similarity index 100% rename from content/ko-KR/docs/api/streaming/channel/main.md rename to content/ko-KR/.docs-legacy/api/streaming/channel/main.md diff --git a/content/ko-KR/docs/api/streaming/index.md b/content/ko-KR/.docs-legacy/api/streaming/index.md similarity index 99% rename from content/ko-KR/docs/api/streaming/index.md rename to content/ko-KR/.docs-legacy/api/streaming/index.md index c82d1462..6656fd8a 100644 --- a/content/ko-KR/docs/api/streaming/index.md +++ b/content/ko-KR/.docs-legacy/api/streaming/index.md @@ -4,7 +4,7 @@ description: "The streaming API provides real-time information (e.g., new posts # Streaming API -::: tip +:::tip 이 문서는 현재 영문으로 제공됩니다. 읽기 전에, [Misskey API 문서](../)를 먼저 읽고 와 주세요. @@ -26,7 +26,7 @@ where - `{host}` is the host of the instance you want to connect to. - `{token}` is the users access token. -::: tip +:::tip You can also connect without the access token, but this will limit the information you receive and operations you can perform. ::: @@ -40,7 +40,7 @@ To receive such events, you need to join a **channel** on the stream, as describ Misskey's streaming API has the concept of channels. This is a mechanism for separating the information to be sent and received. By joining channels on the stream, you will be able to receive various kinds of information and send information. -::: tip +:::tip You can join multiple channels simultaneously on a single stream connection. ::: @@ -67,7 +67,7 @@ where - `id` is an arbitrary ID for interacting with that channel. This is necessary to identify which channel the message is coming from, because a stream contains multiple channels. This ID can be something like a UUID or a random number. - `params` are parameters required when joining a channel. Different channels require different parameters when connecting. When connecting to a channel that does not require parameters, this property can be omitted. -::: tip +:::tip The ID is not per channel but per channel connection, because a channel may be needed multiple times but with different parameters. ::: diff --git a/content/ko-KR/docs/api/streaming/note-capture-events.md b/content/ko-KR/.docs-legacy/api/streaming/note-capture-events.md similarity index 100% rename from content/ko-KR/docs/api/streaming/note-capture-events.md rename to content/ko-KR/.docs-legacy/api/streaming/note-capture-events.md diff --git a/content/ko-KR/docs/apps.md b/content/ko-KR/.docs-legacy/apps.md similarity index 100% rename from content/ko-KR/docs/apps.md rename to content/ko-KR/.docs-legacy/apps.md diff --git a/content/ko-KR/docs/donate.md b/content/ko-KR/.docs-legacy/donate.md similarity index 99% rename from content/ko-KR/docs/donate.md rename to content/ko-KR/.docs-legacy/donate.md index d757935d..55d87546 100644 --- a/content/ko-KR/docs/donate.md +++ b/content/ko-KR/.docs-legacy/donate.md @@ -7,7 +7,7 @@ Misskey는 영리 목적의 사업이 아니며, 무료로 이용할 수 있기 - 가상화폐: `0xF1121108E21C92aAC7814137DD67e0d48eAC7Fdc` - [Amazon JP 위시리스트](https://www.amazon.jp/hz/wishlist/ls/4JG4P6XKX9KD?ref_=wl_share) -::: tip +:::tip 다음 액수 이상 기부해주시면 다음과 같은 답례를 준비하고 있습니다. - 1,000엔 이상: 사용하는 misskey.io 인스턴스 계정에 mi배지 부여 - 3,000엔 이상: 상기 + Misskey 크레딧에 기부자 이름 기재 diff --git a/content/ko-KR/docs/faq.md b/content/ko-KR/.docs-legacy/faq.md similarity index 100% rename from content/ko-KR/docs/faq.md rename to content/ko-KR/.docs-legacy/faq.md diff --git a/content/ko-KR/docs/features/ads.md b/content/ko-KR/.docs-legacy/features/ads.md similarity index 98% rename from content/ko-KR/docs/features/ads.md rename to content/ko-KR/.docs-legacy/features/ads.md index bb9671f0..a583e36a 100644 --- a/content/ko-KR/docs/features/ads.md +++ b/content/ko-KR/.docs-legacy/features/ads.md @@ -2,7 +2,7 @@ Misskey는 인스턴스 관리자가 활성화한 경우 인스턴스 타임라인 및 기타 위치에 광고를 표시할 수 있습니다. 광고의 오른쪽 상단을 클릭하면 광고가 표시되는 빈도를 줄일 수 있습니다. -::: tip +:::tip 인스턴스에 표시되는 총 광고 수가 적은 경우 광고 표시 빈도를 줄이도록 선택한 후에도 광고가 계속 표시될 수 있습니다. ::: diff --git a/content/ko-KR/docs/features/antenna.md b/content/ko-KR/.docs-legacy/features/antenna.md similarity index 100% rename from content/ko-KR/docs/features/antenna.md rename to content/ko-KR/.docs-legacy/features/antenna.md diff --git a/content/ko-KR/docs/features/charts.md b/content/ko-KR/.docs-legacy/features/charts.md similarity index 100% rename from content/ko-KR/docs/features/charts.md rename to content/ko-KR/.docs-legacy/features/charts.md diff --git a/content/ko-KR/docs/features/clip.md b/content/ko-KR/.docs-legacy/features/clip.md similarity index 100% rename from content/ko-KR/docs/features/clip.md rename to content/ko-KR/.docs-legacy/features/clip.md diff --git a/content/ko-KR/docs/features/custom-emoji.md b/content/ko-KR/.docs-legacy/features/custom-emoji.md similarity index 100% rename from content/ko-KR/docs/features/custom-emoji.md rename to content/ko-KR/.docs-legacy/features/custom-emoji.md diff --git a/content/ko-KR/docs/features/deck.md b/content/ko-KR/.docs-legacy/features/deck.md similarity index 100% rename from content/ko-KR/docs/features/deck.md rename to content/ko-KR/.docs-legacy/features/deck.md diff --git a/content/ko-KR/docs/features/drive.md b/content/ko-KR/.docs-legacy/features/drive.md similarity index 98% rename from content/ko-KR/docs/features/drive.md rename to content/ko-KR/.docs-legacy/features/drive.md index 798030d1..118cfc17 100644 --- a/content/ko-KR/docs/features/drive.md +++ b/content/ko-KR/.docs-legacy/features/drive.md @@ -1,7 +1,7 @@ # 드라이브 드라이브를 통해 Misskey에서 파일을 관리할 수 있습니다. -::: tip +:::tip 기술적으로, 드라이브는 Misskey에서 현재 관리하고 있는 파일을 사용자에게 보여주는 인터페이스입니다. ::: @@ -11,7 +11,7 @@ Misskey Web에서는 드라이브 페이지에서 파일을 바로 업로드할 여러 파일을 정렬하기 위한 폴더를 만들 수도 있습니다. -::: warning +:::warning 현재로서는, 드라이브에서 파일을 지우면 해당 파일이 첨부된 모든 컨텐츠가 함께 삭제됩니다. ::: diff --git a/content/ko-KR/docs/features/favorite.md b/content/ko-KR/.docs-legacy/features/favorite.md similarity index 100% rename from content/ko-KR/docs/features/favorite.md rename to content/ko-KR/.docs-legacy/features/favorite.md diff --git a/content/ko-KR/docs/features/follow.md b/content/ko-KR/.docs-legacy/features/follow.md similarity index 100% rename from content/ko-KR/docs/features/follow.md rename to content/ko-KR/.docs-legacy/features/follow.md diff --git a/content/ko-KR/docs/features/hashtag.md b/content/ko-KR/.docs-legacy/features/hashtag.md similarity index 99% rename from content/ko-KR/docs/features/hashtag.md rename to content/ko-KR/.docs-legacy/features/hashtag.md index d8aa17e0..f20e6178 100644 --- a/content/ko-KR/docs/features/hashtag.md +++ b/content/ko-KR/.docs-legacy/features/hashtag.md @@ -1,5 +1,5 @@ # 해시태그 -::: info +:::info 본 문서는 일본어로만 작성되어 있어 일본어로 제공됩니다. ::: ハッシュタグとは、投稿に検索可能なタグをつけることができる機能の一つです。 diff --git a/content/ko-KR/docs/features/index.md b/content/ko-KR/.docs-legacy/features/index.md similarity index 100% rename from content/ko-KR/docs/features/index.md rename to content/ko-KR/.docs-legacy/features/index.md diff --git a/content/ko-KR/docs/features/mfm.md b/content/ko-KR/.docs-legacy/features/mfm.md similarity index 99% rename from content/ko-KR/docs/features/mfm.md rename to content/ko-KR/.docs-legacy/features/mfm.md index 70fa8555..d0649241 100644 --- a/content/ko-KR/docs/features/mfm.md +++ b/content/ko-KR/.docs-legacy/features/mfm.md @@ -1,7 +1,7 @@ # MFM Misskey를 위한 마크다운 문법인 MFM은 Misskey 내의 여러 곳에서 활용할 수 있는 마크업 언어입니다. -::: tip +:::tip 기본적인 문법은 Markdown과 호환됩니다. ::: @@ -25,7 +25,7 @@ Misskey를 위한 마크다운 문법인 MFM은 Misskey 내의 여러 곳에서 ### 해시태그 `#` 마크와 이름을 이어 적어 해시태그를 작성할 수 있습니다. -::: tip +:::tip 해시태그에 대한 더 자세한 내용은 [여기](./hashtag.md)에서 확인해주세요. ::: @@ -42,7 +42,7 @@ Misskey를 위한 마크다운 문법인 MFM은 Misskey 내의 여러 곳에서 ### 커스텀 이모지 `:`으로 이름을 둘러싸면 커스텀 이모지를 표시할 수 있습니다. -::: tip +:::tip 커스텀 이모지에 관련한 더 자세한 내용은 [여기](./custom-emoji.md)를 참조해주세요. ::: diff --git a/content/ko-KR/docs/features/mute-and-block.md b/content/ko-KR/.docs-legacy/features/mute-and-block.md similarity index 97% rename from content/ko-KR/docs/features/mute-and-block.md rename to content/ko-KR/.docs-legacy/features/mute-and-block.md index b26d8b5c..fc6b521a 100644 --- a/content/ko-KR/docs/features/mute-and-block.md +++ b/content/ko-KR/.docs-legacy/features/mute-and-block.md @@ -3,11 +3,11 @@ 또는 블록을 해 당신의 콘텐츠를 보거나 관련 활동을 하지 못하도록 할 수도 있습니다. 상대방은 뮤트된 것은 알 수 없지만 차단된 것은 알 수 있습니다. -::: tip +:::tip 뮤트와 블록은 동시에 쓸 수도 있습니다. ::: -::: warning +:::warning 서비스 약관을 위반하는 사용자는 관리진에게 보고해 주세요. ::: @@ -21,7 +21,7 @@ Misskey Web에서 설정 > 뮤트 및 차단 메뉴로 들어가면 뮤트하거 Misskey Web에서 사용자를 뮤트하려면, 사용자의 프로필 페이지에서 메뉴를 열어 "뮤트"를 선택하세요. -::: tip +:::tip 뮤트를 했다는 알림은 발송되지 않으며, 뮤트된 사용자도 자신이 뮤트되었다는 사실을 알 수 없습니다. ::: @@ -39,11 +39,11 @@ Misskey Web에서 사용자를 뮤트하려면, 사용자의 프로필 페이지 Misskey Web에서 사용자를 차단하려면, 사용자의 프로필 페이지에서 메뉴를 열어 "차단"을 선택해 주세요. -::: warning +:::warning 상대방에게 차단되었다는 알림은 발송되지 않지만, 위에 언급된 모든 동작을 수행할 수 없기 때문에 간접적으로 알게 될 수 있습니다. ::: -::: warning +:::warning 차단은 단순하지만 유용한 기능입니다. 차단된 사용자는 차단한 사용자의 콘텐츠를 확인할 수 없게 되지만, 계정을 변경하거나 로그아웃하면 여전히 확인할 수 있습니다. 차단된 사용자가 콘텐츠를 확인하기 더 어렵게 하려면 기본 노트 게시 설정을 "팔로우"로 설정하고 팔로우를 수동으로 승인하도록 설정을 변경하는 것을 권장합니다. diff --git a/content/ko-KR/docs/features/note.md b/content/ko-KR/.docs-legacy/features/note.md similarity index 98% rename from content/ko-KR/docs/features/note.md rename to content/ko-KR/.docs-legacy/features/note.md index 083eff72..d93ff308 100644 --- a/content/ko-KR/docs/features/note.md +++ b/content/ko-KR/.docs-legacy/features/note.md @@ -14,16 +14,16 @@ Misskey에서는 각 노트에 대해 [반응을 추가](./reaction.md)하는 또한 텍스트 내에서 [MFM](./mfm.md)를 이용해 멘션 및 [해시태그](./hashtag.md)를 추가로 포함할 수도 있습니다. 콘텐츠 경고(CW) 또는 노트 가시성과 같은 기타 설정도 가능합니다. -::: tip +:::tip 컴퓨터 등 키보드가 연결된 환경에서, 키보드의 N 키 혹은 P 키를 입력해 노트 작성 양식을 열 수도 있습니다. 여기에서 `N`은 "노트(Note)", `P`는 "포스트(Post)"의 약호입니다. ::: -::: tip +:::tip 컴퓨터를 이용하고 있고 클립보드에 이미지가 저장되어 있다면, 단순히 붙여넣는 것만으로도 이미지를 첨부할 수 있습니다. ::: -::: tip +:::tip 키보드 커서가 텍스트 입력 상자를 가리키고 있을 때 키보드의 Ctrl + Enter를 입력해 노트를 전송할 수 있습니다. ::: @@ -32,7 +32,7 @@ Misskey에서는 각 노트에 대해 [반응을 추가](./reaction.md)하는 일반적으로, 팔로워에게 마음에 드는 노트를 공유하거나 과거의 노트를 다시 포스트할 때 활용할 수 있습니다. 한 노트를 여러 번 리노트하는 것도 당연히 가능하지만, 다른 팔로워가 귀찮아할 수도 있습니다. -::: warning +:::warning 팔로워 전용 노트 혹은 다이렉트 노트는 리노트할 수 없습니다. ::: @@ -43,7 +43,7 @@ Misskey에서는 각 노트에 대해 [반응을 추가](./reaction.md)하는 장문의 내용을 숨기거나 스포일러를 일차적으로 차단하는 용도로 이용할 수 있습니다. 아니면 NSFW 콘텐츠를 숨기는 데에도 활용 가능합니다. 노트에 대해 CW를 활성화하려면 노트 작성 양식에서 "내용 숨기기"(눈 아이콘) 버튼을 누릅니다. 이렇게 하면 CW에 의해 숨겨진 내용을 요약 작성할 수 있는 별도의 입력 영역이 나타납니다. -::: warning +:::warning CW를 통해 내용을 가리더라도, 내용을 언제든 확인할 수 있습니다. CW를 이용할 때 각 인스턴스의 이용 약관을 위반하지 않도록 주의해 주세요. ::: @@ -52,14 +52,14 @@ CW를 이용할 때 각 인스턴스의 이용 약관을 위반하지 않도록 각 노트에 대해 가시성을 별도 설정할 수 있습니다. 노트 작성 양식에서 "노트" 버튼 옆의 아이콘을 선택하면 가시성 설정 메뉴가 표시되며, 여기에서 노트가 어떻게 보이는지를 설정할 수 있습니다. -::: warning +:::warning [사일런스](./silence.md)되어 있는 경우 사일런스한 계정에는 표시되지 않습니다. ::: ### 공개 모든 사용자에게 노트가 공개됩니다. 홈, 로컬, 소셜, 글로벌 타임라인에도 모두 노출됩니다. -::: warning +:::warning [사일런스](./silence.md)되어 있는 경우 사일런스한 계정에는 표시되지 않습니다. ::: @@ -86,7 +86,7 @@ CW를 이용할 때 각 인스턴스의 이용 약관을 위반하지 않도록 노트를 프로필에 고정하면 해당 노트가 프로필 페이지의 상단에 계속 표시됩니다. 노트를 고정하려면 노트의 메뉴를 열어 "프로필에 고정"을 선택하세요. -::: tip +:::tip 여러 노트를 동시에 고정할 수도 있습니다. ::: diff --git a/content/ko-KR/docs/features/online-status.md b/content/ko-KR/.docs-legacy/features/online-status.md similarity index 99% rename from content/ko-KR/docs/features/online-status.md rename to content/ko-KR/.docs-legacy/features/online-status.md index 53fb2b66..49b1b33d 100644 --- a/content/ko-KR/docs/features/online-status.md +++ b/content/ko-KR/.docs-legacy/features/online-status.md @@ -12,6 +12,6 @@ 온라인 상태는 자동으로 설정되며 직접 변경할 수 없습니다. 온라인 상태를 비공개 표시할 수는 있습니다. -::: warning +:::warning 사용자 추천 등의 몇몇 기능은 온라인 상태와 관련되어 있는 경우가 있습니다. 따라서, 온라인 상태를 비공개로 설정하면 다른 사용자가 당신을 찾기 어렵게 만들 수 있습니다. ::: diff --git a/content/ko-KR/docs/features/pages.md b/content/ko-KR/.docs-legacy/features/pages.md similarity index 98% rename from content/ko-KR/docs/features/pages.md rename to content/ko-KR/.docs-legacy/features/pages.md index 1a7bf2c4..f30dce0b 100644 --- a/content/ko-KR/docs/features/pages.md +++ b/content/ko-KR/.docs-legacy/features/pages.md @@ -1,5 +1,5 @@ # 페이지 -::: tip +:::tip 본 기능은 Misskey v12를 끝으로 업데이트가 중단되었으며, 대부분의 기능이 Play로 이전되었습니다. Misskey Play에 대해 자세히 알아보려면 [여기](./play.md)를 확인해주세요. @@ -16,7 +16,7 @@ Misskey의 페이지는 다양한 블록으로 제작되며, 블록은 드래그 다른 블록을 포함하는 그룹형 블록입니다. 각 콘텐츠 블록은 상단에 제목이 표시됩니다. ### 텍스트 -::: tip +:::tip 이 기능은 Misskey v12까지만 지원됩니다. Misskey v13에서는 해당 기능이 삭제되었습니다. ::: @@ -33,28 +33,28 @@ MFM이 지원되지 않는 텍스트 영역입니다. 변수 삽입은 여전히 기존에 작성한 노트를 첨부할 수 있습니다. ### 캔버스 -::: tip +:::tip 이 기능은 Misskey v12까지만 지원됩니다. Misskey v13에서는 해당 기능이 삭제되었습니다. ::: TODO ## 입력 블록 -::: tip +:::tip 이 기능은 Misskey v12까지만 지원됩니다. Misskey v13에서는 해당 기능이 삭제되었습니다. ::: 입력 블록은 폼 엘레멘트를 통해 반응형 페이지를 만들 수 있습니다. 이러한 블록은 페이지의 변수와 스크립트에서 활용할 수 있습니다. ## 특수 블록 -::: tip +:::tip 이 기능은 Misskey v12까지만 지원됩니다. Misskey v13에서는 해당 기능이 삭제되었습니다. ::: 특수 블록은 페이지에 특수한 기능을 제공합니다. 노트 작성 폼과 페이지 컨트롤 등을 포함합니다. ## 변수 -::: tip +:::tip 이 기능은 Misskey v12까지만 지원됩니다. Misskey v13에서는 해당 기능이 삭제되었습니다. ::: diff --git a/content/ko-KR/docs/features/play.md b/content/ko-KR/.docs-legacy/features/play.md similarity index 100% rename from content/ko-KR/docs/features/play.md rename to content/ko-KR/.docs-legacy/features/play.md diff --git a/content/ko-KR/docs/features/plugin.md b/content/ko-KR/.docs-legacy/features/plugin.md similarity index 100% rename from content/ko-KR/docs/features/plugin.md rename to content/ko-KR/.docs-legacy/features/plugin.md diff --git a/content/ko-KR/docs/features/reaction.md b/content/ko-KR/.docs-legacy/features/reaction.md similarity index 99% rename from content/ko-KR/docs/features/reaction.md rename to content/ko-KR/.docs-legacy/features/reaction.md index 9d3fd3ca..fe43acd1 100644 --- a/content/ko-KR/docs/features/reaction.md +++ b/content/ko-KR/.docs-legacy/features/reaction.md @@ -14,7 +14,7 @@ Misskey Web에서능 이모지가 선택기에 표시되며, 순서와 크기를 ## 리모트 인스턴스에서의 리엑션 Misskey는 좋아요가 없기 때문에, 리모트 인스턴스의 "좋아요"는 '👍'로 표시됩니다. -::: tip +:::tip 인스턴스 관리자가 '⭐' 리엑션으로 변경할 수도 있습니다. 관리자라면 [여기](../admin/default-reaction.md)를 확인해 주세요. ::: diff --git a/content/ko-KR/docs/features/roles.md b/content/ko-KR/.docs-legacy/features/roles.md similarity index 100% rename from content/ko-KR/docs/features/roles.md rename to content/ko-KR/.docs-legacy/features/roles.md diff --git a/content/ko-KR/docs/features/share-form.md b/content/ko-KR/.docs-legacy/features/share-form.md similarity index 98% rename from content/ko-KR/docs/features/share-form.md rename to content/ko-KR/.docs-legacy/features/share-form.md index 671c6102..2308dddc 100644 --- a/content/ko-KR/docs/features/share-form.md +++ b/content/ko-KR/.docs-legacy/features/share-form.md @@ -1,5 +1,5 @@ # 공유 양식 -::: tip +:::tip 본 기능은 Misskey v13에서 이용할 수 없습니다. 다만 링크는 살아있는 것으로 확인되어 있습니다. ::: @@ -9,7 +9,7 @@ You can specify a number of options for the URL, including the shared content as ## Query parameters -::: tip +:::tip All parameters are **optional**. ::: @@ -45,7 +45,7 @@ The following options allow to select a scope. | `visibleUserIds` | target user IDs | | `visibleAccts` | target user [acct](../glossary.md#acct)s (comma separated) | -::: warning +:::warning If `visibility` is set to `specified`, either `visibleUserIds` or `visibleAccts` must be set too. ::: diff --git a/content/ko-KR/docs/features/silence.md b/content/ko-KR/.docs-legacy/features/silence.md similarity index 98% rename from content/ko-KR/docs/features/silence.md rename to content/ko-KR/.docs-legacy/features/silence.md index 9c05df69..6d6cffaf 100644 --- a/content/ko-KR/docs/features/silence.md +++ b/content/ko-KR/.docs-legacy/features/silence.md @@ -1,5 +1,5 @@ # 사일런스 -::: tip +:::tip 이 기능은 Misskey v12까지만 지원됩니다. Misskey v13에서는 해당 기능이 "역할"로 통합되었습니다. 자세한 것은 [해당 문서](./roles.md)를 참고해주세요. ::: @@ -11,6 +11,6 @@ 계정의 사일런스 상태는 인스턴스 모더레이터가 지정합니다. -::: tip +:::tip Misskey v13 및 이후에서는 '역할'을 통해 설정할 수 있습니다. 별도로 지정하지 않는 한 모더레이터는 설정이 불가합니다. ::: diff --git a/content/ko-KR/docs/features/theme.md b/content/ko-KR/.docs-legacy/features/theme.md similarity index 100% rename from content/ko-KR/docs/features/theme.md rename to content/ko-KR/.docs-legacy/features/theme.md diff --git a/content/ko-KR/docs/features/thread-mute.md b/content/ko-KR/.docs-legacy/features/thread-mute.md similarity index 96% rename from content/ko-KR/docs/features/thread-mute.md rename to content/ko-KR/.docs-legacy/features/thread-mute.md index 2e0d12b6..4edd4299 100644 --- a/content/ko-KR/docs/features/thread-mute.md +++ b/content/ko-KR/.docs-legacy/features/thread-mute.md @@ -1,5 +1,5 @@ # 글타래 음소거 -::: tip +:::tip 이 기능은 버전 12.95.0부터 이용할 수 있습니다. ::: @@ -9,6 +9,6 @@ Misskey Web에서 글타래를 뮤트하려면, 해당 글타래에 포함된 아무 노트의 메뉴를 열어 '이 글타래를 뮤트'를 선택하세요. -::: warning +:::warning 어느 노트에서 실행하던, 글타래의 모든 노트가 음소거됩니다. ::: diff --git a/content/ko-KR/docs/features/timeline.md b/content/ko-KR/.docs-legacy/features/timeline.md similarity index 100% rename from content/ko-KR/docs/features/timeline.md rename to content/ko-KR/.docs-legacy/features/timeline.md diff --git a/content/ko-KR/docs/features/webhook.md b/content/ko-KR/.docs-legacy/features/webhook.md similarity index 99% rename from content/ko-KR/docs/features/webhook.md rename to content/ko-KR/.docs-legacy/features/webhook.md index f52de7ff..199e7d01 100644 --- a/content/ko-KR/docs/features/webhook.md +++ b/content/ko-KR/.docs-legacy/features/webhook.md @@ -1,13 +1,13 @@ # Webhook -::: info +:::info 본 문서는 번역되지 않아 영문으로 제공됩니다. ::: -::: tip +:::tip This feature is available as of Misskey version 12.109.0. ::: -::: warning +:::warning This is an experimental feature and may be unstable or subject to change in the future. ::: diff --git a/content/ko-KR/docs/features/widgets.md b/content/ko-KR/.docs-legacy/features/widgets.md similarity index 100% rename from content/ko-KR/docs/features/widgets.md rename to content/ko-KR/.docs-legacy/features/widgets.md diff --git a/content/ko-KR/docs/features/word-mute.md b/content/ko-KR/.docs-legacy/features/word-mute.md similarity index 100% rename from content/ko-KR/docs/features/word-mute.md rename to content/ko-KR/.docs-legacy/features/word-mute.md diff --git a/content/ko-KR/docs/getting-started.md b/content/ko-KR/.docs-legacy/getting-started.md similarity index 98% rename from content/ko-KR/docs/getting-started.md rename to content/ko-KR/.docs-legacy/getting-started.md index 975ab20c..0cab2cec 100644 --- a/content/ko-KR/docs/getting-started.md +++ b/content/ko-KR/.docs-legacy/getting-started.md @@ -5,10 +5,10 @@ Misskey는 프로그램, 그리고 이를 관리하는 프로젝트의 이름입 [인스턴스 목록](../instances.md)에서 자신에게 맞는 인스턴스를 둘러볼 수 있습니다. -::: tip +:::tip 어떤 인스턴스를 선택하더라도, 다른 인스턴스의 유저와 상호작용할 수 있습니다. -::: details +:::details Misskey는 '연합' 기능을 갖추고 있습니다. 연합 기능을 통해, 다른 인스턴스에 있는 유저라도 같은 인스턴스의 유저와 동일하게 팔로우 및 리액션, Renote 등을 할 수 있습니다. diff --git a/content/ko-KR/docs/glossary.md b/content/ko-KR/.docs-legacy/glossary.md similarity index 100% rename from content/ko-KR/docs/glossary.md rename to content/ko-KR/.docs-legacy/glossary.md diff --git a/content/ko-KR/docs/install.md b/content/ko-KR/.docs-legacy/install.md similarity index 98% rename from content/ko-KR/docs/install.md rename to content/ko-KR/.docs-legacy/install.md index 4803c735..1912fa0c 100644 --- a/content/ko-KR/docs/install.md +++ b/content/ko-KR/.docs-legacy/install.md @@ -5,11 +5,11 @@ description: 'Misskey 인스턴스의 생성 방법에 대해 안내합니다.' # Misskey 인스턴스 생성 Misskey 인스턴스 구축에 관심을 가져 주셔서 감사합니다. 인스턴스의 생성 방법은 여러 가지가 있으며, 아래 중에서 원하는 방법을 선택하여 구축할 수 있습니다. -::: danger +:::danger 이용을 시작한 이후에는 도메인 이름(호스트명)을 변경하지 마세요! ::: -::: danger +:::danger 자신의 서버에 Cloudflare 를 사용하는 경우, Auto Minify 설정을 사용하지 마십시오. Cloudflare 가 최신 자바스크립트를 해석하지 않고 내부 소스코드를 파괴하기 때문에 Misskey가 정상적으로 작동하지 않습니다. diff --git a/content/ko-KR/docs/install/bash-v140.md b/content/ko-KR/.docs-legacy/install/bash-v140.md similarity index 100% rename from content/ko-KR/docs/install/bash-v140.md rename to content/ko-KR/.docs-legacy/install/bash-v140.md diff --git a/content/ko-KR/docs/install/bash-v165.md b/content/ko-KR/.docs-legacy/install/bash-v165.md similarity index 100% rename from content/ko-KR/docs/install/bash-v165.md rename to content/ko-KR/.docs-legacy/install/bash-v165.md diff --git a/content/ko-KR/docs/install/bash.md b/content/ko-KR/.docs-legacy/install/bash.md similarity index 100% rename from content/ko-KR/docs/install/bash.md rename to content/ko-KR/.docs-legacy/install/bash.md diff --git a/content/ko-KR/docs/install/docker.md b/content/ko-KR/.docs-legacy/install/docker.md similarity index 98% rename from content/ko-KR/docs/install/docker.md rename to content/ko-KR/.docs-legacy/install/docker.md index 363b3e40..8232005c 100644 --- a/content/ko-KR/docs/install/docker.md +++ b/content/ko-KR/.docs-legacy/install/docker.md @@ -3,11 +3,11 @@ Create Misskey instance with Docker Compose This guide describes how to install and setup Misskey with Docker Compose. -::: danger +:::danger Never change the domain name (hostname) of an instance once you start using it! ::: -::: tip Requirement +:::tip Requirement - docker and dockercompose installed ::: @@ -56,7 +56,7 @@ GLHF✨ How to update your Misskey server ---------------------------------------------------------------- -::: warning +:::warning When updating, be sure to check the [release notes](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) to know in advance the changes and whether or not additional work is required (in most cases, it is not). ::: diff --git a/content/ko-KR/docs/install/kubernetes.md b/content/ko-KR/.docs-legacy/install/kubernetes.md similarity index 99% rename from content/ko-KR/docs/install/kubernetes.md rename to content/ko-KR/.docs-legacy/install/kubernetes.md index b1d9a69d..4e64003f 100644 --- a/content/ko-KR/docs/install/kubernetes.md +++ b/content/ko-KR/.docs-legacy/install/kubernetes.md @@ -6,7 +6,7 @@ This guide describes how to install and setup Misskey using Kubernetes and Helm The Helm chart for Misskey is hosted on TrueCharts which is a repository designed to be used with TrueNAS Scale, but its charts can also be installed as normal Helm charts. The [TrueCharts](https://truecharts.org/docs/charts/incubator/misskey) site has a list of all the charts available as well as documentation on how to install. The TrueCharts [Discord](https://discord.gg/Ax9ZgzKx9t) server is also a resource that can be used if you have questions. Misskey is currently on the _incubator_ train. -::: Requirements +:::Requirements TrueNAS Scale or Kubernetes cluster & Helm ::: diff --git a/content/ko-KR/docs/install/manual.md b/content/ko-KR/.docs-legacy/install/manual.md similarity index 98% rename from content/ko-KR/docs/install/manual.md rename to content/ko-KR/.docs-legacy/install/manual.md index 4384c350..7aca4be4 100644 --- a/content/ko-KR/docs/install/manual.md +++ b/content/ko-KR/.docs-legacy/install/manual.md @@ -2,11 +2,11 @@ 이 가이드에서는 Misskey의 설치 및 준비 방법에 대해 설명합니다. -::: danger +:::danger 한 번 사용을 시작한 인스턴스의 도메인 호스트 이름은 절대 변경하지 마세요! ::: -::: tip 준비사항 +:::tip 준비사항 다음을 미리 설치해주세요: - [Node.js](https://nodejs.org) 20.4 이상 - [PostgreSQL](https://www.postgresql.org) 15 이상 @@ -85,7 +85,7 @@ Restart=always WantedBy=multi-user.target ``` -::: warning +:::warning CentOS에서 1024 이하의 포트를 이용해 Misskey를 실행하는 경우 `ExecStart=/usr/bin/sudo/usr/bin/npm start`로 변경해야 합니다. ::: @@ -100,12 +100,12 @@ sudo systemctl enable misskey sudo systemctl start misskey ``` -::: tip +:::tip 이제 `systemctl status misskey` 명령어로 Misskey의 서비스 상태를 확인할 수 있습니다. ::: ## Misskey 업데이트 방법 -::: warning +:::warning 업데이트 시 반드시 [변경사항](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md)를 확인하고 변경사항이나 필요한 추가 작업을 미리 확인해 주십시오. ::: @@ -126,7 +126,7 @@ pnpm run migrate sudo systemctl restart misskey ``` -::: tip +:::tip 빌드 혹은 실행 중 오류가 발생한 경우 아래 명령을 실행해보세요. - `pnpm run clean` 또는 `pnpm run clean-all` - 이 명령을 실행한 후에는 반드시 `pnpm install`을 다시 실행해주세요. diff --git a/content/ko-KR/docs/install/ubuntu-manual.md b/content/ko-KR/.docs-legacy/install/ubuntu-manual.md similarity index 99% rename from content/ko-KR/docs/install/ubuntu-manual.md rename to content/ko-KR/.docs-legacy/install/ubuntu-manual.md index bba614a0..894ba2b4 100644 --- a/content/ko-KR/docs/install/ubuntu-manual.md +++ b/content/ko-KR/.docs-legacy/install/ubuntu-manual.md @@ -1,5 +1,5 @@ # Ubuntu 版 Misskey インストール方法詳説 -::: tip +:::tip 이 문서는 아직 영문/국문으로 번역되지 않았습니다. 따라서 이 페이지는 일본어로 표시됩니다. ::: @@ -13,11 +13,11 @@ コピペばかりならシェルスクリプトでいいじゃん、と言うことで**シェルスクリプトでほぼ全部やってくれるやつを作ってみました!**\ [**シェルスクリプトの詳細と使用方法はこちらから!**](./bash.html) -::: tip +:::tip シェルスクリプトでの開発環境へのインストールは想定されていません。 ::: -::: tip +:::tip ドメインの購入とCloudflareのセットアップ、サーバーの確保についてはご自身でご準備ください。 ::: @@ -29,7 +29,7 @@ [docker-compose](./docker.html)なら、手作業でももうちょっと簡単に実行できるはずです。 -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: @@ -54,7 +54,7 @@ OSの違い、Misskey本体や依存するソフトウェアのバージョン * ドメインは[Google Domains](https://domains.google/intl/ja_jp/)などで予め用意しておくこと。 * ここではドメインをexample.tldとして解説を進めるので、自分が買ったドメインに適宜置き換えて読むこと。開発環境の場合はlocalhostと読み替えます(設定ファイルの項で別途説明) -::: danger +:::danger 一度使用を始めたサーバーのドメイン・ホスト名は、決して変更しないでください! ::: @@ -80,7 +80,7 @@ Misskeyはrootで実行しない方がよいため、専用のユーザーを作 sudo adduser --disabled-password --disabled-login misskey ``` -::: tip +:::tip 開発環境の場合はユーザーを分ける必要はありません ::: @@ -179,7 +179,7 @@ activeならOK。 nginxは、主としてリバースプロキシに用いられるWebサーバーソフトである。Misskeyには必須ではないが、キャッシュ等をするとパフォーマンスが向上したり、httpからhttpsへの転送などをするために、インストールしておこう。 -::: tip +:::tip 開発環境の場合はnginxのセットアップは不要です ::: @@ -240,7 +240,7 @@ sudo apt install -y git build-essential サーバーをインターネットに公開する準備をする。 -::: tip +:::tip 開発環境の場合はファイヤーウォールやCloudFlare、Certbotの設定は不要です ::: @@ -274,7 +274,7 @@ systemctlで永続化する。 sudo systemctl enable ufw ``` -::: tip +:::tip ufwは、netfilter(iptables)を人間が操作しやすいようにするアプリだ。インストールスクリプトは、OCI環境ではnetfilterを直接操作する。 ::: @@ -378,7 +378,7 @@ nano .config/default.yml 設定できる値と記述方法は[.config/example.yml](https://github.com/syuilo/misskey/blob/develop/.config/example.yml)に書かれている。 -::: tip +:::tip 開発環境の場合、urlは`url: http://localhost:3000`と指定します。 ::: @@ -471,7 +471,7 @@ cd misskey NODE_ENV=production pnpm run build ``` -::: tip +:::tip 開発環境の場合、`NODE_ENV=production`は不要です。以降のコマンドでも同様に削除してください。 ::: @@ -517,7 +517,7 @@ CloudFlareのDNS設定が正しいIPアドレスになっているかもう一 ## Misskeyのデーモンを作成 -::: tip +:::tip 開発環境の場合、デーモンの作成は不要です。 ::: diff --git a/content/ko-KR/docs/misskey-hub.md b/content/ko-KR/.docs-legacy/misskey-hub.md similarity index 98% rename from content/ko-KR/docs/misskey-hub.md rename to content/ko-KR/.docs-legacy/misskey-hub.md index dd8d95fc..6652c693 100644 --- a/content/ko-KR/docs/misskey-hub.md +++ b/content/ko-KR/.docs-legacy/misskey-hub.md @@ -4,7 +4,7 @@ Misskey Hub는 Misskey 관련 문서, 개발 블로그, 플러그인 스토어 Misskey Hub도 [오픈 소스로 공개되어 있습니다.](https://github.com/misskey-dev/misskey-hub). -::: tip +:::tip Misskey Hub는 [VuePress](https://github.com/vuepress/vuepress-next)를 통하여 정적 사이트로 제공됩니다. ::: diff --git a/content/ko-KR/docs/misskey.md b/content/ko-KR/.docs-legacy/misskey.md similarity index 99% rename from content/ko-KR/docs/misskey.md rename to content/ko-KR/.docs-legacy/misskey.md index da188088..891cf250 100644 --- a/content/ko-KR/docs/misskey.md +++ b/content/ko-KR/.docs-legacy/misskey.md @@ -13,7 +13,7 @@ Misskey는 오픈소스 분산형 마이크로블로깅 플랫폼 프로젝트 개발 초기에는 게시판 형식을 메인으로 하는 서비스였으나, 유저가 짧은 글을 게시하고, 그 글들을 시간 순서대로 흘러가는 '타임라인' 기능을 추가한 뒤로 인기가 높아져, 나중에는 이 기능에 비중을 두고 개발이 이루어 지게 됩니다. 당초에는 분산형이 아니었으나, 2018년에 ActivityPub을 통해 분산형 소셜 네트워킹을 지원함으로써 더욱 많은 분들에게 알려지고, 지금에까지 이릅니다. -::: tip +:::tip Misskey라는 이름은, syuilo가 프로젝트 이름을 구상할 때 우연히 듣고 있던 May'n의 노래 'Brain Diver'의 가사에서 따 온 것입니다. ::: @@ -33,7 +33,7 @@ Misskey의 모든 소스 코드는 [AGPL](https://github.com/misskey-dev/misskey 앞서 언급한 분산형 체계를 실현하는 것 또한, 오픈 소스와 뗄레야 뗄 수 없는 관계를 유지하고 있습니다. 재차 언급되고 있지만, Twitter나 Facebook과 같은 영리 서비스들 대부분은 오픈 소스가 아닙니다. -::: tip +:::tip 기술적인 부분으로, Misskey의 소스 코드는 Git으로 관리되고 있으며, 저장소는 [GitHub에 의해 호스팅되고 있습니다.](https://github.com/misskey-dev) ::: diff --git a/content/ko-KR/docs/releases.md b/content/ko-KR/.docs-legacy/releases.md similarity index 99% rename from content/ko-KR/docs/releases.md rename to content/ko-KR/.docs-legacy/releases.md index 0dbafa64..07e679be 100644 --- a/content/ko-KR/docs/releases.md +++ b/content/ko-KR/.docs-legacy/releases.md @@ -2,7 +2,7 @@ 미스키 릴리스에 대한 릴리스 노트입니다. -::: tip +:::tip 최신 정보는 업데이트되지 않았을 수 있습니다. 최신 정보는 [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md)(일본어, 영어) 또는 [일본어 Misskey Hub](../docs/releases.md)에서 확인해주세요. ::: @@ -871,6 +871,6 @@ Released at: 12/03/2021 - client: fixed an issue where "All" in user search did not work - client: fixed the style of the Reaction List and Renote List tooltips -::: warning +:::warning Older releases are not translated yet. If you can, please edit this page to add them from the Japanese changelog on [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: diff --git a/content/ko-KR/docs/tips/disable-timelines.md b/content/ko-KR/.docs-legacy/tips/disable-timelines.md similarity index 98% rename from content/ko-KR/docs/tips/disable-timelines.md rename to content/ko-KR/.docs-legacy/tips/disable-timelines.md index 17ca8521..aff53279 100644 --- a/content/ko-KR/docs/tips/disable-timelines.md +++ b/content/ko-KR/.docs-legacy/tips/disable-timelines.md @@ -1,7 +1,7 @@ # 타임라인 비활성화 Misskey에서는 LTL, STL, GTL을 개별적으로 다룰 수 있습니다. 이에 따라, 인스턴스 관리 창에서 개별 타임라인을 활성화 또는 비활성화할 수 있습니다. -::: tip +:::tip 본 기능은 Misskey v12까지에만 존재합니다. Misskey v13에서는 역할로 통합되었습니다. 자세한 사항은 [해당 문서](../features/roles.md)를 참고해주세요. ::: @@ -12,7 +12,7 @@ Misskey에서는 LTL, STL, GTL을 개별적으로 다룰 수 있습니다. 이 이런 장단점의 경중은 인스턴스마다 다르기에, 이 기능의 활성화 여부는 각 인스턴스에 맡겨집니다. 단점이 더 많다고 생각된다면, 이 타임라인들을 비활성화할 수 있습니다. -::: warning +:::warning 타임라인을 비활성화하면 혼란이 발생할 수 있으며 사용자 수가 일시적으로 감소할 수도 있습니다. 타임라인 비활성화의 영향을 신중하게 고려하고, 사용자들이 서로 자주 대화하는 상대를 미리 팔로우해 준비할 수 있도록 미리 비활성화 사유를 설명해 주세요. ::: diff --git a/content/ko-KR/docs/troubleshooting.md b/content/ko-KR/.docs-legacy/troubleshooting.md similarity index 99% rename from content/ko-KR/docs/troubleshooting.md rename to content/ko-KR/.docs-legacy/troubleshooting.md index 71b4b5b7..7760e41e 100644 --- a/content/ko-KR/docs/troubleshooting.md +++ b/content/ko-KR/.docs-legacy/troubleshooting.md @@ -3,7 +3,7 @@ description: '문제가 발생한 경우, 우선 이 문서를 참고해 주세 --- # 문제 해결 -::: tip +:::tip [자주 묻는 질문](./faq.md)의 내용도 같이 참고하시면 좋습니다. ::: @@ -51,7 +51,7 @@ description: '문제가 발생한 경우, 우선 이 문서를 참고해 주세 업데이트로 인해 UI의 변경 사항이 발생하였을 때, 테마 캐시 시스템의 영향으로 홈페이지가 정상적으로 표시되지 않을 수 있습니다. 설정 메뉴에서 '캐시 비우기'를 클릭하여 해결할 수 있습니다. -::: warning +:::warning "웹 클라이언트" 설정의 캐시 비우기입니다. "브라우저"의 캐시를 초기화하지 마십시오. ::: diff --git a/content/ko-KR/README.md b/content/ko-KR/README.md deleted file mode 100644 index ee3a1ddf..00000000 --- a/content/ko-KR/README.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: Landing - -description: "Misskey는 오픈소스 분산형 소셜 네트워킹 플랫폼입니다." -gettingStarted: "시작하기" -learnMore: "자세히" -keyFeatures: - open: - title: "열린 소프트웨어" - description: "Misskey는 오픈 소스 소프트웨어로, 누구나 자유롭게 Misskey를 이용할 수 있습니다." - federated: - title: "연합" - description: "Misskey는 분산형 프로토콜을 채택하고 있어, 다른 서버의 커뮤니티와도 서로 소통할 수 있습니다." - multifunction: - title: "다재다능" - description: "Misskey는 다른 서비스와 차별화된 기능을 제공하여, 전문가 수준의 마이크로블로깅을 즐길 수 있습니다." - customizable: - title: "사용자화" - description: "Misskey는 유연한 Web 인터페이스를 가지고 있어, 여러분이 입맛대로 UI를 커스터마이징할 수 있습니다." -sections: - federatedSoftware: - title: "Misskey는 분산형 플랫폼입니다" - description: "Misskey는 모두에게 공개된 자유 소프트웨어로써 누구든 자유롭게 Misskey를 사용하여 서버(인스턴스)를 개설할 수 있으며, 다양한 인스턴스가 이미 인터넷에 공개되어 있습니다. 또한 ActivityPub으로 불리는 분산형 통신 프로토콜을 채택하여, 다른 인스턴스의 유저와도 소통할 수 있다는 것도 Misskey의 특징 중 하나입니다. 이렇게 다양한 인스턴스의 서로 다른 사람들이 모여 소통하는 개념은, 단일 주체가 운영하는 서버에서만 서로 소통이 가능한 Twitter와 같은 서비스에서는 상상하기도 어려울 것입니다.
인스턴스에 따라 주요 화제나 사용자 계층, 사용 언어 등이 다양하므로, 자신에게 맞는 인스턴스를 찾아보는 것도 Misskey를 즐기는 방법 중 하나랍니다. (직접 인스턴스를 세워보는 것도 나쁘지 않아요!)" - features: - title: "주요 기능" - description: "Misskey는 SNS로써 기본적인 기능은 물론, 여러 독특한 기능을 제공하고 있습니다. 그 중에서도 대표적인 기능을 소개해 드립니다." - list: - note: - title: "노트" - description: "Misskey에서는, 사용자가 작성한 게시물을\"노트\"라고 부릅니다. 다른 노트를 인용하거나, 사진, 동영상, 오디오 외에도 다양한 파일을 첨부할 수 있습니다." - reaction: - title: "리액션" - description: "노트에 이모지로 \"리액션\"을 달아서, 여러분의 감정을 손쉽게 표현해 보세요." - theme: - title: "테마" - description: "여러분이 좋아하는 색깔, 좋아하는 디자인으로 Misskey를 꾸며 보세요. 다크 모드는 물론, UI를 세부적으로 커스터마이징하여 새로운 테마를 만들고 공유할 수 있습니다." - charts: - title: "차트" - description: "Misskey의 자체적인 차트 엔진을 이용하여, 인스턴스의 이용 통계와 같은 정보를 한 눈에 파악할 수 있습니다." - federation: - title: "연합" - description: "공개된 분산 프로토콜인 ActivityPub을 채택하여, 다른 Misskey 인스턴스 뿐만 아니라 ActivityPub을 지원하는 다른 인스턴스와도 소통할 수 있습니다." - drive: - title: "드라이브" - description: "업로드한 사진이나 동영상 등의 파일을 관리할 수 있습니다. 마음에 드는 사진을 폴더에 모아 두고, 원할 때 쉽게 공유할 수 있습니다." - thread: - title: "글타래" - description: "물론, 노트는 타래로 이어서 쓸 수 있어, 이야기를 무한정 풀어 나갈 수 있습니다." - widgets: - title: "위젯" - description: "다양한 위젯을 배치하여 UI를 입맛대로 커스터마이징할 수 있습니다." - gettingStarted: - title: "지금 Misskey를 시작해 보세요!" - find: - title: "인스턴스를 둘러보기" - list: "인스턴스 목록" - create: - title: "인스턴스를 만들기" - guide: "설치 가이드" - docs: - title: "더 자세한 내용" - docs: "도움말 보기" - donation: - title: "기부를 부탁드립니다" - description: "Misskey는 비영리로 개발되고 있으며, 개발에 필요한 자금은 여러분의 기부에 의존하고 있습니다. Misskey가 마음에 드셨다면, 앞으로도 Misskey를 계속해서 이어나갈 수 있도록 힘을 보태 주세요." - sponsors: - title: "스폰서" ---- diff --git a/content/ko-KR/appendix/assets.md b/content/ko-KR/appendix/assets.md deleted file mode 100644 index 23b69e3e..00000000 --- a/content/ko-KR/appendix/assets.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -description: "Misskey의 로고, 아이콘 등 브랜드 에셋의 모음입니다." ---- - -# 에셋 모음집 - -Misskey의 로고, 아이콘 등 브랜드 에셋의 모음입니다. - -::: tip -Misskey의 에셋은 **CC BY-NC-SA**에 따라 자유롭게 사용하실 수 있습니다!🎉 - -CC BY-NC-SA -::: - -::: tip -모든 에셋은 [misskey-dev/assets](https://github.com/misskey-dev/assets)에서 관리되고 있습니다. -::: - -## 로고 - - - - - -## 아이콘 - - - - - - diff --git a/content/ko-KR/help.md b/content/ko-KR/help.md deleted file mode 100644 index 42ebf76b..00000000 --- a/content/ko-KR/help.md +++ /dev/null @@ -1,3 +0,0 @@ -# 도움말 - -- [기능 일람](./docs/features/index.md) diff --git a/content/ko-KR/home.md b/content/ko-KR/home.md deleted file mode 100644 index 4ab984d9..00000000 --- a/content/ko-KR/home.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -home: true -title: Misskey Hub -heroImage: /banner.svg -tagline: 오픈소스 분산형 마이크로블로깅 플랫폼, Misskey의 공식 홈페이지 -footer: Copyright (c) 2021 syuilo and other contributors -actions: - - text: Misskey 시작하기 - link: ./docs/getting-started - type: primary - - text: 더 알아보기 - link: ./docs/misskey - type: secondary -features: - - title: 분산형🪐 - details: 다양한 서버에서 독립적인 커뮤니티가 운영되고 있으며, 이들은 모두 상호 연결되어 있습니다. - - title: 가벼움🚀 - details: 빠르게 동작하는 Node.js를 이용하여, 많은 수의 서버와 연합하더라도 리소스를 많이 사용하지 않습니다. - - title: 즐거움🍮 - details: 리액션이나 고도의 커스터마이징이 가능한 UI 등, 특징적인 기능을 가지고 있습니다. ---- - - - - - -
- -# Sponsors -
- RSS3 -
-
- - diff --git a/content/ko-KR/instances.md b/content/ko-KR/instances.md deleted file mode 100644 index 2fd80339..00000000 --- a/content/ko-KR/instances.md +++ /dev/null @@ -1,17 +0,0 @@ -# 인스턴스 목록 -::: tip -여기에 인스턴스를 추가하고 싶다면, [Discord](https://discord.gg/Wp8gVStHW3)를 통해 연락해 주시거나 혹은 이 사이트의 [GitHub](https://github.com/misskey-dev/misskey-hub)에 풀 리퀘스트를 올려주세요. -::: - - - -또는, [비공식 인스턴스 목록](https://join.misskey.page/ko-KR/instances)에서 찾아볼 수도 있습니다. - - diff --git a/content/ko-KR/plugins.md b/content/ko-KR/plugins.md deleted file mode 100644 index 238cbcb7..00000000 --- a/content/ko-KR/plugins.md +++ /dev/null @@ -1,12 +0,0 @@ -# 플러그인 스토어 -Misskey 웹 UI에서 설치할 수 있는 [플러그인](./docs/features/plugin.md)을 모아두는 곳입니다. - -::: tip -직접 만든 플러그인을 스토어에 등록하시려면 [플러그인 등록하기](#플러그인-등록하기) 항목을 참조해 주세요. -::: - -## 플러그인 -- TODO - -## 플러그인 등록하기 -TODO diff --git a/content/ko-KR/updates.md b/content/ko-KR/updates.md deleted file mode 100644 index b26729ca..00000000 --- a/content/ko-KR/updates.md +++ /dev/null @@ -1,3 +0,0 @@ -# 변경 사항 - - diff --git a/content/pl-PL/docs/admin/cdn.md b/content/pl-PL/.docs-legacy/admin/cdn.md similarity index 98% rename from content/pl-PL/docs/admin/cdn.md rename to content/pl-PL/.docs-legacy/admin/cdn.md index dd05abc2..ab6164cf 100644 --- a/content/pl-PL/docs/admin/cdn.md +++ b/content/pl-PL/.docs-legacy/admin/cdn.md @@ -16,6 +16,6 @@ Musisz więc na swoim CDNie skonfigurować następujące opcje - Buforuj wszystkie żądania poza żądaniami `/api/*`. ( Cache all requests except `/api/*`.) -::: tip +:::tip Nie musisz czyścić pamięci podręcznej/bufora aktualizując Misskey. :::: diff --git a/content/pl-PL/docs/admin/default-reaction.md b/content/pl-PL/.docs-legacy/admin/default-reaction.md similarity index 100% rename from content/pl-PL/docs/admin/default-reaction.md rename to content/pl-PL/.docs-legacy/admin/default-reaction.md diff --git a/content/pl-PL/docs/admin/emoji.md b/content/pl-PL/.docs-legacy/admin/emoji.md similarity index 99% rename from content/pl-PL/docs/admin/emoji.md rename to content/pl-PL/.docs-legacy/admin/emoji.md index a563c15b..443894ee 100644 --- a/content/pl-PL/docs/admin/emoji.md +++ b/content/pl-PL/.docs-legacy/admin/emoji.md @@ -19,7 +19,7 @@ Jeżeli masz plik z obrazkiem z którego chciałbyć zrobić dodatwkową emotiko To działa tak samo jak dodawanie pliku do posta: Możesz wybrać czy chcesz wysłać nowy plik, lub wybrać plik z Dysku Misskey albo wysłać plik z innego URL -::: info +:::info Kiedy importujesz emotikony z twojego dysku, pliki zostaną na dysku. Misskey nie tworzy kopii tego pliku więc jak go usuniesz, emotikona będzie zepsuta. ::: @@ -31,7 +31,7 @@ Emoji zostanie dodane do instancji i wtedy będziesz mógł je edytować lub usu Emotikony mogą być dodane hurtowo, jako paczka ZIP w specjalnym formacie. Ta możliwość jest dostępna w menu z 3 kropkami w prawym górnym rogu menu z emoji. -::: warning +:::warning Emoji dodane hurtowo mogą nadpisać istniejące emoji lub inaczej popsuć twoją instację. Bądź pewien że importujesz emoji tylko z zaufanych źródeł, najlepiej tylko te które wyexportowałeś sam. ::: @@ -89,7 +89,7 @@ Właściwości emoji mogą być edytowane klikając na nie w liście lokalnych e Kiedy klikniesz na dodatkową emoji, dialog z edycją właściwości się otworzy. Ten dialog pozwoli ci również usunąć emoji. -::: tip +:::tip Kiedy usuniesz dodatkową emotkę, stare posty które ją zawierają nadal będą miały jej nazwe w nich. Ta emotka nie będzie się prawidłowo wyświetlać. ::: diff --git a/content/pl-PL/docs/admin/nginx.md b/content/pl-PL/.docs-legacy/admin/nginx.md similarity index 100% rename from content/pl-PL/docs/admin/nginx.md rename to content/pl-PL/.docs-legacy/admin/nginx.md diff --git a/content/pl-PL/docs/admin/push-docker-hub.md b/content/pl-PL/.docs-legacy/admin/push-docker-hub.md similarity index 97% rename from content/pl-PL/docs/admin/push-docker-hub.md rename to content/pl-PL/.docs-legacy/admin/push-docker-hub.md index a4506621..ea598c53 100644 --- a/content/pl-PL/docs/admin/push-docker-hub.md +++ b/content/pl-PL/.docs-legacy/admin/push-docker-hub.md @@ -1,6 +1,6 @@ # Jak korzystać z GitHub Actions by wysyłać do Docker Hub -::: warning +:::warning Ta strona nie jest przetłumaczona, jeśli możesz to możesz edytować stronę w oparciu o stronę Japońską. :: Ten sam komunikat po angielsku diff --git a/content/pl-PL/docs/admin/troubleshooting.md b/content/pl-PL/.docs-legacy/admin/troubleshooting.md similarity index 96% rename from content/pl-PL/docs/admin/troubleshooting.md rename to content/pl-PL/.docs-legacy/admin/troubleshooting.md index 1bd19d7a..5f5efee3 100644 --- a/content/pl-PL/docs/admin/troubleshooting.md +++ b/content/pl-PL/.docs-legacy/admin/troubleshooting.md @@ -1,6 +1,6 @@ # Rozwiązywanie problemów -::: warning +:::warning Ta strona nie jest przetłumaczona, jeśli możesz to możesz edytować stronę w oparciu o stronę Japońską. diff --git a/content/pl-PL/docs/api/app.md b/content/pl-PL/.docs-legacy/api/app.md similarity index 100% rename from content/pl-PL/docs/api/app.md rename to content/pl-PL/.docs-legacy/api/app.md diff --git a/content/pl-PL/docs/api/common.json5 b/content/pl-PL/.docs-legacy/api/common.json5 similarity index 100% rename from content/pl-PL/docs/api/common.json5 rename to content/pl-PL/.docs-legacy/api/common.json5 diff --git a/content/pl-PL/docs/api/index.md b/content/pl-PL/.docs-legacy/api/index.md similarity index 98% rename from content/pl-PL/docs/api/index.md rename to content/pl-PL/.docs-legacy/api/index.md index 8cad0cd2..af590d0d 100644 --- a/content/pl-PL/docs/api/index.md +++ b/content/pl-PL/.docs-legacy/api/index.md @@ -6,7 +6,7 @@ description: 'Misskey udostępnia API które możesz wykorzystać do tworzenia k Misskey udostępnia API które możesz wykorzystać do tworzenia klientów do Misskey, usług internetowych połączonych z Misskey, botów, itp. ("Aplikacje").Posiadamy również API strumieniowe, dzięki czemu można tworzyć aplikacje z możliwością pracy w czasie rzeczywistym. -::: tip +:::tip Używając oficjalnego SDK Misskey lub bibliotek nieoficjalnych można wygodniej korzystać z API, na przykład upraszczając niektóre z kroków opisanych w tym dokumencie. Zobacz [tutaj](TODO) więcej informacji na temat bibliotek. ::: @@ -19,7 +19,7 @@ Ten dokument poprowadzi Cię przez proces zdobywania tokenu dostępu i pokaże j Zazwyczaj API wymaga Tokenu Dostępu żeby wykonać żądanie. Token dostępu jest to zestaw danych powiązanych z użytkownikem, które identyfikuje który użytkownik korzsta z API i kontroluje jakie dostęp do operacji każdego tokenu dostępu. -::: tip +:::tip Może być wiele relacji pomiędzy użytkownikiem a tokenem dostępu powiązanym z użytkownikiem i wiele tokenów dostępu może być wygenerowane dla danego użytkownika. ::: @@ -29,7 +29,7 @@ Możesz łatwo [zdobyć token dostępu dla siebie](#Manually-issue-an-access-tok Możesz manualnie stworzyć swój token dostępu w Przeglądarkowym Interfejsie Misskey w 'Ustawienia > API'. -::: warning +:::warning NIKOMU NIE UDOŚTĘPNIAJ SWOJEGO TOKENU DOSTĘPU ::: @@ -37,7 +37,7 @@ NIKOMU NIE UDOŚTĘPNIAJ SWOJEGO TOKENU DOSTĘPU Any uzyskać token dostępu dla użytkownika aplikacji (lub po prostu "użytkownika"), możesz zarządać by został stworzony w następujący sposób. -::: tip +:::tip Metoda tutaj opisana nazywa się MiAuth i ona tworzy token dostępu bez tworzenia aplikacji. Nadal możesz [stworzyć aplikację by uzyskać token dostępu](./app.md). @@ -47,7 +47,7 @@ Nadal możesz [stworzyć aplikację by uzyskać token dostępu](./app.md). Wygeneruj UUID. Od teraz będziemy na niego mówić **ID Sesji**. -::: warning +:::warning ID Sesji powinien być generowany za każdym razem i nie powinien być ponownie używany. ::: @@ -73,7 +73,7 @@ Jest też kilka parametrów żądań w URL: | `callback` | URL do którego użytkowink zostanie przekierowany po uwierzytelnieniu z ID Sesji dodanym by przekierować z parametrem żądania `session`. | | `permission` | Zgody których aplikacjia wymaga.
Lista zezwoleń które mogą być żądane, podzelona`,`. Lista zezwoleń jest dostępna [tutaj](TODO). | -::: tip +:::tip Przykład: @@ -107,7 +107,7 @@ Właściwości zawarte w odpowiedzi: Kiedy zdobędziesz token dostępu API możesz skorzystać z API tworząc rządania do różnych miejsc. -::: tip +:::tip - Wszytkie API HTTP są żądaniami POST, i zarówno żądanie jak i odpowiedź są w formacie JSON (wyjątkiem stanowią dysk/pliki/utwórz (drive/files/create)). - Określ `Content-Type: application/json` w nagłówku żądania. @@ -128,12 +128,12 @@ Token dostępu jest zawarty w JSONie żądania z parametrem `i`. Po więcej informacji na temat API zobacz [API Reference](./endpoints.html). -::: info +:::info Misskey nie używa API typu REST. ::: Oprócz interfejsu API HTTP, Misskey udostępnia również interfejs API strumieniowania. Więcej informacji o API strumieniowym można znaleźć [tutaj](./streaming/). -::: tip +:::tip Twoja instancja Misskey również zawiera dokumentacji api w `/api-doc`. ::: diff --git a/content/pl-PL/docs/api/streaming/channel/global-timeline.md b/content/pl-PL/.docs-legacy/api/streaming/channel/global-timeline.md similarity index 100% rename from content/pl-PL/docs/api/streaming/channel/global-timeline.md rename to content/pl-PL/.docs-legacy/api/streaming/channel/global-timeline.md diff --git a/content/pl-PL/docs/api/streaming/channel/home-timeline.md b/content/pl-PL/.docs-legacy/api/streaming/channel/home-timeline.md similarity index 100% rename from content/pl-PL/docs/api/streaming/channel/home-timeline.md rename to content/pl-PL/.docs-legacy/api/streaming/channel/home-timeline.md diff --git a/content/pl-PL/docs/api/streaming/channel/hybrid-timeline.md b/content/pl-PL/.docs-legacy/api/streaming/channel/hybrid-timeline.md similarity index 100% rename from content/pl-PL/docs/api/streaming/channel/hybrid-timeline.md rename to content/pl-PL/.docs-legacy/api/streaming/channel/hybrid-timeline.md diff --git a/content/pl-PL/docs/api/streaming/channel/index.md b/content/pl-PL/.docs-legacy/api/streaming/channel/index.md similarity index 100% rename from content/pl-PL/docs/api/streaming/channel/index.md rename to content/pl-PL/.docs-legacy/api/streaming/channel/index.md diff --git a/content/pl-PL/docs/api/streaming/channel/local-timeline.md b/content/pl-PL/.docs-legacy/api/streaming/channel/local-timeline.md similarity index 100% rename from content/pl-PL/docs/api/streaming/channel/local-timeline.md rename to content/pl-PL/.docs-legacy/api/streaming/channel/local-timeline.md diff --git a/content/pl-PL/docs/api/streaming/channel/main.md b/content/pl-PL/.docs-legacy/api/streaming/channel/main.md similarity index 100% rename from content/pl-PL/docs/api/streaming/channel/main.md rename to content/pl-PL/.docs-legacy/api/streaming/channel/main.md diff --git a/content/pl-PL/docs/api/streaming/index.md b/content/pl-PL/.docs-legacy/api/streaming/index.md similarity index 99% rename from content/pl-PL/docs/api/streaming/index.md rename to content/pl-PL/.docs-legacy/api/streaming/index.md index ee4ab540..841f5ab8 100644 --- a/content/pl-PL/docs/api/streaming/index.md +++ b/content/pl-PL/.docs-legacy/api/streaming/index.md @@ -4,7 +4,7 @@ description: 'Strumieniowe API podaje informacje w czasie rzeczywistym (np: nowe # Api strumieniowe -::: tip +:::tip Na początek powinieneś przeczytać [dokumentację API Misskey](../index.md). ::: @@ -25,7 +25,7 @@ gdzie: - `{host}` instancja z którą chcesz się połączyć. - `{token}` token dostępowy użytkownika. -::: tip +:::tip Możesz też się połączyć bez tokenu dostępu ale nie będziesz miał dostępu do wszystkich danych. ::: @@ -40,7 +40,7 @@ Aby odtrzymywać takie zdarzenia musisz połączyć się z **kanałem** jak opis API Strumieniowe Miskey używa kanałów. Jest to mechanizm do oddzielania informacji do wysłania i odbioru. Dołączając na kanał na strumieniu, będziesz mógł otrzymywać różne rodzaje informacji i wysyłać informacje. -::: tip +:::tip Możesz dołączyć do wielu kanałów na jednym strumieniu ::: @@ -69,7 +69,7 @@ gdzie - `id` jest to arbitralne ID do wykonywania interakcji z kanałem. Jest ono wymagane do identyfikowania, z którego kanału jest wiadomość, ponieważ strumień zawiera wiele kanałów. To ID może być czymś w stylu UUID albo losową liczbą. - `params` to parametry wymagane kiedy dołącza się na kanał. Różne kanały wymagają innych parametrów przy połączeniu. Kiedy kanał nie wymaga parametrów, można tą wartość zignorować. -::: tip +:::tip ID nie jest co kanał, a co połączenie z kanałem, ponieważ kanał może być potrzebny kilka razy ale z innym parametrem. ::: diff --git a/content/pl-PL/docs/api/streaming/note-capture-events.md b/content/pl-PL/.docs-legacy/api/streaming/note-capture-events.md similarity index 100% rename from content/pl-PL/docs/api/streaming/note-capture-events.md rename to content/pl-PL/.docs-legacy/api/streaming/note-capture-events.md diff --git a/content/pl-PL/docs/donate.md b/content/pl-PL/.docs-legacy/donate.md similarity index 100% rename from content/pl-PL/docs/donate.md rename to content/pl-PL/.docs-legacy/donate.md diff --git a/content/pl-PL/docs/faq.md b/content/pl-PL/.docs-legacy/faq.md similarity index 100% rename from content/pl-PL/docs/faq.md rename to content/pl-PL/.docs-legacy/faq.md diff --git a/content/pl-PL/docs/features/ads.md b/content/pl-PL/.docs-legacy/features/ads.md similarity index 98% rename from content/pl-PL/docs/features/ads.md rename to content/pl-PL/.docs-legacy/features/ads.md index d57b8da2..6b726be7 100644 --- a/content/pl-PL/docs/features/ads.md +++ b/content/pl-PL/.docs-legacy/features/ads.md @@ -3,7 +3,7 @@ Misskey może wyświetlać reklamy na ośi czasu instancji i w innych miejscach jeżeli administrator je włączy. Możesz ograniczyć wyświetlanie reklam klikając w jej prawy górny róg. -::: tip +:::tip Jeżeli liczba reklam na instacji jest mała to reklama nadal może się często wyświelać mimo prób ograniczania wyświetlania. ::: diff --git a/content/pl-PL/docs/features/antenna.md b/content/pl-PL/.docs-legacy/features/antenna.md similarity index 100% rename from content/pl-PL/docs/features/antenna.md rename to content/pl-PL/.docs-legacy/features/antenna.md diff --git a/content/pl-PL/docs/features/charts.md b/content/pl-PL/.docs-legacy/features/charts.md similarity index 100% rename from content/pl-PL/docs/features/charts.md rename to content/pl-PL/.docs-legacy/features/charts.md diff --git a/content/pl-PL/docs/features/clip.md b/content/pl-PL/.docs-legacy/features/clip.md similarity index 100% rename from content/pl-PL/docs/features/clip.md rename to content/pl-PL/.docs-legacy/features/clip.md diff --git a/content/pl-PL/docs/features/custom-emoji.md b/content/pl-PL/.docs-legacy/features/custom-emoji.md similarity index 100% rename from content/pl-PL/docs/features/custom-emoji.md rename to content/pl-PL/.docs-legacy/features/custom-emoji.md diff --git a/content/pl-PL/docs/features/deck.md b/content/pl-PL/.docs-legacy/features/deck.md similarity index 100% rename from content/pl-PL/docs/features/deck.md rename to content/pl-PL/.docs-legacy/features/deck.md diff --git a/content/pl-PL/docs/features/drive.md b/content/pl-PL/.docs-legacy/features/drive.md similarity index 98% rename from content/pl-PL/docs/features/drive.md rename to content/pl-PL/.docs-legacy/features/drive.md index ce815f6c..3955ba33 100644 --- a/content/pl-PL/docs/features/drive.md +++ b/content/pl-PL/.docs-legacy/features/drive.md @@ -2,7 +2,7 @@ Dysk jest to funkcja która pozwala zarządzać plikami na Misskey. -::: tip +:::tip Teoretycznie dysk może być widziany jako miejesce gdzie pliki są zarządzane na Misskey, które jest również dostępne dla użytkowników. ::: @@ -12,7 +12,7 @@ Pliki z dysku mogą być pobrane lub ponownie użyte poprzez dodanie pliku z dys Pliki na dysku możesz też organizować za pomocą folderów. -::: tip +:::tip Kiedy usuwasz materiały z dysku Misskey, **wszystko (wpisy, strony, itp.)** załączone też zostanie usunięte. ::: diff --git a/content/pl-PL/docs/features/favorite.md b/content/pl-PL/.docs-legacy/features/favorite.md similarity index 100% rename from content/pl-PL/docs/features/favorite.md rename to content/pl-PL/.docs-legacy/features/favorite.md diff --git a/content/pl-PL/docs/features/follow.md b/content/pl-PL/.docs-legacy/features/follow.md similarity index 100% rename from content/pl-PL/docs/features/follow.md rename to content/pl-PL/.docs-legacy/features/follow.md diff --git a/content/pl-PL/docs/features/index.md b/content/pl-PL/.docs-legacy/features/index.md similarity index 100% rename from content/pl-PL/docs/features/index.md rename to content/pl-PL/.docs-legacy/features/index.md diff --git a/content/pl-PL/docs/features/mfm.md b/content/pl-PL/.docs-legacy/features/mfm.md similarity index 97% rename from content/pl-PL/docs/features/mfm.md rename to content/pl-PL/.docs-legacy/features/mfm.md index 094706a6..388d578c 100644 --- a/content/pl-PL/docs/features/mfm.md +++ b/content/pl-PL/.docs-legacy/features/mfm.md @@ -6,7 +6,7 @@ description: 'MFM jest to dedykowany język znaczników do używania z Misskey.' MFM(Misskey Flavoured Markdown) jest to dedykowany język znaczników do używania z Misskey. -::: tip +:::tip Część składni jest kompatybilna z Markdown ::: @@ -21,7 +21,7 @@ Część składni jest kompatybilna z Markdown ### Wspominanie użytkowników -::: tip +:::tip Po więcej informacji zobacz [tutaj](./mention.md). ::: @@ -35,7 +35,7 @@ Po więcej informacji zobacz [tutaj](./mention.md). ### Hasztagi -::: tip +:::tip Po więcej informacji zobacz [tutaj](./hashtag). ::: @@ -45,7 +45,7 @@ Po więcej informacji zobacz [tutaj](./hashtag). ### Personalizowane Emoji -::: tip +:::tip Po więcej informacji zobacz [tutaj](./custom-emoji). ::: @@ -67,7 +67,7 @@ Po więcej informacji zobacz [tutaj](./custom-emoji). --- -::: tip +:::tip Więcej składni można zobaczyć w ***Ściądze MFM** dostępnej w przeglądarkowym Menu Misskey pod `/mfm-cheat-sheet` twojej instancji. ::: diff --git a/content/pl-PL/docs/features/mute-and-block.md b/content/pl-PL/.docs-legacy/features/mute-and-block.md similarity index 97% rename from content/pl-PL/docs/features/mute-and-block.md rename to content/pl-PL/.docs-legacy/features/mute-and-block.md index b50a5f3f..7c8b9ae3 100644 --- a/content/pl-PL/docs/features/mute-and-block.md +++ b/content/pl-PL/.docs-legacy/features/mute-and-block.md @@ -4,11 +4,11 @@ Jeśli nie lubisz użytkownika, możesz go wyciszyć by zniknął z twojej ośi Poza tym, możesz też ich zablokować żeby uniemożliwić im widok na twoje materiały lub interakcję z tobą w każdy sposób. Użytkownicy nie będą wiedzieć że ich wyciszyłeś, ale będą wiedzieć że ich zablokowałeś. -::: tip +:::tip Wyciszanie i blokowanie może być używane jednocześnie. ::: -::: warning +:::warning Proszę zgłaszać ludzi łamiących zasady instancji do jej administracji. ::: @@ -25,7 +25,7 @@ Jeżeli wyciszysz użytkownika to podanych materiałów na twojej ośi czasu nie Aby wyciszyć użytkownika poprostu kliknij Wycisz w opcjach użytkownika -::: tip +:::tip Osoby wyciszone nie zostaną powiadomione że zostały wyciszone. ::: @@ -47,11 +47,11 @@ Poza tym, Aby zablokowac użytkownika - skorzystaj z opcji blokady w opcjach użytkownika -::: tip +:::tip Jeżeli ktoś Cię zablokuje to nie zostaniesz o tym powiadomiony, jednak nie będziesz mógł dokonywać interakcji z osobą która cię zablokowała. ::: -::: tip +:::tip Osoba zablokowania nie będzie mogła zobaczyć twoich materiałów, ale może użyć konta alternatywnego itp. Możesz zmienić w ustawieniach konta widoczność postów, żeby utrudnić osobom zablokowanym widok na twoje posty. ::: diff --git a/content/pl-PL/docs/features/note.md b/content/pl-PL/.docs-legacy/features/note.md similarity index 98% rename from content/pl-PL/docs/features/note.md rename to content/pl-PL/.docs-legacy/features/note.md index dcb8f554..8b5b2837 100644 --- a/content/pl-PL/docs/features/note.md +++ b/content/pl-PL/.docs-legacy/features/note.md @@ -11,11 +11,11 @@ Możesz dodać wpis do [Ulubionych](./favorite) dzięki czemu łatwiej możesz j Aby utworzyć post kliknij ikonkę z ołówkiem aby otworzyć formularz postowania. Podaj jego treść. Wyślij post. Posty mogą zawierać tekst, pliki, [Ankiety](./poll). Na dodatek używając [MFM](./mfm) w tekście możesz korzystać z [wzmianek](./mention) i [Hasztagów](./hashtag). Poza tym są też inne tagi jak na przykład CW (Content Warning) lub widoczność posta. -::: tip +:::tip Materiały które skopiowałeś do schowka możesz wkleić ::: -::: tip +:::tip Możesz też kliknąć Control + Enter aby opublikować notkę ::: @@ -23,7 +23,7 @@ Możesz też kliknąć Control + Enter aby opublikować n Cytowanie lub udostępnianie treści notki -::: tip +:::tip Jeśli ustawiłeś widoczność posta na "tylko obserwujący" lub "bezpośrednio" to nie będzie można renotować posta ::: @@ -41,7 +41,7 @@ Możesz zmienić widoczność każdej notki klikająć w ikonkę obok przycisku Twój post będzie publiczny i będzie widoczny na każdej ośi czasów (Domowa, Lokalna, Społeczność, global). -::: warning +:::warning Ta widoczność nie jest dostępna dla użykowników wyciszonych. ::: @@ -73,7 +73,7 @@ Po wybraniu tej opcji, post nie będzie rozprowadzany na inne instancje Przypinając notkę do profilu będzie pierwszą widoczną notką na stronie profilu -::: tip +:::tip Można przypiąć kilka postów ::: diff --git a/content/pl-PL/docs/features/online-status.md b/content/pl-PL/.docs-legacy/features/online-status.md similarity index 98% rename from content/pl-PL/docs/features/online-status.md rename to content/pl-PL/.docs-legacy/features/online-status.md index 18187de0..0781a436 100644 --- a/content/pl-PL/docs/features/online-status.md +++ b/content/pl-PL/.docs-legacy/features/online-status.md @@ -34,6 +34,6 @@ Status online jest wyświetlany jako indykator w rogu ikony użytkownika na jego Twój status online zostanie zmieniony automatycznie i niemoże być ustawiony manualnie. Możesz natomiast ustawić swój status jako prywatny. -::: warning +:::warning Niektóre funkcje, jak sugestie użytkowników, mogą być oparte na twoim aktywnym statusie, więc ustawienie go jako prywatny może utrudnić innym użytkownikom znalezienie cię. ::: diff --git a/content/pl-PL/docs/features/pages.md b/content/pl-PL/.docs-legacy/features/pages.md similarity index 100% rename from content/pl-PL/docs/features/pages.md rename to content/pl-PL/.docs-legacy/features/pages.md diff --git a/content/pl-PL/docs/features/plugin.md b/content/pl-PL/.docs-legacy/features/plugin.md similarity index 100% rename from content/pl-PL/docs/features/plugin.md rename to content/pl-PL/.docs-legacy/features/plugin.md diff --git a/content/pl-PL/docs/features/reaction.md b/content/pl-PL/.docs-legacy/features/reaction.md similarity index 98% rename from content/pl-PL/docs/features/reaction.md rename to content/pl-PL/.docs-legacy/features/reaction.md index 0dd0ac62..e80c1a48 100644 --- a/content/pl-PL/docs/features/reaction.md +++ b/content/pl-PL/.docs-legacy/features/reaction.md @@ -17,7 +17,7 @@ Zazwyczaj "Like" z ActivityPub jest implementowany jako polubienie ale to już z Z racji na to że Misskey nie posiada lajków, "Polubienie" z zdalnej instancji będzie wyświetlone jako reakcja '👍' (albo w nowszych wersjach ❤ - to już zależy od administratora instacji). -::: Wskazówka +:::Wskazówka Administracja instancji może zmienić domyślną reakcję na "Like" w ustawieniach. Więcej o tym [tutaj](../admin/default-reaction.md). ::: diff --git a/content/pl-PL/docs/features/share-form.md b/content/pl-PL/.docs-legacy/features/share-form.md similarity index 99% rename from content/pl-PL/docs/features/share-form.md rename to content/pl-PL/.docs-legacy/features/share-form.md index e84be266..cd0961d4 100644 --- a/content/pl-PL/docs/features/share-form.md +++ b/content/pl-PL/.docs-legacy/features/share-form.md @@ -6,7 +6,7 @@ Możesz też wyspecyfikować opcje w adresie, w tym udostępniana zawartość, j ## Parametry -::: tip +:::tip Wszystkie parametry są **opcjonalne**. ::: @@ -45,7 +45,7 @@ Podane opcje pozwalają ustalić widoczność. | `visibleUserIds` | docelowe ID użytkowników | | `visibleAccts` | docelowy użytkownik [acct](../glossary.md#acct)s (podzielone przecinkiem) | -::: uwaga +:::uwaga jeżeli `visibility`(widoczność) jest `specified`(ustalona) to `visibleUserIds` i `visibleAccts` muszą też być ustawione. ::: diff --git a/content/pl-PL/docs/features/silence.md b/content/pl-PL/.docs-legacy/features/silence.md similarity index 100% rename from content/pl-PL/docs/features/silence.md rename to content/pl-PL/.docs-legacy/features/silence.md diff --git a/content/pl-PL/docs/features/theme.md b/content/pl-PL/.docs-legacy/features/theme.md similarity index 100% rename from content/pl-PL/docs/features/theme.md rename to content/pl-PL/.docs-legacy/features/theme.md diff --git a/content/pl-PL/docs/features/thread-mute.md b/content/pl-PL/.docs-legacy/features/thread-mute.md similarity index 95% rename from content/pl-PL/docs/features/thread-mute.md rename to content/pl-PL/.docs-legacy/features/thread-mute.md index d049fec3..2d971936 100644 --- a/content/pl-PL/docs/features/thread-mute.md +++ b/content/pl-PL/.docs-legacy/features/thread-mute.md @@ -1,6 +1,6 @@ # Wycisz wątek -::: tip +:::tip Ta funkcja jest dostępna od wersji 12.95.0. ::: @@ -10,6 +10,6 @@ Jeżeli wyciszysz wątek, nie odtrzymasz jakich kolwiek powiadomień związanych Aby wyciszyć wątek kliknij na ikonę wyciszenia w opcjach jakiegokolwiek wpisu w wątku. -::: warning +:::warning Cały wątek zostanie wyciszony, nieważne na jakim wpisie wybierzesz opcję wyciszenia. ::: diff --git a/content/pl-PL/docs/features/timeline.md b/content/pl-PL/.docs-legacy/features/timeline.md similarity index 100% rename from content/pl-PL/docs/features/timeline.md rename to content/pl-PL/.docs-legacy/features/timeline.md diff --git a/content/pl-PL/docs/features/webhook.md b/content/pl-PL/.docs-legacy/features/webhook.md similarity index 99% rename from content/pl-PL/docs/features/webhook.md rename to content/pl-PL/.docs-legacy/features/webhook.md index 0abf57aa..603f2a5d 100644 --- a/content/pl-PL/docs/features/webhook.md +++ b/content/pl-PL/.docs-legacy/features/webhook.md @@ -1,10 +1,10 @@ # Webhooki -::: tip +:::tip Ta funkcja jest dostępna w Misskey od wersji 12.109.0. ::: -::: danger +:::danger To jest funkcja eksperymentalna, nie jest ona stabilna, oraz w przyszłości może ulec zmianie. ::: diff --git a/content/pl-PL/docs/features/widgets.md b/content/pl-PL/.docs-legacy/features/widgets.md similarity index 100% rename from content/pl-PL/docs/features/widgets.md rename to content/pl-PL/.docs-legacy/features/widgets.md diff --git a/content/pl-PL/docs/features/word-mute.md b/content/pl-PL/.docs-legacy/features/word-mute.md similarity index 100% rename from content/pl-PL/docs/features/word-mute.md rename to content/pl-PL/.docs-legacy/features/word-mute.md diff --git a/content/pl-PL/docs/getting-started.md b/content/pl-PL/.docs-legacy/getting-started.md similarity index 98% rename from content/pl-PL/docs/getting-started.md rename to content/pl-PL/.docs-legacy/getting-started.md index 897901a1..5cb809e0 100644 --- a/content/pl-PL/docs/getting-started.md +++ b/content/pl-PL/.docs-legacy/getting-started.md @@ -4,10 +4,10 @@ Serwer na którym uruchomione jest Misskey, który jest otwarty do publicznego I Aby używać Misskey musisz utworzyć konto na jednej z instancji i korzystać z tej instancji. Możesz wybrać instancję twojego wyboru z [listy instancji](../instances.md). -::: tip +:::tip Nie ważne jaką instancję wybierzesz, będziesz mógł komunikować się z użytkownikami z innych instancji -::: info +:::info Misskey ma możliwość federowania Misskey ma wbudowane wsparcie dla federacji, co pozwala użytkownikom z innych instancji na obserwowanie, reagowanie i renotowanie w taki sam sposób jak użytkownicy z tej samej instancji. diff --git a/content/pl-PL/docs/glossary.md b/content/pl-PL/.docs-legacy/glossary.md similarity index 100% rename from content/pl-PL/docs/glossary.md rename to content/pl-PL/.docs-legacy/glossary.md diff --git a/content/pl-PL/docs/install.md b/content/pl-PL/.docs-legacy/install.md similarity index 98% rename from content/pl-PL/docs/install.md rename to content/pl-PL/.docs-legacy/install.md index 00fdb739..5af3b98b 100644 --- a/content/pl-PL/docs/install.md +++ b/content/pl-PL/.docs-legacy/install.md @@ -2,11 +2,11 @@ Dziękujemy za twoje zainteresowanie w stworzeniu własnej instancji Misskey 🚀 Jest kilka sposobów by stworzyć instancję, więc wybierz któryś z nich i przeczytaj poradnik. -::: danger +:::danger Nigdy nie zmieniaj nazwy domeny (hostname) instancji odkąd zaczniej z niej korzystać! ::: -::: danger +:::danger Jeśli korzystasz z Cloudflare na swoim serwerzę, nie korzystaj z ustawienia Automatycznej Minimalizacji (Auto Minify). Misskey nie będzie działać prawidłowo ponieważ Cloudflare nie zinterpretuje najnowszego kodu JavaScripta i złamie kod źródłowy wewnątrz. diff --git a/content/pl-PL/docs/install/bash.md b/content/pl-PL/.docs-legacy/install/bash.md similarity index 99% rename from content/pl-PL/docs/install/bash.md rename to content/pl-PL/.docs-legacy/install/bash.md index 9c9b63c3..53eb4a3a 100644 --- a/content/pl-PL/docs/install/bash.md +++ b/content/pl-PL/.docs-legacy/install/bash.md @@ -16,7 +16,7 @@ Poza jest też skrypt do aktualizacji Misskey. 2. Serwer (najlepiej się sprawdzi Ubuntu) 3. Konto CloudFlare (zalecane) -::: danger +:::danger Nigdy nie zmieniaj nazwy domeny (hostname) instancji kiedy zaczniesz z niej korzystać!! ::: diff --git a/content/pl-PL/docs/install/docker.md b/content/pl-PL/.docs-legacy/install/docker.md similarity index 98% rename from content/pl-PL/docs/install/docker.md rename to content/pl-PL/.docs-legacy/install/docker.md index 73933102..b83ca6e9 100644 --- a/content/pl-PL/docs/install/docker.md +++ b/content/pl-PL/.docs-legacy/install/docker.md @@ -3,12 +3,12 @@ Skonfiguruj instancje Misskey za pomocą Docker Compose Ten poradnik opisze instalację i konfigurację Misskey za pomocą Docker Compose. -::: danger +:::danger Nigdy nie zmieniaj nazwy domeny(hostname) instancji kiedy zaczniesz z niej korzystać!! ::: -::: Wymagania +:::Wymagania - docker i dockercompose zainstalowane ::: @@ -61,7 +61,7 @@ GLHF✨ Aktualizacja serwera Misskey ---------------------------------------------------------------- -::: Uwaga +:::Uwaga Aktualizując proszę sprawdź [informacje o wydaniach](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md) by wiedzieć wcześniej o zmianachoraz czy nie będzie trzeba wykonać jakiś dodatkowych zmian.(zazwyczaj nie trzeba). ::: diff --git a/content/pl-PL/docs/install/kubernetes.md b/content/pl-PL/.docs-legacy/install/kubernetes.md similarity index 98% rename from content/pl-PL/docs/install/kubernetes.md rename to content/pl-PL/.docs-legacy/install/kubernetes.md index 93c25a50..588fa06e 100644 --- a/content/pl-PL/docs/install/kubernetes.md +++ b/content/pl-PL/.docs-legacy/install/kubernetes.md @@ -2,7 +2,7 @@ Ten poradnik opisze instalację i konfigurację Misskey przy użyciu Kubernetesa i Helm charts. -::: danger +:::danger Nigdy nie zmieniaj nazwy domeny(hostname) instancji kiedy zaczniesz z niej korzystać!! ::: @@ -10,7 +10,7 @@ Nigdy nie zmieniaj nazwy domeny(hostname) instancji kiedy zaczniesz z niej korzy Helmy dla Misskey są hostowane na TrueCharts które jest repozytorium zaprojektowanym z myślą o TrueNAS Scale ale mogą one też być zainstalowane jako normalne Helmy. [TrueCharts](https://truecharts.org/charts/incubator/misskey/) ma listę wszystkich dostępnych Helmów oraz dokumentację na temat instalacji. [TrueCharts Discord](https://discord.gg/Ax9ZgzKx9t) jest również źródłem na którym możesz uzyskać pomoc. Misskey jest obecnie na *incubator*. -::: tip Wymagania +:::tip Wymagania - TrueNAS Scale lub diff --git a/content/pl-PL/docs/install/manual.md b/content/pl-PL/.docs-legacy/install/manual.md similarity index 99% rename from content/pl-PL/docs/install/manual.md rename to content/pl-PL/.docs-legacy/install/manual.md index c455975b..5b1b10ee 100644 --- a/content/pl-PL/docs/install/manual.md +++ b/content/pl-PL/.docs-legacy/install/manual.md @@ -6,7 +6,7 @@ Ten poradnik opisuje jak zainstalować i skonfigurować MIsskey. ---------------------------------------------------------------- -::: danger +:::danger Nigdy nie zmieniaj nazwy domeny(hostname) kiedy będziesz korzystać z instacji! ::: @@ -124,7 +124,7 @@ Wystarczy `NODE_ENV=production pnpm run start` i GLHF! 2. Edytuj plik i wklej następujący kod: - ::: details + :::details ``` [Unit] @@ -166,7 +166,7 @@ Możesz sprawdzić działanie usługi wpisując 1. Skopiuj poniższy tekst do `/etc/init.d/misskey`: - ::: details + :::details ```sh #!/sbin/openrc-run diff --git a/content/pl-PL/docs/misskey-hub.md b/content/pl-PL/.docs-legacy/misskey-hub.md similarity index 98% rename from content/pl-PL/docs/misskey-hub.md rename to content/pl-PL/.docs-legacy/misskey-hub.md index 802e1e4b..64e36d51 100644 --- a/content/pl-PL/docs/misskey-hub.md +++ b/content/pl-PL/.docs-legacy/misskey-hub.md @@ -4,7 +4,7 @@ Staramy się zrobić z niego miejsce gdzie jest "wszytko do Misskey". Misskey Hub jest [open source](https://github.com/misskey-dev/misskey-hub). -::: tip +:::tip Misskey Hub jest stroną statyczną stworzoną za pomocą [VuePress](https://github.com/vuepress/vuepress-next). ::: diff --git a/content/pl-PL/docs/misskey.md b/content/pl-PL/.docs-legacy/misskey.md similarity index 99% rename from content/pl-PL/docs/misskey.md rename to content/pl-PL/.docs-legacy/misskey.md index a37e7eb5..b5aebf74 100644 --- a/content/pl-PL/docs/misskey.md +++ b/content/pl-PL/.docs-legacy/misskey.md @@ -6,7 +6,7 @@ Misskey jest to owartoźródłowa i zdecentralizowana platforma do mikroblogowan Na początku Misskey było głównie usługą z Tablicami Bulletowymymi, jednak stawał się coraz popularniejszy po dodaniu ośi czasu pozwalającej użytkownikom postować krótkie wiadomości i odczytywać je w kolejności chronologicznej. To doprowadziło do stopniowego przesunięcia głównego nacisku na rozwój w stronę takiej funkcjonalności. Misskey nie był zawsze usługą zdecentralizowaną, ale stał się zdecentralizowany dzięki dodaniu wsparicia ActivityPub w 2018 roku. Od tego czasu stał się usługą, która jest uznawana i używana przez wielu. -::: tip +:::tip Nazwa "Misskey" pochodzi z piosenki "Brain Diver" zespołu May'n, którego syuilo wtedy słuchał . ::: @@ -20,7 +20,7 @@ Z każdym zainteresowanym z możliwością dołączenia do jego rozwoju, Misskey Misskey zawsze był i zawsze będzie open source. Open Source oznacza po prostu, udostępnianie publiczności kodu (programu). W to równierz włącza się możliwość dostosowania i redystrybułowania kodu źródłowego tak jak mówi tego definicja. [Cały kod Misskey](https://github.com/misskey-dev) jest na dostępny na otwartoźródłowej licencji [AGPL](https://github.com/misskey-dev/misskey/blob/develop/LICENSE), co oznacza że każdy może sprawdzić, używać, dostosowywać lub zmieciać jak im się to podoba. Open source ma wiele zalet, między innymi pozwala każdemu na wprowadzanie zmian według własnego uznania, upewnienie się, że kod nie zawiera żadnych szkodliwych komponentów oraz możliwość łatwego uczestnictwa w jego rozwoju. Dla realizacji rozproszonej natury Misskey, ta koncepcja otwartego źródła jest niezbędna. Używając tego samego przykładu co poprzednio, większość serwisów nastawionych na zysk, takich jak Twitter, Facebook itp. nie jest (w pełni) open source. -::: tip +:::tip Technicznie mówiąc, kod Misskey jest zarządzany przez Git, a jego repozytorium jest przechowywane na [GitHub.](https://github.com/misskey-dev) ::: diff --git a/content/pl-PL/docs/releases.md b/content/pl-PL/.docs-legacy/releases.md similarity index 99% rename from content/pl-PL/docs/releases.md rename to content/pl-PL/.docs-legacy/releases.md index f377a3be..77938f8d 100644 --- a/content/pl-PL/docs/releases.md +++ b/content/pl-PL/.docs-legacy/releases.md @@ -4,7 +4,7 @@ Z racji na to że strona bardzo szybko staje się przestażała - radzę skorzys Notes for indivudual misskey releases. -::: tip +:::tip Information updates may not be translated yet. For the latest information see [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: @@ -874,6 +874,6 @@ Released at: 12/03/2021 - client: fixed an issue where "All" in user search did not work - client: fixed the style of the Reaction List and Renote List tooltips -::: warning +:::warning Older releases are not translated yet. If you can, please edit this page to add them from the Japanese changelog on [GitHub](https://github.com/misskey-dev/misskey/blob/master/CHANGELOG.md). ::: diff --git a/content/pl-PL/docs/tips/disable-timelines.md b/content/pl-PL/.docs-legacy/tips/disable-timelines.md similarity index 99% rename from content/pl-PL/docs/tips/disable-timelines.md rename to content/pl-PL/.docs-legacy/tips/disable-timelines.md index 0ff94c61..534f63fd 100644 --- a/content/pl-PL/docs/tips/disable-timelines.md +++ b/content/pl-PL/.docs-legacy/tips/disable-timelines.md @@ -3,7 +3,7 @@ W Misskey, jest możliwość wyłączenia LTL/STL/GTL. Możesz też włączyć te ośi czasu poprzez panel sterowania instancji. Wszytkie posty z twojej instancji mogą być widoczne w LTL i STL co daje możliwość łatwiejszego znalezienia nowych użytkowników bez użycia wyszukiwania użytkowników. Jednakże, to oznacza że śledzenie innych użytkowników aby zobaczyć ich posty jest mniej ważne i nieodpowiednie posty mogą być pokazane użytkownikom częściej. Dodatkowo, ta opcja może utrudnić nowym użytkownikom dołączenie do rozmowy z użytkownikami którzy są na instancji od dłuższego czasu. Waga tych zalet i wad może się różnić od serwera do serwera, więc wybór użycia lub nie użycia tych ośi czasu został pozostawiony do każdej indywidualnej instancji. Jeśli uważasz, że wady przeważają nad zaletami, rozważ wyłączenie tych ośi czasu. -::: warning +:::warning Wyłączanie ośi czasu może spowodować zamieszanie i może prowadzić do krótkotrwałego spadku liczby użytkowników. Dlatego, rozważ uważnie efekty wyłączenia oś czasu i wyjaśnij przyczynę wyłączenia w przyszłości, aby twoi użytkownicy mogli się przygotować, np. śledząc użytkowników z którymi często rozmawiają na LTL/STL. diff --git a/content/pl-PL/docs/troubleshooting.md b/content/pl-PL/.docs-legacy/troubleshooting.md similarity index 99% rename from content/pl-PL/docs/troubleshooting.md rename to content/pl-PL/.docs-legacy/troubleshooting.md index c8bef75f..61d74566 100644 --- a/content/pl-PL/docs/troubleshooting.md +++ b/content/pl-PL/.docs-legacy/troubleshooting.md @@ -3,7 +3,7 @@ description: 'Jeśli naportkasz na problem, proszę najpierw sprawdź tą stron --- # Rozwiązywanie problemów -::: tip +:::tip Proszę równierz korzystać z strony z [często zadawanymi pytaniami(FAQ)](./faq.md) ::: Jeżeli napotkasz problem, proszę najpierw sprwadź tą stronę. W przypadku kiedy nie możesz znaleść twojego problemu tutaj, albo kroki podane tutaj nie rozwiązują problemu, proszę skontakuj się z administratorem twojego serwera lub [Zgłoś błąd](./report-issue). @@ -31,7 +31,7 @@ Proszę wypróbuj którąś z opcji: ## Części interfejsu działają dziwnie (Na przykład: tło jest przezroczyste) Zepsuty interfejs może być spowodowany przez system buforów motywów kiedy interfejs jest zmieniony jako część aktualizacji. Korzystajnie z opcji "Wyczyść bufor" w ustawieniach powinno rozwiązać problem. -::: warning +:::warning Wyczyść bufor/cache "Klienta". Nie czyść buforu/cache "Przeglądarki". ::: diff --git a/content/pl-PL/README.md b/content/pl-PL/README.md deleted file mode 100644 index 24fef998..00000000 --- a/content/pl-PL/README.md +++ /dev/null @@ -1,85 +0,0 @@ ---- -layout: Landing - -description: "Misskey jest otwartozródłową, zdecentalizowaną platformą social media która jest zawsze ZA DARMO!" -gettingStarted: "Rozpocznij" -learnMore: "Dowiedz się więcej" -keyFeatures: - open: - title: "Otwarta" - description: "Misskey jest to oprogramowanie open source do którego każdy może coś dodać oraz każdy może używać go za darmo kiedykolwiek i gdziekolwiek " - federated: - title: "Federowana" - description: "Misskey jest platformą zdecentralizowaną, więc społeczności z innych instancji mogą komunikować się z sobą." - multifunction: - title: "Potężna" - description: "Misskey jest zarówno prosta do zrozumienia dla nowych użytkowników oraz zawiera potężne funkcje dla zaawansowanych użytkowników." - customizable: - title: "Personalizowalna" - description: "Dostosuj Misskey do siebie! Z motywami, widżetami, układami i więcej, możesz dostować je jak ci się żywnie podoba." -sections: - federatedSoftware: - title: "Misskey jest zdecentralizowaną platformą." - description: "Misskey jest tylko platformą gdzie właściciele serwerów tworzą własne instancje Misskey i mogą one komunikować z sobą! Jest dużo instancji dla mas, mniejsze dla grup, fandomów, i subkultur, a nawet instancje dla osób i ich przyjaciół. Chcesz mieć większą kontrolę? Możesz w bardzo łatwy sposób zrobić swoją właną instancję na własnym serwerze, odcinając się od dużych korporacji chcących zbierać twoje dane i je sprzedawać. Misskey jest o społeczności i udostępnianiu, nie o korporacjach i gigantach technologicznych. Masz znajomych którzy nie używają Misskey? Nie ma problemu! Ponieważ Misskey jest częścią Fediwersum(ActivityPub), możesz komunikować się z ludźmi na innych platformach jak Mastodon, PixelFed, PeerTube i wiele innych!" - features: - title: "Funkcje" - description: "Misskey ma wiele wyjątkowych funkcji" - list: - note: - title: "Notki" - description: "Na Misskey, posty użytkowników są nazwane \"notkami\". Odpowiedzi, cytaty, dodaj dodatkowe emotikony, animowany tekst, ostrzeżenia, załączone obrazki, wideo, GIFy, klipy audio, lub cokolwiek innego!" - reaction: - title: "Reakcje" - description: "Możesz dodać reakcje w formie emotikonek do każdego posta! Nie jesteś już ograniczony tylko przyciskiem Polub to, pokaż każdemu co czujesz z kliknięciem przycisku." - theme: - title: "Motywy" - description: "Po co ograniczać się wyłącznie Jasnym lub Ciemnym motywem kiedy możesz zmienić wszystkie kolory? Użyj intuicyjnych narzędzi Misskey do tworzenia motywów żeby spersonalizować Misskey tak jak ci się podoba." - charts: - title: "Wykresy" - description: "Dla tych co chcą widzieć wszytko, Misskey ma bogate wykresy zarówno dla użytkowników jak i administratorów żeby widzieć co się dzieje na twojej instancji w czasie rzeczywistym." - federation: - title: "Federacja" - description: "Nie na Misskey? Nie ma problemu! Nie tylko instancje Misskey mogą z sobą się komunikować, ale możesz tworzyć znajomości z ludźmi z innych platform jak Mastodon, Pixelfed itp.!" - drive: - title: "Dysk" - description: "Nie podoba ci się to że nie możesz znaleść tego co wysłałeś? Z Dyskiem odtrzymujesz zarządzalny i potężny dysk internetowy wewnątrz twojej aplikacji Social Media!" - thread: - title: "Wątki" - description: "Masz dużo na myśli? Utwórz wątek! Każdy post może mieć domyślnie aż 3,000 znaków więc możesz utrzymać konwersacje przez bardzo długi czas." - widgets: - title: "Widżety" - description: "Miej wszystko w zasięgu ręki z wieloma personalizowalnymi widżetami!" - gettingStarted: - title: "Dołącz już dziś na Misskey!" - find: - title: "Znajdź instancję!" - list: "Lista instancji" - create: - title: "Stwórz własną instancję" - guide: "Poradnik konfiguracji" - docs: - title: "Dowiedz się więcej" - docs: "Zobacz dokumentacje" - donation: - title: "Dotacje" - description: "Ponieważ Misskey jest organizacją non-profit, jesteśmy zależni na waszych dotacjach by fundować tworzenie Misskey. Jeśli uwielbiasz Misskey, proszę rozważ dotację żebyśmy mogli dalej pracować nad tym żeby Misskey było wspaniałe przez najbliższe lata!" - sponsors: - title: "Sponsorzy" ---- - - diff --git a/content/pl-PL/appendix/assets.md b/content/pl-PL/appendix/assets.md deleted file mode 100644 index 9e499873..00000000 --- a/content/pl-PL/appendix/assets.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -description: 'Kolekcja ikon, logo i innych materiałów Misskey.' ---- - -# Kolekcja materiałów - -To jest kolekcja ikon, logo i innych materiałów Misskey. - -::: tip -Materiały są darmowe w użyciu na licencji **CC BY-NC-SA** (Uznanie autorstwa-Użycie niekomercyjne-Na tych samych warunkach)🎉 - -CC BY-NC-SA -::: - -::: tip -Materiały są zarządzane na repozytorium [misskey-dev/assets](https://github.com/misskey-dev/assets). -::: - -## Logo - - - - - -## Ikona - - - - - - diff --git a/content/pl-PL/help.md b/content/pl-PL/help.md deleted file mode 100644 index 4d2e5a53..00000000 --- a/content/pl-PL/help.md +++ /dev/null @@ -1,3 +0,0 @@ -# Pomoc - -- [Lista funkcji](./docs/features/index.md) diff --git a/content/pl-PL/home.md b/content/pl-PL/home.md deleted file mode 100644 index 2315ea31..00000000 --- a/content/pl-PL/home.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -home: true -title: Misskey Hub -heroImage: /banner.svg -tagline: Oficjalna strona internetowa otwartoźródłowej interplanetarnej platformy do mikro-blogowania Misskey -footer: Prawa Autorskie © 2023 syuilo i inni współpracownicy -actions: - - text: Rozpocznij - link: ./docs/getting-started - type: primary - - text: Czym jest Misskey? - link: ./docs/misskey - type: secondary -features: - - title: Rozproszona 🪐 - details: Niezależne społeczności działające na wielu serwerach połączonych z sobą. - - title: Lekka 🚀 - details: Ponieważ używa Node.js które działa bardzo szybko, jest bardzo lekka nawet jeżeli łączy się z dużą liczbą serwerów - - title: Fun 🍮 - details: Ma wyróżniające się cechy jak reakcje i bardzo personalizowalny interfejs ---- - - - - - -
- -# Sponsorzy -
- RSS3 -
-
- - diff --git a/content/pl-PL/instances.md b/content/pl-PL/instances.md deleted file mode 100644 index 6fbba7a8..00000000 --- a/content/pl-PL/instances.md +++ /dev/null @@ -1,18 +0,0 @@ -# Lista instacji - -::: tip -Jeżeli chiałbyś umieścić swoją instancję tutaj, proszę skontaktuj się z nami na [Discordzie](https://discord.gg/Wp8gVStHW3) albo złóż Pull request na repozytorium [GitHub](https://github.com/misskey-dev/misskey-hub). -::: - - - -Ewentualnie możesz znaleś instancję z [nieoficjalnej listy instancji](https://join.misskey.page/en-US/instances). - - diff --git a/content/pl-PL/plugins.md b/content/pl-PL/plugins.md deleted file mode 100644 index a7c751c9..00000000 --- a/content/pl-PL/plugins.md +++ /dev/null @@ -1,15 +0,0 @@ -# Sklep z wtyczkami - -Kolekcja [wtyczek](./docs/features/plugin.md) które możesz zainstalować do przeglądarkowego interfejsu Misskey. - -::: tip -Jeżeli chciałbyś zobaczyć swoją wtyczkę tutaj, proszę zobać [sekcję z dodawaniem wtyczek](#Submitting-Plugins). -::: - -## Wtyczki - -- TODO - -## Dodawanie wtyczek - -- TODO diff --git a/content/pl-PL/updates.md b/content/pl-PL/updates.md deleted file mode 100644 index 1bd7bec3..00000000 --- a/content/pl-PL/updates.md +++ /dev/null @@ -1,3 +0,0 @@ -# Ostatnie zmiany - -