# File lib/locale_rails/action_controller/caching.rb, line 17
      def fragment_cache_key_with_locale(name) 
        ret = fragment_cache_key_without_locale(name)
        if ret.is_a? String
          unless @@fragmented_locales.include? I18n.locale
            @@fragmented_locales << I18n.locale
          end
          ret.gsub(/:/, ".") << "_#{I18n.locale}"
        else
          ret
        end
      end