Merge branch 'dev' into dev
This commit is contained in:
commit
7495770911
|
|
@ -37,7 +37,7 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
module.exports = {
|
||||
i18n: {
|
||||
defaultLocale: "en",
|
||||
locales: ["en", "zh"],
|
||||
locales: ["en", "zh", "ja"],
|
||||
reloadOnPrerender: process.env.NODE_ENV === "development",
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,23 +22,23 @@
|
|||
"Owner": "所有者",
|
||||
"Transaction Hash": "取引ハッシュ",
|
||||
"IPFS Address": "IPF アドレス",
|
||||
"Creation": "公開",
|
||||
"Creation": "作成",
|
||||
"Last Update": "最後更新",
|
||||
"Create Character": "新規キャラクター",
|
||||
"Submit": "送信",
|
||||
"Reply": "返信",
|
||||
"Cancel Reply": "キャンセル",
|
||||
"ago": "{{time}}前",
|
||||
"joined ago": "{{time}}に参加",
|
||||
"Mint to an NFT": "NFTとして鋳造",
|
||||
"joined ago": "{{time}}に参加した",
|
||||
"Mint to an NFT": "NFTとしてミント",
|
||||
"Like successfull": "いいね済",
|
||||
"Mint successfull": "鋳造済",
|
||||
"like stored": "あなたのいいねは安全にブロックチェーンに保存されました。 <2>Crossbell Scan</2> で確認できます。",
|
||||
"mint stored": "この記事をNFTとして鋳造しました。 <2>xChar</2> または <6>Crossbell Scan</6> で確認できます。",
|
||||
"Mint successfull": "ミント済",
|
||||
"like stored": "いいねは安全にブロックチェーンに保存されました。 <2>Crossbell Scan</2> で確認できます。",
|
||||
"mint stored": "この記事をNFTとしてミントしました。 <2>xChar</2> または <6>Crossbell Scan</6> で確認できます。",
|
||||
"Got it, thanks!": "了解しました、ありがとうございます!",
|
||||
"Like List": "いいねリスト",
|
||||
"Mint List": "鋳造リスト",
|
||||
"No Content Yet.": "まだコンテンツがありません。",
|
||||
"Mint List": "ミントリスト",
|
||||
"No Content Yet.": "まだ何もありません。",
|
||||
"Close": "閉じる",
|
||||
"Dashboard": "ダッシュボード",
|
||||
"Copied!": "コピーしました!",
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"About": "紹介",
|
||||
"Tags": "タグ",
|
||||
"load more": "まだ{{count}}件の{{name}}があります。",
|
||||
"signed and stored on the blockchain": "この{{name}}は、作者によって署名され、ブロックチェーンに安全に保存されています。",
|
||||
"signed and stored on the blockchain": "{{name}}は、創作者によって署名され、ブロックチェーンに安全に保存されています。",
|
||||
"Write a comment on the blockchain": "ブロックチェーンでコメントする",
|
||||
"powered by": "<name/>がサポートしています"
|
||||
"powered by": "このサイトは <name/> によって提供されます"
|
||||
}
|
||||
|
|
@ -6,8 +6,9 @@ import localizedFormat from "dayjs/plugin/localizedFormat"
|
|||
import duration from "dayjs/plugin/duration"
|
||||
import relativeTime from "dayjs/plugin/relativeTime"
|
||||
import { useTranslation } from "next-i18next"
|
||||
import "dayjs/locale/zh"
|
||||
import "dayjs/locale/en"
|
||||
import "dayjs/locale/zh"
|
||||
import "dayjs/locale/ja"
|
||||
|
||||
dayjs.extend(localizedFormat)
|
||||
dayjs.extend(utc)
|
||||
|
|
|
|||
Loading…
Reference in New Issue