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))
|
- German (Deutsche) (by [Kryptand](https://crowdin.com/profile/Kryptand))
|
||||||
- Japanese (日本人) (by [a-thug](https://crowdin.com/profile/a-thug))
|
- Japanese (日本人) (by [a-thug](https://crowdin.com/profile/a-thug))
|
||||||
- Kannada (ಕನ್ನಡ)
|
- Kannada (ಕನ್ನಡ)
|
||||||
|
- Norwegian (Norsk) (by [rubjo](https://github.com/rubjo))
|
||||||
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
|
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
|
||||||
- Spanish (Español) (by [jrgonzalezrios](https://github.com/jrgonzalezrios))
|
- Spanish (Español) (by [jrgonzalezrios](https://github.com/jrgonzalezrios))
|
||||||
- Turkish (Türkçe) (by [Emirhan Avcı](https://github.com/AtlasFontaine))
|
- Turkish (Türkçe) (by [Emirhan Avcı](https://github.com/AtlasFontaine))
|
||||||
|
|||||||
@ -5,7 +5,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.1.2',
|
version: '2.1.3',
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
'gatsby-plugin-react-helmet',
|
'gatsby-plugin-react-helmet',
|
||||||
|
|||||||
@ -11,10 +11,6 @@ const languages = [
|
|||||||
code: 'da',
|
code: 'da',
|
||||||
name: 'Danish (Dansk)',
|
name: 'Danish (Dansk)',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
code: 'no',
|
|
||||||
name: 'Norwegian (Norsk)',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
code: 'nl',
|
code: 'nl',
|
||||||
name: 'Dutch (Nederlands)',
|
name: 'Dutch (Nederlands)',
|
||||||
@ -43,6 +39,10 @@ const languages = [
|
|||||||
code: 'kn',
|
code: 'kn',
|
||||||
name: 'Kannada (ಕನ್ನಡ)',
|
name: 'Kannada (ಕನ್ನಡ)',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
code: 'nb',
|
||||||
|
name: 'Norwegian (Norsk)',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
code: 'ptBr',
|
code: 'ptBr',
|
||||||
name: 'Portuguese (Brazilian)',
|
name: 'Portuguese (Brazilian)',
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
import ar from './ar.json';
|
import ar from './ar.json';
|
||||||
import da from './da.json';
|
import da from './da.json';
|
||||||
import no from './no.json';
|
|
||||||
import de from './de.json';
|
import de from './de.json';
|
||||||
import en from './en.json';
|
import en from './en.json';
|
||||||
import es from './es.json';
|
import es from './es.json';
|
||||||
@ -8,6 +7,7 @@ import fi from './fi.json';
|
|||||||
import fr from './fr.json';
|
import fr from './fr.json';
|
||||||
import ja from './ja.json';
|
import ja from './ja.json';
|
||||||
import kn from './kn.json';
|
import kn from './kn.json';
|
||||||
|
import nb from './nb.json';
|
||||||
import nl from './nl.json';
|
import nl from './nl.json';
|
||||||
import ptBr from './pt-br.json';
|
import ptBr from './pt-br.json';
|
||||||
import tr from './tr.json';
|
import tr from './tr.json';
|
||||||
@ -15,7 +15,6 @@ import tr from './tr.json';
|
|||||||
export default {
|
export default {
|
||||||
ar: { translation: ar },
|
ar: { translation: ar },
|
||||||
da: { translation: da },
|
da: { translation: da },
|
||||||
no: { translation: no },
|
|
||||||
de: { translation: de },
|
de: { translation: de },
|
||||||
en: { translation: en },
|
en: { translation: en },
|
||||||
es: { translation: es },
|
es: { translation: es },
|
||||||
@ -23,6 +22,7 @@ export default {
|
|||||||
fr: { translation: fr },
|
fr: { translation: fr },
|
||||||
ja: { translation: ja },
|
ja: { translation: ja },
|
||||||
kn: { translation: kn },
|
kn: { translation: kn },
|
||||||
|
nb: { translation: nb },
|
||||||
nl: { translation: nl },
|
nl: { translation: nl },
|
||||||
ptBr: { translation: ptBr },
|
ptBr: { translation: ptBr },
|
||||||
tr: { translation: tr },
|
tr: { translation: tr },
|
||||||
|
|||||||
@ -8,6 +8,7 @@ import 'dayjs/locale/fi';
|
|||||||
import 'dayjs/locale/fr';
|
import 'dayjs/locale/fr';
|
||||||
import 'dayjs/locale/ja';
|
import 'dayjs/locale/ja';
|
||||||
import 'dayjs/locale/kn';
|
import 'dayjs/locale/kn';
|
||||||
|
import 'dayjs/locale/nb';
|
||||||
import 'dayjs/locale/nl';
|
import 'dayjs/locale/nl';
|
||||||
import 'dayjs/locale/pt';
|
import 'dayjs/locale/pt';
|
||||||
import 'dayjs/locale/tr';
|
import 'dayjs/locale/tr';
|
||||||
|
|||||||
Reference in New Issue
Block a user