Merge pull request #313 from zsakvo/dev
This commit is contained in:
commit
7283f11842
|
|
@ -6,5 +6,5 @@
|
|||
"load more": "まだ{{count}}件の{{name}}があります。",
|
||||
"signed and stored on the blockchain": "{{name}}は、創作者によって署名され、ブロックチェーンに安全に保存されています。",
|
||||
"Write a comment on the blockchain": "ブロックチェーンでコメントする",
|
||||
"powered by": "このサイトは <name/> によって作動します"
|
||||
"powered by": "<span>このサイトは </span><name/><span> によって作動します</span>"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"load more": "還有{{count}}篇{{name}},點選載入更多文章",
|
||||
"signed and stored on the blockchain": "此{{name}}已由它的創作者簽名並安全儲存在區塊鏈上。",
|
||||
"Write a comment on the blockchain": "在區塊鏈上留言。",
|
||||
"powered by": "由 <name/> 提供支援",
|
||||
"powered by": "<span>由 </span><name/><span> 提供支援</span>",
|
||||
"This address is in local editing preview mode and cannot be viewed by the public. The expected online address is:": "此地址處於本地編輯預覽模式,尚未公開。預期的上線地址是:",
|
||||
"View on xChar": "在 xChar 上檢視",
|
||||
"View on xFeed": "在 xFeed 上檢視",
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"load more": "还有 {{count}} 篇{{name}},点击加载更多",
|
||||
"signed and stored on the blockchain": "此{{name}}已经由它的创作者签名并安全地存储在区块链上。",
|
||||
"Write a comment on the blockchain": "在区块链上写下你的评论",
|
||||
"powered by": "由 <name/> 提供支持",
|
||||
"powered by": "<span>由 </span><name/><span> 提供支持</span>",
|
||||
"This address is in local editing preview mode and cannot be viewed by the public. The expected online address is:":
|
||||
"此地址处于本地编辑预览模式,无法被公众查看。预期的在线地址是:",
|
||||
"View on xChar": "在 xChar 上查看",
|
||||
|
|
|
|||
|
|
@ -34,16 +34,17 @@ export const SiteFooter: React.FC<{
|
|||
<footer className="text-zinc-500 border-t">
|
||||
<div className="max-w-screen-md mx-auto px-5 py-10 text-xs flex justify-between">
|
||||
<div className="font-medium text-base">
|
||||
©{" "}
|
||||
<span>© </span>
|
||||
<UniLink href="/" className="hover:text-accent">
|
||||
{site?.name}
|
||||
</UniLink>{" "}
|
||||
·{" "}
|
||||
<span>{site?.name}</span>
|
||||
</UniLink>
|
||||
<span> · </span>
|
||||
<Trans
|
||||
i18nKey="powered by"
|
||||
defaults={"Powered by <name/>"}
|
||||
defaults={"<span>Powered by </span><name/>"}
|
||||
components={{
|
||||
name: <LogoWithLink />,
|
||||
span: <span />,
|
||||
}}
|
||||
ns="site"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue