# File lib/active_support/vendor/i18n-0.3.7/i18n/backend/links.rb, line 27
        def find_link(locale, key)
          links(locale).each do |from, to|
            return [from, to] if key[0, from.length] == from
          end && nil
        end