diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-25 23:35:34 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-25 23:35:34 +0000 |
commit | 5b58c076243085bd8d6166e23a17f68518bf6dea (patch) | |
tree | 878a4d953e7b57e3cbfe53f311fd81e78b207816 /lib/rbot/language.rb | |
parent | 146dec828df1ff32b4457f855438dc179f8e1c01 (diff) |
Try to guess the default language from the locale guessed from GeText
Diffstat (limited to 'lib/rbot/language.rb')
-rw-r--r-- | lib/rbot/language.rb | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/lib/rbot/language.rb b/lib/rbot/language.rb index e77bb90a..de446191 100644 --- a/lib/rbot/language.rb +++ b/lib/rbot/language.rb @@ -10,11 +10,11 @@ module Irc module Language - # This constant has holds the mapping - # from long language names to usual POSIX + # This constant hash holds the mapping + # from long language names to the usual POSIX # locale specifications Lang2Locale = { - :english => 'en_GB', + :english => 'en', :british_english => 'en_GB', :american_english => 'en_US', :italian => 'it', @@ -27,9 +27,29 @@ module Language :simplified_chinese => 'zh_CN' } + # Return the shortest language for the current + # GetText locale + def Language.from_locale + lang = locale.language + if locale.country + str = lang + "_#{locale.country}" + if Lang2Locale.value?(str) + # Get the shortest key in Lang2Locale which maps to the given lang_country + return Lang2Locale.select { |k, v| v == str }.transpose.first.map { |v| v.to_s }.sort { |a, b| a.length <=> b.length }.first + end + end + # lang_country didn't work, let's try lan + if Lang2Locale.value?(lang) + # Get the shortest key in Lang2Locale which maps to the given lang + return Lang2Locale.select { |k, v| v == lang }.transpose.first.map { |v| v.to_s }.sort { |a, b| a.length <=> b.length }.first + end + # all else fail, return 'english' + return 'english' + end + class Language BotConfig.register BotConfigEnumValue.new('core.language', - :default => "english", :wizard => true, + :default => Irc::Language.from_locale, :wizard => true, :values => Proc.new{|bot| Dir.new(Config::datadir + "/languages").collect {|f| f =~ /\.lang$/ ? f.gsub(/\.lang$/, "") : nil |