Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/gettext/stubs.rb
# These stub the translation methods normally brought in
# by FastGettext. Used when Gettext could not be properly
# initialized.
def _(msg)
msg
end
def n_(*args, &block)
plural = args[2] == 1 ? args[0] : args[1]
block ? block.call : plural
end