Sha256: b738730e970b6370946a614c25f155c497ee4551858cd38438bd5b58212ef7cf

Contents?: true

Size: 682 Bytes

Versions: 9

Compression:

Stored size: 682 Bytes

Contents

#!/usr/bin/ruby
# hello.rb - sample for _() and class.
#
# Copyright (C) 2001-2006 Masao Mutoh
# This file is distributed under the same license as Ruby-GetText-Package.

require 'rubygems'
require 'gettext'

class HelloWorld
  include GetText

  bindtextdomain("hello", :path => "locale")

  def hello
    print _("Hello World\n")
  end
end

if __FILE__ == $0
  a = HelloWorld.new

  a.hello # Show in your locale
  
  old = GetText.locale
  p old.to_s # Show current locale

  # Change the locale to "en".
  GetText.set_locale_all("en")
  p GetText.locale.to_s
  a.hello # Show in English

  # Retrive original locale
  GetText.set_locale(old)
  a.hello # Show in your locale
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
experteer-gettext-2.0.4.1 samples/hello.rb
experteer-gettext-2.0.4.2 samples/hello.rb
experteer-gettext-2.0.4 samples/hello.rb
grosser-gettext-2.0.0 samples/hello.rb
gettext-2.0.1 samples/hello.rb
gettext-2.0.0 samples/hello.rb
gettext-2.0.2 samples/hello.rb
gettext-2.0.4 samples/hello.rb
gettext-2.0.3 samples/hello.rb