How do you customize transliterations in a Rails 3 app?
问题 Ultimately, I would like to use Inflector.parameterize to create slugs for article heading that have a bunch of unicode chars in them (e.g. "ḤellẒ no" => "hellz-no"). According to http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-transliterate it says to put them in the locales/en.yml file. # Store the transliterations in locales/en.yml i18n: transliterate: rule: Ḥ: "h" Ẓ: "z" I tried that but the following does not work: "ḤellẒ no".parameterize # => "ell-no" However,