aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/gettext-2.1.0/test/testlib/simple.rb
blob: 64339894af61ac2e9027f4ad5f2b2d83c8ec4d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'gettext'

class Simple
  include GetText
  bindtextdomain("test1", :path => "locale")

  def test
    _("language")
  end

  def test_formatted_string
    _("one is %d.") % 1
  end
end