Skip to content

Commit

Permalink
feat(client): 💫 add Finnish language support
Browse files Browse the repository at this point in the history
  • Loading branch information
AmruthPillai committed Aug 4, 2022
1 parent 331346b commit 16d19eb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"conventionalCommits.scopes": [
"client",
"server",
"docker"
"docker",
"dependencies"
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ You have complete control over what goes into your resume, how it looks, what co
- Danish (Dansk)
- Dutch (Nederlands)
- English
- Finnish (Suomi)
- French (Français)
- German (Deutsch)
- Greek (Ελληνικά)
Expand Down
1 change: 1 addition & 0 deletions client/config/languages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const languages: Language[] = [
{ code: 'el', name: 'Greek', localName: 'Ελληνικά' },
{ code: 'en', name: 'English' },
{ code: 'es', name: 'Spanish', localName: 'Español' },
{ code: 'fi', name: 'Finnish', localName: 'Suomi' },
{ code: 'fr', name: 'French', localName: 'Français' },
{ code: 'he', name: 'Hebrew', localName: 'Ivrit' },
{ code: 'hi', name: 'Hindi', localName: 'हिन्दी' },
Expand Down
1 change: 1 addition & 0 deletions client/next-i18next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const i18nConfig = {
'en',
'es',
'fa',
'fi',
'fr',
'he',
'hi',
Expand Down
1 change: 1 addition & 0 deletions client/wrappers/DateWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const DateWrapper: React.FC<React.PropsWithChildren<unknown>> = ({ children }) =
require('dayjs/locale/en');
require('dayjs/locale/es');
require('dayjs/locale/fa');
require('dayjs/locale/fi');
require('dayjs/locale/fr');
require('dayjs/locale/he');
require('dayjs/locale/hi');
Expand Down

0 comments on commit 16d19eb

Please sign in to comment.