]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/load-gettext.rb
* (gettext) make us somewhat less dependent on gettext internals
[user/henk/code/ruby/rbot.git] / lib / rbot / load-gettext.rb
1 # load gettext module and provide fallback in case of failure
2
3 require 'stringio'
4
5 # try to load gettext, or provide fake getttext functions
6 begin
7   require 'gettext'
8   include GetText
9   bindtextdomain 'rbot'
10
11   module GetText
12     # patch for ruby-gettext 1.9.0 to cope with anonymous modules used by rbot
13     # FIXME remove the patch when ruby-gettext is fixed, or rbot switches to named modules
14   # fix for module names that are not constant names
15     if !instance_methods.include?('orig_bound_targets')
16       alias :orig_bound_targets :bound_targets
17     end
18     def bound_targets(*a)  # :nodoc:
19       orig_bound_targets(*a) rescue orig_bound_targets(Object)
20     end
21   end
22
23   begin
24     gettext_info = StringIO.new
25     current_textdomain_info(:out=>gettext_info) # fails sometimes
26     debug 'using ruby-gettext'
27     gettext_info.string.each_line {|l| debug l}
28   rescue Exception
29   end
30
31 rescue LoadError
32   warn 'ruby-gettext package not available; translations are disabled'
33
34   # dummy functions that return msg_id without translation
35   def _(s)
36     s
37   end
38
39   def N_(s)
40     s
41   end
42
43   def n_(s_single, s_plural, n)
44     n > 1 ? s_plural : s_single
45   end
46
47   def s_(*args)
48     args[0]
49   end
50
51   # the following extension to String#% is from ruby-gettext's string.rb file.
52   # it needs to be included in the fallback since the source already use this form
53
54 =begin
55   string.rb - Extension for String.
56
57   Copyright (C) 2005,2006 Masao Mutoh
58
59   You may redistribute it and/or modify it under the same
60   license terms as Ruby.
61 =end
62
63   # Extension for String class.
64   #
65   # String#% method which accept "named argument". The translator can know
66   # the meaning of the msgids using "named argument" instead of %s/%d style.
67   class String
68     alias :_old_format_m :% # :nodoc:
69
70     # call-seq:
71     #  %(arg)
72     #  %(hash)
73     #
74     # Format - Uses str as a format specification, and returns the result of applying it to arg.
75     # If the format specification contains more than one substitution, then arg must be
76     # an Array containing the values to be substituted. See Kernel::sprintf for details of the
77     # format string. This is the default behavior of the String class.
78     # * arg: an Array or other class except Hash.
79     # * Returns: formatted String
80     #
81     #  (e.g.) "%s, %s" % ["Masao", "Mutoh"]
82     #
83     # Also you can use a Hash as the "named argument". This is recommanded way for Ruby-GetText
84     # because the translators can understand the meanings of the msgids easily.
85     # * hash: {:key1 => value1, :key2 => value2, ... }
86     # * Returns: formatted String
87     #
88     #  (e.g.) "%{firstname}, %{familyname}" % {:firstname => "Masao", :familyname => "Mutoh"}
89     def %(args)
90       if args.kind_of?(Hash)
91         ret = dup
92         args.each {|key, value|
93           ret.gsub!(/\%\{#{key}\}/, value.to_s)
94         }
95         ret
96       else
97         ret = gsub(/%\{/, '%%{')
98         begin
99     ret._old_format_m(args)
100         rescue ArgumentError
101     $stderr.puts "  The string:#{ret}"
102     $stderr.puts "  args:#{args.inspect}"
103         end
104       end
105     end
106   end
107 end