method
lc_path
v1_8_7_330 -
Show latest stable
- Class:
IRB::Locale
lc_path(file = "", lc = @lang)private
No documentation available.
# File lib/irb/locale.rb, line 168
def lc_path(file = "", lc = @lang)
case lc
when "C"
LOCALE_DIR + file
when /^ja/
LOCALE_DIR + "ja/" + file
else
LOCALE_DIR + @lang + "/" + file
end
end