R/gettext.R

Defines functions .Facto_ngettext .Facto_gettext

# This function is a convenience wrapper to .gettext() which
# passes the domain name and avoid repeating it in the code
.Facto_gettext <- function(msg) {
    gettext(msg, domain="R-RcmdrPlugin.FactoMineR")
}

.Facto_ngettext <- function(n, msg1, msg2) {
    ngettext(n, msg1, msg2, domain="R-RcmdrPlugin.FactoMineR")
}

Try the RcmdrPlugin.FactoMineR package in your browser

Any scripts or data that you put into this service are public.

RcmdrPlugin.FactoMineR documentation built on Nov. 18, 2023, 1:08 a.m.