method
search_file
search_file(path, file)
private
Hide source
# File lib/irb/locale.rb, line 156 def search_file(path, file) each_sublocale do |lc| full_path = path + lc_path(file, lc) return full_path if File.exist?(full_path) end nil end