blob: 8f9eb7027d55ce4b70a0478b1d9485fd52560c7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/ruby
# hello2.po - sample for _() and module
#
# Copyright (C) 2002-2004 Masao Mutoh
# This file is distributed under the same license as Ruby-GetText-Package.
require 'rubygems'
require 'gettext'
module Hello
include GetText
bindtextdomain("hello2", :path => "locale")
module_function
def hello
num = 1
puts _("One is %{num}\n") % {:num => num}
puts _("Hello %{world}\n") % {:world => _("World")}
end
end
Hello.hello
|