Skip to content

Commit

Permalink
feat(i18n): add Malayalam (മലയാളം) language to i18n locales
Browse files Browse the repository at this point in the history
  • Loading branch information
AmruthPillai committed Mar 18, 2022
1 parent 697ceef commit 3a2e62b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -46,6 +46,7 @@ You have complete control over what goes into your resume, how it looks, what co
- Hindi (हिन्दी)
- Italian (Italiano)
- Kannada (ಕನ್ನಡ)
- Malayalam (മലയാളം)
- Polish (Polski)
- Spanish (Español)
- Tamil (தமிழ்)
Expand Down
1 change: 1 addition & 0 deletions client/config/languages.ts
Expand Up @@ -15,6 +15,7 @@ export const languages: Language[] = [
{ code: 'hi', name: 'Hindi', localName: 'हिन्दी' },
{ code: 'it', name: 'Italian', localName: 'Italiano' },
{ code: 'kn', name: 'Kannada', localName: 'ಕನ್ನಡ' },
{ code: 'ml', name: 'Malayalam', localName: 'മലയാളം' },
{ code: 'pl', name: 'Polish', localName: 'Polski' },
{ code: 'ta', name: 'Tamil', localName: 'தமிழ்' },
{ code: 'tr', name: 'Turkish', localName: 'Türkçe' },
Expand Down
2 changes: 1 addition & 1 deletion client/next-i18next.config.js
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
const i18nConfig = {
i18n: {
defaultLocale: 'en',
locales: ['ar', 'bn', 'da', 'de', 'en', 'es', 'fr', 'hi', 'it', 'kn', 'pl', 'ta', 'tr', 'zh'],
locales: ['ar', 'bn', 'da', 'de', 'en', 'es', 'fr', 'hi', 'it', 'kn', 'ml', 'pl', 'ta', 'tr', 'zh'],
},
nsSeparator: '.',
localePath: path.resolve('./public/locales'),
Expand Down
1 change: 1 addition & 0 deletions client/wrappers/DateWrapper.tsx
Expand Up @@ -20,6 +20,7 @@ const DateWrapper: React.FC = ({ children }) => {
require('dayjs/locale/hi');
require('dayjs/locale/it');
require('dayjs/locale/kn');
require('dayjs/locale/ml');
require('dayjs/locale/pl');
require('dayjs/locale/ta');
require('dayjs/locale/tr');
Expand Down
1 change: 1 addition & 0 deletions docs/docs/index.mdx
Expand Up @@ -54,6 +54,7 @@ You have complete control over what goes into your resume, how it looks, what co
- Hindi (हिन्दी)
- Italian (Italiano)
- Kannada (ಕನ್ನಡ)
- Malayalam (മലയാളം)
- Polish (Polski)
- Spanish (Español)
- Tamil (தமிழ்)
Expand Down

1 comment on commit 3a2e62b

@vercel
Copy link

@vercel vercel bot commented on 3a2e62b Mar 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.