Module: I18n::Gettext::Helpers
- Defined in:
- lib/i18n/gettext/helpers.rb
Overview
Implements classical Gettext style accessors. To use this include the module to the global namespace or wherever you want to use it.
include I18n::Gettext::Helpers
Instance Method Summary (collapse)
- - (Object) gettext(msgid, options = {}) (also: #_)
- - (Object) ngettext(msgid, msgid_plural, n = 1) (also: #n_)
-
- (Object) npgettext(msgctxt, msgid, msgid_plural, n = 1)
(also: #np_)
Method signatures:.
-
- (Object) nsgettext(msgid, msgid_plural, n = 1, separator = '|')
(also: #ns_)
Method signatures:.
- - (Object) pgettext(msgctxt, msgid) (also: #p_)
- - (Object) sgettext(msgid, separator = '|') (also: #s_)
Instance Method Details
- (Object) gettext(msgid, options = {}) Also known as: _
10 11 12 |
# File 'lib/i18n/gettext/helpers.rb', line 10 def gettext(msgid, = {}) I18n.t(msgid, { :default => msgid, :separator => '|' }.merge()) end |
- (Object) ngettext(msgid, msgid_plural, n = 1) Also known as: n_
27 28 29 |
# File 'lib/i18n/gettext/helpers.rb', line 27 def ngettext(msgid, msgid_plural, n = 1) nsgettext(msgid, msgid_plural, n) end |
- (Object) npgettext(msgctxt, msgid, msgid_plural, n = 1) Also known as: np_
Method signatures:
npgettext('Fruits', 'apple', 'apples', 2)
npgettext('Fruits', ['apple', 'apples'], 2)
50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/i18n/gettext/helpers.rb', line 50 def npgettext(msgctxt, msgid, msgid_plural, n = 1) separator = I18n::Gettext::CONTEXT_SEPARATOR if msgid.is_a?(Array) msgid_plural, msgid, n = msgid[1], [msgctxt, msgid[0]].join(separator), msgid_plural else msgid = [msgctxt, msgid].join(separator) end nsgettext(msgid, msgid_plural, n, separator) end |
- (Object) nsgettext(msgid, msgid_plural, n = 1, separator = '|') Also known as: ns_
Method signatures:
nsgettext('Fruits|apple', 'apples', 2)
nsgettext(['Fruits|apple', 'apples'], 2)
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/i18n/gettext/helpers.rb', line 35 def nsgettext(msgid, msgid_plural, n = 1, separator = '|') if msgid.is_a?(Array) msgid, msgid_plural, n, separator = msgid[0], msgid[1], msgid_plural, n separator = '|' unless separator.is_a?(::String) end scope, msgid = I18n::Gettext.extract_scope(msgid, separator) default = { :one => msgid, :other => msgid_plural } I18n.t(msgid, :default => default, :count => n, :scope => scope, :separator => separator) end |
- (Object) pgettext(msgctxt, msgid) Also known as: p_
21 22 23 24 |
# File 'lib/i18n/gettext/helpers.rb', line 21 def pgettext(msgctxt, msgid) separator = I18n::Gettext::CONTEXT_SEPARATOR sgettext([msgctxt, msgid].join(separator), separator) end |
- (Object) sgettext(msgid, separator = '|') Also known as: s_
15 16 17 18 |
# File 'lib/i18n/gettext/helpers.rb', line 15 def sgettext(msgid, separator = '|') scope, msgid = I18n::Gettext.extract_scope(msgid, separator) I18n.t(msgid, :scope => scope, :default => msgid, :separator => separator) end |