[2.5.3] Added "Czech" Language

This commit is contained in:
Amruth Pillai
2021-01-08 08:46:19 +05:30
parent ba31e18ffd
commit 4a0995eeb6
7 changed files with 568 additions and 480 deletions

View File

@ -46,6 +46,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
##### Languages Currently Supported ##### Languages Currently Supported
- Arabic (عربى) - Arabic (عربى)
- Czech (čeština)
- Chinese Simplified (简体中文) - Chinese Simplified (简体中文)
- Danish (Dansk) - Danish (Dansk)
- Dutch (Nederlands) - Dutch (Nederlands)

View File

@ -6,7 +6,7 @@ module.exports = {
title: 'Reactive Resume', title: 'Reactive Resume',
siteUrl: 'https://rxresu.me', siteUrl: 'https://rxresu.me',
description: 'A free and open source resume builder.', description: 'A free and open source resume builder.',
version: '2.5.2', version: '2.5.3',
}, },
plugins: [ plugins: [
'gatsby-plugin-react-helmet', 'gatsby-plugin-react-helmet',

1000
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -20,33 +20,33 @@
"@reach/router": "^1.3.4", "@reach/router": "^1.3.4",
"animate.css": "^4.1.1", "animate.css": "^4.1.1",
"array-move": "^3.0.1", "array-move": "^3.0.1",
"autoprefixer": "^10.1.0", "autoprefixer": "^10.2.1",
"classnames": "^2.2.6", "classnames": "^2.2.6",
"dayjs": "^1.9.8", "dayjs": "^1.10.2",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"downloadjs": "^1.4.7", "downloadjs": "^1.4.7",
"firebase": "^8.2.1", "firebase": "^8.2.2",
"formik": "^2.2.6", "formik": "^2.2.6",
"gatsby": "^2.29.3", "gatsby": "^2.30.1",
"gatsby-image": "^2.8.0", "gatsby-image": "^2.9.0",
"gatsby-plugin-create-client-paths": "^2.7.0", "gatsby-plugin-create-client-paths": "^2.8.0",
"gatsby-plugin-firebase": "^0.2.0-beta.4", "gatsby-plugin-firebase": "^0.2.0-beta.4",
"gatsby-plugin-manifest": "^2.9.1", "gatsby-plugin-manifest": "^2.10.0",
"gatsby-plugin-material-ui": "^2.1.10", "gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-offline": "^3.7.1", "gatsby-plugin-offline": "^3.8.0",
"gatsby-plugin-postcss": "^3.4.0", "gatsby-plugin-postcss": "^3.5.0",
"gatsby-plugin-react-helmet": "^3.7.0", "gatsby-plugin-react-helmet": "^3.8.0",
"gatsby-plugin-sharp": "^2.11.2", "gatsby-plugin-sharp": "^2.12.0",
"gatsby-plugin-sitemap": "^2.9.0", "gatsby-plugin-sitemap": "^2.10.0",
"gatsby-plugin-webfonts": "^1.1.3", "gatsby-plugin-webfonts": "^1.1.4",
"gatsby-source-filesystem": "^2.8.1", "gatsby-source-filesystem": "^2.9.0",
"gatsby-source-gravatar": "^1.0.0", "gatsby-source-gravatar": "^1.0.0",
"gatsby-transformer-remark": "^2.13.1", "gatsby-transformer-remark": "^2.14.0",
"gatsby-transformer-sharp": "^2.9.0", "gatsby-transformer-sharp": "^2.10.0",
"i18next": "^19.8.4", "i18next": "^19.8.4",
"lodash": "^4.17.20", "lodash": "^4.17.20",
"nanoevents": "^5.1.10", "nanoevents": "^5.1.10",
"postcss": "^8.2.2", "postcss": "^8.2.3",
"react": "^17.0.1", "react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0", "react-beautiful-dnd": "^13.0.0",
"react-dom": "^17.0.1", "react-dom": "^17.0.1",
@ -66,7 +66,7 @@
"eslint-config-prettier": "^7.1.0", "eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2", "eslint-loader": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0", "eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0", "eslint-plugin-react": "^7.22.0",
"gatsby-plugin-eslint": "^2.0.8", "gatsby-plugin-eslint": "^2.0.8",
"prettier": "2.2.1", "prettier": "2.2.1",

View File

@ -7,6 +7,10 @@ const languages = [
code: 'ar', code: 'ar',
name: 'Arabic (عربى)', name: 'Arabic (عربى)',
}, },
{
code: 'cs',
name: 'Czech (čeština)',
},
{ {
code: 'zh', code: 'zh',
name: 'Chinese Simplified (简体中文)', name: 'Chinese Simplified (简体中文)',

View File

@ -1,4 +1,5 @@
import ar from './ar.json'; import ar from './ar.json';
import cs from './cs.json';
import da from './da.json'; import da from './da.json';
import de from './de.json'; import de from './de.json';
import en from './en.json'; import en from './en.json';
@ -23,6 +24,7 @@ import zh from './zh.json';
export default { export default {
ar: { translation: ar }, ar: { translation: ar },
cs: { translation: cs },
da: { translation: da }, da: { translation: da },
de: { translation: de }, de: { translation: de },
en: { translation: en }, en: { translation: en },

View File

@ -1,6 +1,6 @@
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import 'dayjs/locale/ar'; import 'dayjs/locale/ar';
import 'dayjs/locale/zh'; import 'dayjs/locale/cs';
import 'dayjs/locale/da'; import 'dayjs/locale/da';
import 'dayjs/locale/de'; import 'dayjs/locale/de';
import 'dayjs/locale/en'; import 'dayjs/locale/en';
@ -17,6 +17,7 @@ import 'dayjs/locale/pl';
import 'dayjs/locale/pt'; import 'dayjs/locale/pt';
import 'dayjs/locale/tr'; import 'dayjs/locale/tr';
import 'dayjs/locale/uk'; import 'dayjs/locale/uk';
import 'dayjs/locale/zh';
import relativeTime from 'dayjs/plugin/relativeTime'; import relativeTime from 'dayjs/plugin/relativeTime';
dayjs.extend(relativeTime); dayjs.extend(relativeTime);