node -e "console.log(require('crypto').randomBytes(256).toString('base64'));"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zh-HK: | |
devise: | |
failure: | |
invited: "你有一個待處理的邀請, 請接受它以完成創建您的帳戶。" | |
invitations: | |
send_instructions: "邀請電子郵件已發送到%{email)。" | |
invitation_token_invalid: "提供嘅邀請令牌無效!" | |
updated: "你嘅密碼設置成功。 你而家已經登錄。" | |
updated_not_active: "你嘅密碼設置成功。" | |
no_invitations_remaining: "冇剩餘邀請" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { jsx } from '@emotion/core'; | |
import { Box } from '@chakra-ui/core'; | |
import PropTypes from 'prop-types'; | |
import React from 'react'; | |
function Template({ children, ...props }) { | |
return ( | |
<React.Fragment> |
OlderNewer