module I18nTranslationGeneratorModule class RecordingBackend attr_reader :keys def initialize @keys = [] end def translate(locale, key, options = {}) # @keys << key.to_sym @keys << (Array(options[:scope]) + [key]).flatten.join('.') end alias :t :translate end end