add Bulgarian language, update dependencies

This commit is contained in:
Amruth Pillai
2022-08-11 20:21:19 +02:00
parent 32bb7354a4
commit ef240b2110
9 changed files with 473 additions and 454 deletions

View File

@ -56,6 +56,7 @@ You have complete control over what goes into your resume, how it looks, what co
- Arabic (اَلْعَرَبِيَّةُ) - Arabic (اَلْعَرَبِيَّةُ)
- Bengali (বাংলা) - Bengali (বাংলা)
- Bulgarian (български)
- Chinese (中文) - Chinese (中文)
- Czech (čeština) - Czech (čeština)
- Danish (Dansk) - Danish (Dansk)

View File

@ -6,6 +6,7 @@ export type Language = {
export const languages: Language[] = [ export const languages: Language[] = [
{ code: 'ar', name: 'Arabic', localName: 'اَلْعَرَبِيَّةُ' }, { code: 'ar', name: 'Arabic', localName: 'اَلْعَرَبِيَّةُ' },
{ code: 'bg', name: 'Bulgarian', localName: 'български' },
{ code: 'bn', name: 'Bengali', localName: 'বাংলা' }, { code: 'bn', name: 'Bengali', localName: 'বাংলা' },
{ code: 'cs', name: 'Czech', localName: 'čeština' }, { code: 'cs', name: 'Czech', localName: 'čeština' },
{ code: 'da', name: 'Danish', localName: 'Dansk' }, { code: 'da', name: 'Danish', localName: 'Dansk' },

View File

@ -5,6 +5,7 @@ const i18nConfig = {
defaultLocale: 'en', defaultLocale: 'en',
locales: [ locales: [
'ar', 'ar',
'bg',
'bn', 'bn',
'cs', 'cs',
'da', 'da',

View File

@ -9,19 +9,19 @@
}, },
"dependencies": { "dependencies": {
"@beam-australia/react-env": "^3.1.1", "@beam-australia/react-env": "^3.1.1",
"@date-io/dayjs": "^2.14.0", "@date-io/dayjs": "^2.15.0",
"@emotion/css": "^11.10.0", "@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.0", "@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0", "@emotion/styled": "^11.10.0",
"@hookform/resolvers": "2.9.7", "@hookform/resolvers": "2.9.7",
"@monaco-editor/react": "^4.4.5", "@monaco-editor/react": "^4.4.5",
"@mui/icons-material": "^5.8.4", "@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.93", "@mui/lab": "^5.0.0-alpha.94",
"@mui/material": "^5.9.3", "@mui/material": "^5.10.0",
"@mui/system": "^5.9.3", "@mui/system": "^5.10.0",
"@mui/x-date-pickers": "5.0.0-beta.3", "@mui/x-date-pickers": "5.0.0-beta.5",
"@next/env": "^12.2.3", "@next/env": "^12.2.4",
"@reduxjs/toolkit": "^1.8.3", "@reduxjs/toolkit": "^1.8.4",
"axios": "^0.27.2", "axios": "^0.27.2",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"dayjs": "^1.11.4", "dayjs": "^1.11.4",
@ -29,13 +29,13 @@
"joi": "^17.6.0", "joi": "^17.6.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"md5-hex": "^4.0.0", "md5-hex": "^4.0.0",
"monaco-editor": "^0.33.0", "monaco-editor": "^0.34.0",
"nanoid": "^3.3.4", "nanoid": "^3.3.4",
"next": "12.2.3", "next": "12.2.4",
"next-i18next": "^11.3.0", "next-i18next": "^11.3.0",
"react": "18.2.0", "react": "18.2.0",
"react-beautiful-dnd": "^13.1.0", "react-beautiful-dnd": "^13.1.0",
"react-colorful": "^5.5.1", "react-colorful": "^5.6.0",
"react-dnd": "16.0.1", "react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1", "react-dnd-html5-backend": "16.0.1",
"react-dom": "18.2.0", "react-dom": "18.2.0",
@ -61,8 +61,8 @@
"@tailwindcss/typography": "^0.5.4", "@tailwindcss/typography": "^0.5.4",
"@types/downloadjs": "^1.4.3", "@types/downloadjs": "^1.4.3",
"@types/lodash": "^4.14.182", "@types/lodash": "^4.14.182",
"@types/node": "18.6.3", "@types/node": "18.7.1",
"@types/react": "18.0.15", "@types/react": "18.0.17",
"@types/react-beautiful-dnd": "^13.1.2", "@types/react-beautiful-dnd": "^13.1.2",
"@types/react-redux": "^7.1.24", "@types/react-redux": "^7.1.24",
"@types/tailwindcss": "^3.0.11", "@types/tailwindcss": "^3.0.11",
@ -71,12 +71,12 @@
"autoprefixer": "^10.4.8", "autoprefixer": "^10.4.8",
"csstype": "^3.1.0", "csstype": "^3.1.0",
"eslint": "^8.21.0", "eslint": "^8.21.0",
"eslint-config-next": "12.2.3", "eslint-config-next": "12.2.4",
"next-sitemap": "^3.1.16", "next-sitemap": "^3.1.17",
"postcss": "^8.4.14", "postcss": "^8.4.16",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"sass": "^1.54.2", "sass": "^1.54.4",
"tailwindcss": "^3.1.7", "tailwindcss": "^3.1.8",
"typescript": "^4.7.4" "typescript": "^4.7.4"
} }
} }

View File

@ -13,6 +13,7 @@ const DateWrapper: React.FC<React.PropsWithChildren<unknown>> = ({ children }) =
// Locales // Locales
require('dayjs/locale/ar'); require('dayjs/locale/ar');
require('dayjs/locale/bg');
require('dayjs/locale/bn'); require('dayjs/locale/bn');
require('dayjs/locale/cs'); require('dayjs/locale/cs');
require('dayjs/locale/da'); require('dayjs/locale/da');

View File

@ -46,20 +46,25 @@ You have complete control over what goes into your resume, how it looks, what co
- Arabic (اَلْعَرَبِيَّةُ) - Arabic (اَلْعَرَبِيَّةُ)
- Bengali (বাংলা) - Bengali (বাংলা)
- Bulgarian (български)
- Chinese (中文) - Chinese (中文)
- Czech (čeština) - Czech (čeština)
- Danish (Dansk) - Danish (Dansk)
- Dutch (Nederlands) - Dutch (Nederlands)
- English - English
- Finnish (Suomi)
- French (Français) - French (Français)
- German (Deutsch) - German (Deutsch)
- Greek (Ελληνικά) - Greek (Ελληνικά)
- Hebrew (Ivrit)
- Hindi (हिन्दी) - Hindi (हिन्दी)
- Hungarian (Magyar) - Hungarian (Magyar)
- Indonesian (Bahasa Indonesia)
- Italian (Italiano) - Italian (Italiano)
- Kannada (ಕನ್ನಡ) - Kannada (ಕನ್ನಡ)
- Malayalam (മലയാളം) - Malayalam (മലയാളം)
- Odia (ଓଡ଼ିଆ) - Odia (ଓଡ଼ିଆ)
- Persian (Farsi)
- Polish (Polski) - Polish (Polski)
- Portuguese (Português) - Portuguese (Português)
- Russian (русский) - Russian (русский)

View File

@ -38,8 +38,8 @@
"env-cmd": "^10.1.0" "env-cmd": "^10.1.0"
}, },
"devDependencies": { "devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.32.0", "@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.32.0", "@typescript-eslint/parser": "^5.33.0",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"eslint": "^8.21.0", "eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",

860
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -10,21 +10,21 @@
"lint": "eslint --fix --ext .ts ./src" "lint": "eslint --fix --ext .ts ./src"
}, },
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.142.0", "@aws-sdk/client-s3": "^3.145.0",
"@nestjs/axios": "^0.1.0", "@nestjs/axios": "^0.1.0",
"@nestjs/common": "^9.0.8", "@nestjs/common": "^9.0.9",
"@nestjs/config": "^2.2.0", "@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.8", "@nestjs/core": "^9.0.9",
"@nestjs/jwt": "^9.0.0", "@nestjs/jwt": "^9.0.0",
"@nestjs/mapped-types": "^1.1.0", "@nestjs/mapped-types": "^1.1.0",
"@nestjs/passport": "^9.0.0", "@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.0.8", "@nestjs/platform-express": "^9.0.9",
"@nestjs/schedule": "^2.1.0", "@nestjs/schedule": "^2.1.0",
"@nestjs/serve-static": "^3.0.0", "@nestjs/serve-static": "^3.0.0",
"@nestjs/terminus": "^9.1.0", "@nestjs/terminus": "^9.1.1",
"@nestjs/typeorm": "^9.0.0", "@nestjs/typeorm": "^9.0.1",
"@sendgrid/mail": "^7.7.0", "@sendgrid/mail": "^7.7.0",
"@types/passport": "^1.0.9", "@types/passport": "^1.0.10",
"bcrypt": "^5.0.1", "bcrypt": "^5.0.1",
"cache-manager": "^4.1.0", "cache-manager": "^4.1.0",
"class-transformer": "^0.5.1", "class-transformer": "^0.5.1",
@ -43,7 +43,7 @@
"passport-local": "^1.0.0", "passport-local": "^1.0.0",
"pdf-lib": "^1.17.1", "pdf-lib": "^1.17.1",
"pg": "^8.7.3", "pg": "^8.7.3",
"playwright-chromium": "^1.24.2", "playwright-chromium": "^1.25.0",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rxjs": "^7.5.6", "rxjs": "^7.5.6",
@ -59,13 +59,13 @@
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"@types/lodash": "^4.14.182", "@types/lodash": "^4.14.182",
"@types/multer": "^1.4.7", "@types/multer": "^1.4.7",
"@types/node": "^18.6.3", "@types/node": "^18.7.1",
"eslint": "^8.21.0", "eslint": "^8.21.0",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"ts-loader": "^9.3.1", "ts-loader": "^9.3.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0", "tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4", "typescript": "^4.7.4",
"webpack": "^5.74.0" "webpack": "^5.74.0"
} }