Description Usage Arguments Details Value See Also Examples
View source: R/available.koRpus.lang.R
Get a list of all currently available language packages for koRpus from the official l10n repository.
1 | available.koRpus.lang(repos = "https://undocumeantit.github.io/repos/l10n/")
|
repos |
The URL to additional repositories to query. You should probably leave this to the
default, but if you would like to use a third party repository, you're free to do so. The
value is temporarily appended to the repos currently returned by |
koRpus' language support is modular by design, meaning you can (and must) load
an extension package for each language you want to work with in a given session.
These language support packages are named koRpus.lang.**
, where **
is replaced by a valid language identifier (like en
for English or de
for German). See set.lang.support
for more details.
This function downloads the package list from (also) the official localization repository for koRpus and lists all currently available language packages that you could install and load. Apart from than it does not download or install anything.
You can install the packages by either calling the convenient wrapper function
install.koRpus.lang
, or
install.packages
(see examples).
Returns an invisible character vector with all available language packages.
1 2 3 4 5 6 7 8 9 10 | ## Not run:
# see all available language packages
available.koRpus.lang()
# install support for German
install.koRpus.lang("de")
# alternatively, you could call install.packages directly
install.packages("koRpus.lang.de", repos="https://undocumeantit.github.io/repos/l10n/")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.