Sha256: 2dd6c7471f5d6083525455e596cc7462eb2a3dda104ccd8228595dd256e56810

Contents?: true

Size: 500 Bytes

Versions: 51

Compression:

Stored size: 500 Bytes

Contents

#!/usr/bin/ruby
# hello2.po - sample for _() and module
#
# Copyright (C) 2002-2004 Masao Mutoh
# This file is distributed under the same license as gettext.

require 'rubygems'
require 'gettext'

module Hello
  include GetText

  base_dir = File.dirname(__FILE__)
  bindtextdomain("hello2", :path => File.join(base_dir, "locale"))

  module_function
  def hello
    num = 1
    puts _("One is %{num}\n") % {:num => num}
    puts _("Hello %{world}\n") % {:world => _("World")}
  end
end

Hello.hello

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
gettext-3.5.0 samples/hello2.rb
gettext-3.4.9 samples/hello2.rb
gettext-3.4.8 samples/hello2.rb
gettext-3.4.7 samples/hello2.rb
gettext-3.4.6 samples/hello2.rb
gettext-3.4.5 samples/hello2.rb
gettext-3.4.4 samples/hello2.rb
gettext-3.4.3 samples/hello2.rb
gettext-3.4.2 samples/hello2.rb
gettext-3.4.1 samples/hello2.rb
gettext-3.4.0 samples/hello2.rb
gettext-3.3.9 samples/hello2.rb
gettext-3.3.8 samples/hello2.rb
gettext-3.3.7 samples/hello2.rb
gettext-3.3.6 samples/hello2.rb
gettext-3.3.5 samples/hello2.rb
gettext-3.3.4 samples/hello2.rb
gettext-3.3.3 samples/hello2.rb
gettext-3.3.2 samples/hello2.rb
gettext-3.3.1 samples/hello2.rb