diff --git a/CHANGELOG.md b/CHANGELOG.md index 580628b2..bd5c268f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [3.2.7](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.7) + +### Enhancements + +- Add French localized UI text. [#346](https://github.com/mmistakes/minimal-mistakes/pull/346) + +### Bug Fixes + +- Fix branch logic for Yandex and Alexa in `seo.html`. [#348](https://github.com/mmistakes/minimal-mistakes/pull/348) + ## [3.2.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.6) ### Bug Fixes diff --git a/_data/ui-text.yml b/_data/ui-text.yml index 18867f13..5d634fd6 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -27,7 +27,7 @@ en: &DEFAULT_EN website_label : "Website" email_label : "Email" recent_posts : "Recent Posts" - undefined_wpm : "Undefined parameter words_per_minute at _config.yml" + undefined_wpm : "Undefined parameter words_per_minute at _config.yml" en-US: <<: *DEFAULT_EN en-UK: @@ -60,11 +60,46 @@ es: &DEFAULT_ES website_label : "Sitio web" email_label : "Email" recent_posts : "Entradas recientes" - undefined_wpm : "Parametro words_per_minute (Palabras por minuto) no definido en _config.yml" + undefined_wpm : "Parametro words_per_minute (Palabras por minuto) no definido en _config.yml" es-ES: <<: *DEFAULT_ES es-CO: <<: *DEFAULT_ES +# French +# ----------------- +fr: &DEFAULT_FR + page : "Page" + pagination_previous : "Précédent" + pagination_next : "Suivant" + breadcrumb_home_label : "Accueil" + breadcrumb_separator : "/" + toc_label : "Sur cette page" + ext_link_label : "Lien direct" + less_than : "plus petit que" + minute_read : "minute de lecture" + minutes_read : "minutes de lecture" + share_on_label : "Partager sur" + meta_label : + tags_label : "Tags :" + categories_label : "Catégories :" + date_label : "Mis à jour :" + comments_label : "Laisser un commentaire" + more_label : "Lire plus" + related_label : "Vous pourriez aimer" + follow_label : "Suivez moi" + feed_label : "Flux" + powered_by : "Propulsé par" + website_label : "Site" + email_label : "Email" + recent_posts : "Posts récents" + undefined_wpm : "Le paramètre words_per_minute n'est pas défini dans _config.yml" +fr-FR: + <<: *DEFAULT_FR +fr-BE: + <<: *DEFAULT_FR +fr-CH: + <<: *DEFAULT_FR + # Another locale # -------------- diff --git a/_includes/seo.html b/_includes/seo.html index 8073725a..0298f6ce 100644 --- a/_includes/seo.html +++ b/_includes/seo.html @@ -127,10 +127,10 @@ {% if site.bing_site_verification %} {% endif %} -{% if site.owner.alexa.verify %} +{% if site.alexa_site_verification %} {% endif %} -{% if site.owner.yandex.verify %} +{% if site.yandex_site_verification %} {% endif %} - \ No newline at end of file + diff --git a/package.json b/package.json index 07c0646e..03694ed0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minimal-mistakes", - "version": "3.2.6", + "version": "3.2.7", "description": "Minimal Mistakes Jekyll theme npm build scripts", "repository": { "type": "git",