mirror of
https://github.com/msberends/AMR.git
synced 2025-09-02 18:24:09 +02:00
new antibiotics
This commit is contained in:
55
man/translate.Rd
Normal file
55
man/translate.Rd
Normal file
@@ -0,0 +1,55 @@
|
||||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/get_locale.R
|
||||
\name{translate}
|
||||
\alias{translate}
|
||||
\alias{get_locale}
|
||||
\title{Translate strings from AMR package}
|
||||
\usage{
|
||||
get_locale()
|
||||
}
|
||||
\description{
|
||||
For language-dependent output of AMR functions, like \code{\link{mo_fullname}} and \code{\link{mo_type}}.
|
||||
}
|
||||
\details{
|
||||
Strings will be translated to foreign languages if they are defined in a local translation file. This file comes with this package and can be found when running:
|
||||
|
||||
\code{system.file("translations.tsv", package = "AMR")}
|
||||
|
||||
This file will be read by all functions where a translated output can be desired, like all \code{\link{mo_property}} functions (\code{\link{mo_fullname}}, \code{\link{mo_type}}, etc.). Please suggest your own translations \href{https://gitlab.com/msberends/AMR/issues/new?issue[title]=Translation suggestion}{by creating a new issue on our repository}.
|
||||
|
||||
The system language will be used at default, if supported, using \code{\link{get_locale}}. The system language can be overwritten with \code{\link{getOption}("AMR_locale")}.
|
||||
}
|
||||
\section{Read more on our website!}{
|
||||
|
||||
On our website \url{https://msberends.gitlab.io/AMR} you can find \href{https://msberends.gitlab.io/AMR/articles/AMR.html}{a comprehensive tutorial} about how to conduct AMR analysis, the \href{https://msberends.gitlab.io/AMR/reference}{complete documentation of all functions} (which reads a lot easier than here in R) and \href{https://msberends.gitlab.io/AMR/articles/WHONET.html}{an example analysis using WHONET data}.
|
||||
}
|
||||
|
||||
\examples{
|
||||
# The 'language' parameter of below functions
|
||||
# will be set automatically to your system language
|
||||
# with get_locale()
|
||||
|
||||
# English
|
||||
mo_fullname("CoNS", language = "en")
|
||||
#> "Coagulase-negative Staphylococcus (CoNS)"
|
||||
|
||||
# German
|
||||
mo_fullname("CoNS", language = "de")
|
||||
#> "Koagulase-negative Staphylococcus (KNS)"
|
||||
|
||||
# Dutch
|
||||
mo_fullname("CoNS", language = "nl")
|
||||
#> "Coagulase-negatieve Staphylococcus (CNS)"
|
||||
|
||||
# Spanish
|
||||
mo_fullname("CoNS", language = "es")
|
||||
#> "Staphylococcus coagulasa negativo (SCN)"
|
||||
|
||||
# Italian
|
||||
mo_fullname("CoNS", language = "it")
|
||||
#> "Staphylococcus negativo coagulasi (CoNS)"
|
||||
|
||||
# Portuguese
|
||||
mo_fullname("CoNS", language = "pt")
|
||||
#> "Staphylococcus coagulase negativo (CoNS)"
|
||||
}
|
Reference in New Issue
Block a user