diff --git a/CHANGELOG.md b/CHANGELOG.md index 87d59e76..5fdca2d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [3.3.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.4) + +### Enhancements + +- Add support for configurable feed URL to use a service like FeedBurner instead of linking directly to `feed.xml` in `` and the site footer. [#378](https://github.com/mmistakes/minimal-mistakes/issues/378), [#379](https://github.com/mmistakes/minimal-mistakes/pull/379), [#406](https://github.com/mmistakes/minimal-mistakes/pull/406) +- Add Turkish localized UI text. [#403](https://github.com/mmistakes/minimal-mistakes/pull/403) + +### Maintenance + +- Update gems: `activesupport` (4.2.7), `ffi` (1.9.14), `github-pages` (88), `jekyll-redirect-from` (0.11.0), `jekyll-watch` (1.5.0). + ## [3.3.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.3.3) ### Enhancements diff --git a/Gemfile.lock b/Gemfile.lock index 01c019f5..533608b0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - activesupport (4.2.6) + activesupport (4.2.7) i18n (~> 0.7) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) @@ -18,10 +18,11 @@ GEM execjs (2.7.0) faraday (0.9.2) multipart-post (>= 1.2, < 3) - ffi (1.9.13) - ffi (1.9.13-x64-mingw32) + ffi (1.9.14) + ffi (1.9.14-x64-mingw32) gemoji (2.1.0) - github-pages (86) + github-pages (88) + activesupport (= 4.2.7) github-pages-health-check (= 1.1.0) jekyll (= 3.1.6) jekyll-coffeescript (= 1.0.1) @@ -30,7 +31,7 @@ GEM jekyll-github-metadata (= 2.0.2) jekyll-mentions (= 1.1.3) jekyll-paginate (= 1.1.0) - jekyll-redirect-from (= 0.10.0) + jekyll-redirect-from (= 0.11.0) jekyll-sass-converter (= 1.3.0) jekyll-seo-tag (= 2.0.0) jekyll-sitemap (= 0.10.0) @@ -47,8 +48,8 @@ GEM octokit (~> 4.0) public_suffix (~> 1.4) typhoeus (~> 0.7) - html-pipeline (2.4.1) - activesupport (>= 2, < 5) + html-pipeline (2.4.2) + activesupport (>= 2) nokogiri (>= 1.4) i18n (0.7.0) jekyll (3.1.6) @@ -72,14 +73,14 @@ GEM html-pipeline (~> 2.3) jekyll (~> 3.0) jekyll-paginate (1.1.0) - jekyll-redirect-from (0.10.0) + jekyll-redirect-from (0.11.0) jekyll (>= 2.0) jekyll-sass-converter (1.3.0) sass (~> 3.2) jekyll-seo-tag (2.0.0) jekyll (~> 3.1) jekyll-sitemap (0.10.0) - jekyll-watch (1.4.0) + jekyll-watch (1.5.0) listen (~> 3.0, < 3.1) jemoji (0.6.2) gemoji (~> 2.0) diff --git a/README.md b/README.md index ee330065..fe95ed29 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ The theme includes responsive layouts (`single`, `archive`, and `splash` pages) - Optional header images, sidebars, table of contents, galleries, related posts, breadcrumb links, and more. - Optional comments ([Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), Google+, [Discourse](https://www.discourse.org/), and custom). - Optional analytics ([Google Analytics](https://www.google.com/analytics/) and custom). +- UI localized text: English (default), Spanish, French, and Turkish. #### Demo Pages diff --git a/_config.yml b/_config.yml index 57130baa..bd2e2f08 100644 --- a/_config.yml +++ b/_config.yml @@ -28,6 +28,8 @@ comments: appid : num_posts : # 5 (default) colorscheme : # "light" (default), "dark" +atom_feed: + path : # blank (default) uses feed.xml # SEO Related google_site_verification : diff --git a/_data/ui-text.yml b/_data/ui-text.yml index 132900b0..9b80757d 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -102,5 +102,36 @@ fr-BE: fr-CH: <<: *DEFAULT_FR +# Turkish +# ----------------- +tr: &DEFAULT_TR + page : "Sayfa" + pagination_previous : "Önceki" + pagination_next : "Sonraki" + breadcrumb_home_label : "Ana Sayfa" + breadcrumb_separator : "/" + toc_label : "İçindekiler" + ext_link_label : "Doğrudan Bağlantı" + less_than : "Şu süreden az: " + minute_read : "dakika tahmini okuma süresi" + share_on_label : "Paylaş" + meta_label : + tags_label : "Etiketler:" + categories_label : "Kategoriler:" + date_label : "Güncelleme tarihi:" + comments_label : "Yorum yapın" + more_label : "Daha fazlasını öğrenin" + related_label : "Bunlar ilginizi çekebilir:" + follow_label : "Takip et:" + feed_label : "RSS" + powered_by : "Emeği geçenler: " + website_label : "Web sayfası" + email_label : "E-posta" + recent_posts : "Son yazılar" + undefined_wpm : "_config.yml dosyasında tanımlanmamış words_per_minute parametresi" +tr-TR: + <<: *DEFAULT_TR + + # Another locale # -------------- diff --git a/_includes/footer.html b/_includes/footer.html index 466526dd..a0ffe60e 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -17,7 +17,7 @@ {% if site.author.bitbucket %}
  • Bitbucket
  • {% endif %} -
  • {{ site.data.ui-text[site.locale].feed_label }}
  • +
  • {{ site.data.ui-text[site.locale].feed_label }}
  • diff --git a/_includes/head.html b/_includes/head.html index a28ce9a0..ffcc7416 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -4,7 +4,7 @@ {% include seo.html %} - + diff --git a/package.json b/package.json index 5af267ac..5a08f2c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minimal-mistakes", - "version": "3.3.3", + "version": "3.3.4", "description": "Minimal Mistakes Jekyll theme npm build scripts", "repository": { "type": "git",