diff --git a/README.md b/README.md index b5531ed4..9b41fe01 100644 --- a/README.md +++ b/README.md @@ -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)) diff --git a/gatsby-config.js b/gatsby-config.js index 8c7c5800..f2dcc0fa 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -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', diff --git a/src/i18n/index.js b/src/i18n/index.js index a152713a..156ea288 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -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)', diff --git a/src/i18n/locales/index.js b/src/i18n/locales/index.js index 0f4b747c..1a5f8296 100644 --- a/src/i18n/locales/index.js +++ b/src/i18n/locales/index.js @@ -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 }, diff --git a/src/i18n/locales/no.json b/src/i18n/locales/nb.json similarity index 100% rename from src/i18n/locales/no.json rename to src/i18n/locales/nb.json diff --git a/src/utils/dayjs.js b/src/utils/dayjs.js index 981d0df0..e1450111 100644 --- a/src/utils/dayjs.js +++ b/src/utils/dayjs.js @@ -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';