# File lib/wicked/wizard/translated.rb, line 27
      def wizard_translations
        @wizard_translations ||= steps.inject(ActiveSupport::OrderedHash.new) do |hash, step|
          step              = step.to_s.split(".").last
          translation       = wizard_translate(step)
          hash[translation] = step.to_s
          hash
        end
      end