module I18n::Backend::Flatten

def find_link(locale, key) #:nodoc:

:nodoc:
def find_link(locale, key) #:nodoc:
  links[locale].each_pair do |from, to|
    return [from, to] if key[0, from.length] == from
  end && nil
end