]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/load-gettext.rb
namespaces: move rbot-specific classes and modules from Irc::* to Irc::Bot::*
[user/henk/code/ruby/rbot.git] / lib / rbot / load-gettext.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: GetText interface for rbot
5 #
6 # Load gettext module and provide fallback in case of failure
7
8 class GetTextVersionError < Exception
9 end
10
11 # try to load gettext, or provide fake getttext functions
12 begin
13   require 'gettext/version'
14
15   gettext_version = GetText::VERSION.split('.').map {|n| n.to_i}
16   include Comparable # required for Array#between?
17   unless gettext_version.between? [1, 8, 0], [1, 10, 0]
18     raise GetTextVersionError, "Unsupported ruby-gettext version installed: #{gettext_version.join '.'}; supported versions are 1.8.0-1.10.0"
19   end
20
21   require 'gettext'
22
23   include GetText
24
25   add_default_locale_path(File.join(Irc::Bot::Config.datadir, "../locale/%{locale}/LC_MESSAGES/%{name}.mo"))
26
27   bindtextdomain 'rbot'
28
29   module GetText
30     # patch for ruby-gettext 1.8.0 up to 1.10.0 (and more?) to cope with anonymous
31     # modules used by rbot
32     # FIXME remove the patch when ruby-gettext is fixed, or rbot switches to named modules
33     if !instance_methods.include?('orig_bound_targets')
34       alias :orig_bound_targets :bound_targets
35     end
36     def bound_targets(*a)  # :nodoc:
37       orig_bound_targets(*a) rescue orig_bound_targets(Object)
38     end
39
40     require 'stringio'
41
42     # This method is used to output debug information on the GetText
43     # textdomain, and it's called by the language setting routines
44     # in rbot
45     def rbot_gettext_debug
46       begin
47         gettext_info = StringIO.new
48         current_textdomain_info(:out => gettext_info) # fails sometimes
49       rescue Exception
50         warning "gettext failed to set call textdomain info. maybe an mo file doesn't exist for your locale."
51       ensure
52         gettext_info.string.each_line { |l| debug l}
53       end
54     end
55   end
56
57   log "gettext loaded"
58
59 rescue LoadError, GetTextVersionError
60   warn "failed to load ruby-gettext package: #{$!}; translations are disabled"
61
62   # dummy functions that return msg_id without translation
63   def _(s)
64     s
65   end
66
67   def N_(s)
68     s
69   end
70
71   def n_(s_single, s_plural, n)
72     n > 1 ? s_plural : s_single
73   end
74
75   def Nn_(s_single, s_plural)
76     n_(s_single, s_plural)
77   end
78
79   def s_(*args)
80     args[0]
81   end
82
83   # the following extension to String#% is from ruby-gettext's string.rb file.
84   # it needs to be included in the fallback since the source already use this form
85
86 =begin
87   string.rb - Extension for String.
88
89   Copyright (C) 2005,2006 Masao Mutoh
90
91   You may redistribute it and/or modify it under the same
92   license terms as Ruby.
93 =end
94
95   # Extension for String class.
96   #
97   # String#% method which accept "named argument". The translator can know
98   # the meaning of the msgids using "named argument" instead of %s/%d style.
99   class String
100     alias :_old_format_m :% # :nodoc:
101
102     # call-seq:
103     #  %(arg)
104     #  %(hash)
105     #
106     # Format - Uses str as a format specification, and returns the result of applying it to arg.
107     # If the format specification contains more than one substitution, then arg must be
108     # an Array containing the values to be substituted. See Kernel::sprintf for details of the
109     # format string. This is the default behavior of the String class.
110     # * arg: an Array or other class except Hash.
111     # * Returns: formatted String
112     #
113     #  (e.g.) "%s, %s" % ["Masao", "Mutoh"]
114     #
115     # Also you can use a Hash as the "named argument". This is recommanded way for Ruby-GetText
116     # because the translators can understand the meanings of the msgids easily.
117     # * hash: {:key1 => value1, :key2 => value2, ... }
118     # * Returns: formatted String
119     #
120     #  (e.g.) "%{firstname}, %{familyname}" % {:firstname => "Masao", :familyname => "Mutoh"}
121     def %(args)
122       if args.kind_of?(Hash)
123         ret = dup
124         args.each {|key, value|
125           ret.gsub!(/\%\{#{key}\}/, value.to_s)
126         }
127         ret
128       else
129         ret = gsub(/%\{/, '%%{')
130         begin
131     ret._old_format_m(args)
132         rescue ArgumentError
133     $stderr.puts "  The string:#{ret}"
134     $stderr.puts "  args:#{args.inspect}"
135         end
136       end
137     end
138   end
139 end