翻訳の状況は、翻訳の概要と進捗状況の issues を確認してください。
まずは、このリポジトリを右上から Fork してください。
そして、リポジトリをクローンします。your
には、あなたの GitHub のユーザーネームを入れてください。
$ git clone https://github.com/your/portal
$ cd docs
翻訳作業を行うためのブランチを作成します。 どのファイルを翻訳するかは、翻訳の概要と進捗状況の翻訳ページ一覧を確認して、翻訳したい箇所をコメントしてください。
ここでは、例として introduction/pages/welcome.md
を翻訳するためのブランチを作成します。
$ git checkout -b introduction/pages/welcome.md
これで、翻訳を始める準備は完了です。エディタを使って、翻訳箇所のファイルを編集します。
スタイルガイドに目を通してください。 わからないことがあれば Discord の#ドキュメント翻訳チャネルで質問してください。
エディタとしては VSCode を推奨します。
翻訳した文章を確認します。
git submodule update --init
npm install
npm start
のコマンドを叩くと、http://localhost:3000 でドキュメントを確認することができます。
翻訳が終わったら、ローカルリポジトリにコミットしたあと、自分のリモートリポジトリにプッシュします。 コミットが複数になった場合、なるべく1つのコミットにまとめていただければありがたいですが、難しければそのままでも OK です。
$ git add modules/introduction/pages/welcome.md
$ git commit -m "translated: introduction/pages/welcome.md"
$ git push origin introduction/pages/welcome.md
最後に、Github からプルリクを出します。 このとき、出し先が Japan-DfinityInfoHub/portal になるようにします。
間違えて本家の dfinity/docs に出してしまわないように気をつけてください。
以上です!メンテナーがレビューをして問題なければマージされます。
以前のドキュメントは adoc ファイルで作成されており、すでに翻訳した内容を新しいドキュメントに移行するために markdown 形式への変換が必要な場合は以下の手順に従います。
以前のドキュメント(adoc ファイル)は
https://github.com/Japan-DfinityInfoHub/docs
で管理されています。
git clone
するか、すでにしてある場合は git pull
コマンド等を用いて、ローカルリポジトリを最新にします。
git pull
convert.sh
という変換スクリプトがリポジトリのルートディレクトリに含まれていますので、以下のようにファイルを変換します。
ここでは例として、modules/quickstart/pages/1-quickstart.adoc
を md ファイルに変換します。
bash convert.sh modules/quickstart/pages/1-quickstart.adoc
変換前のファイルと同じディレクトリに modules/quickstart/pages/1-quickstart.md
が作成されます。
ここまでが docs リポジトリ側での準備です。
次に、portal リポジトリ側で、対応する md ファイルを開きます。
変換スクリプトではコメントアウトされた文章は削除されてしまうので、スタイルガイド に従って原文を <!--
と -->
で囲んでコメントアウトしてください(原文に更新があった場合に変更箇所を参照できるように、原文のコメントアウトがされていることは重要です)。
原文をコメントアウトしたら、先ほど変換した md ファイルの中身をコピーして貼り付けてください。
原文を確認し、翻訳後の日本語が原文と対応していることをご確認ください。
変換スクリプトは、テーブルの変換先が html になってしまいますので、原文に合わせて md のテーブル書式に直してください。
Special thanks to these wonderful people (emoji key):
hoosan |
tokuryoo |
gelgoog999 |
pontagon333 |
numtet |
hokosugi |
The Developer Portal brings together all the resources needed for experienced as well as beginning developers on the Internet Computer.
The Developer Portal uses Docusaurus.
While modifying documentation in the repository, you can preview the changes locally by executing the following commands.
cd portal/
git submodule update --init
npm install
npm start
The Developer Portal frontend should appear in your browser under http://localhost:3000.
To preview a specific locale in the context of an internationalization contribution, start the docs with the following command:
npm start -- --locale <locale>
Docusaurus is quite easy to use and facilitates the creation of documents. The developer portal uses Markdown as its default format with enhancements provided by Docusuaurus.
To create a document, head to the /docs
folder and create a Markdown file in the directory of your choice.
Here is an example of a docs sub-directory:
developer-docs/
developer-docs/
ic-overview.md
quickstart/
...
references/
...
The roadmap items are stored as markdown files inside the roadmap directory.
The items are grouped by domain and status.
roadmap
├── 1_core-protocol
│ ├── deployed
│ │ ├── network_performance.md
│ │ └── nodes_can_be_reassigned.md
│ ├── in-progress
│ │ ├── 1_btc-integration.md
│ │ ├── 2_tecdsa.md
│ │ ├── 3_http-outcalls.md
│ │ ├── 4_high-replication-subnets.md
│ │ └── 5_deterministic-time-slicing.md
│ ├── index.md
│ └── pending
│ └── eth-integration.md
├── 2_boundary_nodes
│ ├── deployed
│ │ └── icos-nodes.md
│ ├── in-progress
│ │ ├── 1_seo_and_streaming.md
│ │ ├── 2_asset_canister_caching.md
...
in-progress
to deployed
, move the file to the deployed
directoryis_community: true
in the item's metadataEach domain folder contains an index.md
file which adds metadata, like a title, a description, and cover images.
The how it works page cards and subpages are stored as markdown files inside the how-it-works directory.
how-it-works
├── 1_about
│ ├── 01-overview-of-the-internet-computer.card.md
│ ├── 01-overview-of-the-internet-computer.subpage.md
│ ├── canister-lifecycle.card.md
│ ├── canister-lifecycle.subpage.md
│ └── index.md
├── 2_featured
│ ├── direct-integration-with-bitcoin.card.md
│ ├── direct-integration-with-bitcoin.subpage.md
│ ├── index.md
│ ├── sns.card.md
│ ├── threshold-ecdsa-signing.card.md
│ ├── threshold-ecdsa-signing.subpage.md
The directory contains markdown files ending in .card.md
and .subpage.md
.
The .card.md
files will show up as part of the /how-it-works page, under the section they are grouped in (eg. Featured).
The .subpage.md
files will each generate a subpage under /how-it-works/, based on the files' metadata and content:
slug
parameter will determine the final URL, eg. the slug canister-lifecycle
will generate the page /how-it-works/canister-lifecycle
.title
, abstract
(optional), and coverImage
will determine how the page looks when shared on social mediaHow to embed youtube videos:
You can embed youtube videos by adding the video's cover image, then turning the image into a link to the video itself, eg.
[![Watch youtube video](https://i.ytimg.com/vi/YWHTNr8RZHg/maxresdefault.jpg)](https://www.youtube.com/watch?v=YWHTNr8RZHg)
The page will automatically put the Youtube icon on the cover image, imitating an embedded video.
You can get the cover image of a video by substituting the video ID into the following URL:
https://i.ytimg.com/vi/INSERT_VIDEO_ID_HERE/0.jpg
If the resulting image is low quality, you can try https://i.ytimg.com/vi/INSERT_VIDEO_ID_HERE/maxresdefault.jpg
, but it does not always exist.
.github/CODEOWNERS
file is filled with new documents that you added. This way we can ensure that future Pull Requests are reviewed by the right people./sidebars.js
, otherwise, it will not appear in the side navigation bar.More information about document creation on Docusaurus's docs.
Whenever a Pull Request is created on the repository, a CI job will appear and deploy a Preview on Netlify so that reviewers can easily check the changes made the way the end users will.
To access the preview, head to the very bottom of your pull request where you will see the list of deployments. Once the job is finished, you should see as active the "Preview Netlify" deployment.
Then simply press the "View deployment" button to in your fresh Netlify preview.
Here is a description of how a contribution should be made to the developer portal.
master
. the preview is generated and the reviewers can directly check the preview website.The agents and CDKs sections should not only contain docs for DFINITY-created agents and CDKs. We therefore invite other projects to:
docs/developer-docs/build/agents/index.md
or docs/developer-docs/build/cdks/index.md
)Agents
or CDKs
We invite developers to add their IC-focused developer tools to the Developer Tools page by appending an entry to the communityToolingItems
array in src/components/Common/toolingItems.ts
.
Please make sure to add appropriate tags to make the tool easy to discover for other devs. Avoid introducing new tags if possible.
You can submit your sample project to be displayed on the Samples page.
Add your submission to the community projects file and open a pull request. You can use an editor with TypeScript support to make sure your submission follows the schema.