mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 08:13:49 +10:00
- add norwegian language
This commit is contained in:
@ -54,6 +54,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
|
||||
- German (Deutsche) (by [Kryptand](https://crowdin.com/profile/Kryptand))
|
||||
- Japanese (日本人) (by [a-thug](https://crowdin.com/profile/a-thug))
|
||||
- Kannada (ಕನ್ನಡ)
|
||||
- Norwegian (Norsk) (by [rubjo](https://github.com/rubjo))
|
||||
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
|
||||
- Spanish (Español) (by [jrgonzalezrios](https://github.com/jrgonzalezrios))
|
||||
- Turkish (Türkçe) (by [Emirhan Avcı](https://github.com/AtlasFontaine))
|
||||
|
||||
@ -5,7 +5,7 @@ module.exports = {
|
||||
title: 'Reactive Resume',
|
||||
siteUrl: 'https://rxresu.me',
|
||||
description: 'A free and open source resume builder.',
|
||||
version: '2.1.2',
|
||||
version: '2.1.3',
|
||||
},
|
||||
plugins: [
|
||||
'gatsby-plugin-react-helmet',
|
||||
|
||||
@ -11,10 +11,6 @@ const languages = [
|
||||
code: 'da',
|
||||
name: 'Danish (Dansk)',
|
||||
},
|
||||
{
|
||||
code: 'no',
|
||||
name: 'Norwegian (Norsk)',
|
||||
},
|
||||
{
|
||||
code: 'nl',
|
||||
name: 'Dutch (Nederlands)',
|
||||
@ -43,6 +39,10 @@ const languages = [
|
||||
code: 'kn',
|
||||
name: 'Kannada (ಕನ್ನಡ)',
|
||||
},
|
||||
{
|
||||
code: 'nb',
|
||||
name: 'Norwegian (Norsk)',
|
||||
},
|
||||
{
|
||||
code: 'ptBr',
|
||||
name: 'Portuguese (Brazilian)',
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
import ar from './ar.json';
|
||||
import da from './da.json';
|
||||
import no from './no.json';
|
||||
import de from './de.json';
|
||||
import en from './en.json';
|
||||
import es from './es.json';
|
||||
@ -8,6 +7,7 @@ import fi from './fi.json';
|
||||
import fr from './fr.json';
|
||||
import ja from './ja.json';
|
||||
import kn from './kn.json';
|
||||
import nb from './nb.json';
|
||||
import nl from './nl.json';
|
||||
import ptBr from './pt-br.json';
|
||||
import tr from './tr.json';
|
||||
@ -15,7 +15,6 @@ import tr from './tr.json';
|
||||
export default {
|
||||
ar: { translation: ar },
|
||||
da: { translation: da },
|
||||
no: { translation: no },
|
||||
de: { translation: de },
|
||||
en: { translation: en },
|
||||
es: { translation: es },
|
||||
@ -23,6 +22,7 @@ export default {
|
||||
fr: { translation: fr },
|
||||
ja: { translation: ja },
|
||||
kn: { translation: kn },
|
||||
nb: { translation: nb },
|
||||
nl: { translation: nl },
|
||||
ptBr: { translation: ptBr },
|
||||
tr: { translation: tr },
|
||||
|
||||
@ -8,6 +8,7 @@ import 'dayjs/locale/fi';
|
||||
import 'dayjs/locale/fr';
|
||||
import 'dayjs/locale/ja';
|
||||
import 'dayjs/locale/kn';
|
||||
import 'dayjs/locale/nb';
|
||||
import 'dayjs/locale/nl';
|
||||
import 'dayjs/locale/pt';
|
||||
import 'dayjs/locale/tr';
|
||||
|
||||
Reference in New Issue
Block a user