From efe1762b335224cc4ffeed5a9c678e694560ac6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20K?= <4O4@rawbytes.net> Date: Tue, 19 Jan 2021 13:52:01 +0100 Subject: [PATCH 1/2] Improvement of polish translations --- src/i18n/locales/pl.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json index 960ab189..2df433b8 100644 --- a/src/i18n/locales/pl.json +++ b/src/i18n/locales/pl.json @@ -31,7 +31,7 @@ "edit": "Edytuj", "cancel": "Anuluj", "delete": "Usuń", - "loading": "Ładuję...", + "loading": "Wczytywanie...", "confirmation": "Na pewno?", "login": "Login", "logout": "Wyloguj" @@ -71,7 +71,7 @@ "work": "Doświadczenie zawodowe", "education": "Wyksztłacenie", "project": "Projekt", - "projects": "Ptojekty", + "projects": "Projekty", "award": "Nagroda", "awards": "Nagrody", "certification": "Certyfikat", @@ -96,7 +96,7 @@ "photograph": "Fotografia", "firstName": "Imię", "lastName": "Nazwisko", - "birthDate": "Data urodzin", + "birthDate": "Data urodzenia", "address": { "line1": "Pole adresowe 1", "line2": "Pole adresowe 2", From d507b9d54d6ff6d71975eeca009482708a2c5d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kierzkowski?= Date: Tue, 19 Jan 2021 15:12:07 +0100 Subject: [PATCH 2/2] Add latin-ext subset to fix special characters missing in webfonts --- gatsby-config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gatsby-config.js b/gatsby-config.js index de107ab0..ba50bd1c 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -44,34 +44,42 @@ module.exports = { { family: 'Lato', variants: ['400', '700'], + subsets: ['latin-ext'], }, { family: 'Montserrat', variants: ['400', '500', '600', '700'], + subsets: ['latin-ext'], }, { family: 'Nunito', variants: ['400', '600', '700'], + subsets: ['latin-ext'], }, { family: 'Open Sans', variants: ['400', '600', '700'], + subsets: ['latin-ext'], }, { family: 'Raleway', variants: ['400', '500', '700'], + subsets: ['latin-ext'], }, { family: 'Rubik', variants: ['400', '500', '700'], + subsets: ['latin-ext'], }, { family: 'Source Sans Pro', variants: ['400', '600', '700'], + subsets: ['latin-ext'], }, { family: 'Titillium Web', variants: ['400', '600', '700'], + subsets: ['latin-ext'], }, ], },