From 56f60653931c7aa87a8137bb2e67d093c0828fa6 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Mon, 29 Apr 2019 18:29:45 +0200 Subject: [PATCH] FIX: Generate ASCII slug with default locale --- lib/slug.rb | 4 +++- spec/components/slug_spec.rb | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/slug.rb b/lib/slug.rb index 669006c2e8e..27ded2ac9f0 100644 --- a/lib/slug.rb +++ b/lib/slug.rb @@ -36,7 +36,9 @@ module Slug end def self.ascii_generator(string) - string.tr("'", "").parameterize + I18n.with_locale(SiteSetting.default_locale) do + string.tr("'", "").parameterize + end end def self.encoded_generator(string, downcase: true) diff --git a/spec/components/slug_spec.rb b/spec/components/slug_spec.rb index 991ff235e14..99ba5a2dd8c 100644 --- a/spec/components/slug_spec.rb +++ b/spec/components/slug_spec.rb @@ -46,6 +46,12 @@ describe Slug do it "fallbacks to empty string if it's too long" do expect(Slug.for(very_long_string)).to eq(default_slug) end + + it "transliterates with the default locale" do + SiteSetting.default_locale = :de + I18n.locale = :en + expect(Slug.for('löwe')).to eq('loewe') + end end context 'encoded generator' do