# File lib/gettext_i18n_rails/ruby_gettext_extractor.rb, line 27
    def initialize(targets)
      @targets = {}
      @results = []

      targets.each do |a|
        k, _v = a
        # things go wrong if k already exists, but this
        # should not happen (according to the gettext doc)
        @targets[k] = a
        @results << a
      end

      super()
    end