1
0
mirror of https://github.com/uetchy/namae.git synced 2025-10-14 23:22:19 +09:00

feat: add zh-Hans (#119)

This commit is contained in:
2020-07-30 23:14:02 +09:00
committed by GitHub
parent 0d13c993ad
commit 815e29dddf
5 changed files with 80 additions and 20 deletions

View File

@@ -5,7 +5,7 @@ import { FaGithub, FaProductHunt, FaTwitter } from 'react-icons/fa';
import { GoHeart } from 'react-icons/go';
import styled from 'styled-components';
import { Section } from '../theme';
import { mobile, tablet } from '../util/css';
import { tablet } from '../util/css';
import Contributors from '../components/Contributors';
const Footer: React.FC = () => {
@@ -27,6 +27,11 @@ const Footer: React.FC = () => {
🇯🇵
</span>
</a>
<a href="/?lng=zh-Hans">
<span role="img" aria-label="Simplified Chinese">
🇨🇳
</span>
</a>
</Links>
</LangBox>
</Pane>
@@ -183,19 +188,6 @@ const Subtitle = styled.h4`
margin-bottom: 12px;
`;
const LangBox = styled.div`
line-height: 1em;
font-size: 2rem;
`;
const ShareBox = styled.div`
margin-top: 15px;
line-height: 1em;
font-size: 1.5rem;
display: flex;
align-items: center;
`;
const Links = styled.div`
display: flex;
align-items: center;
@@ -205,6 +197,24 @@ const Links = styled.div`
}
`;
const LangBox = styled.div`
line-height: 1em;
font-size: 2rem;
${Links} {
a {
margin-right: 5px;
}
}
`;
const ShareBox = styled.div`
margin-top: 15px;
line-height: 1em;
font-size: 1.5rem;
display: flex;
align-items: center;
`;
const Bold = styled.span`
font-weight: bold;
`;

View File

@@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
import { initReactI18next } from 'react-i18next';
const TRANSLATION_VERSION = '1.18';
const TRANSLATION_VERSION = '1.19';
i18n
.use(Backend)
@@ -16,7 +16,11 @@ i18n
backends: [LocalStorageBackend, XHR],
backendOptions: [
{
versions: { en: TRANSLATION_VERSION, ja: TRANSLATION_VERSION },
versions: {
en: TRANSLATION_VERSION,
ja: TRANSLATION_VERSION,
'zh-Hans': TRANSLATION_VERSION,
},
},
],
},