Skip to contents

Function to get the current language setting in full.

Usage

gtl_opt_long_language()

Value

A string with the language name (lowercase)

Examples

# With a french locale
gtl_opt_set_i18n("fr_CH")
gtl_opt_long_language()
#> [1] "french"

# With an english locale
gtl_opt_set_i18n("en_US")
gtl_opt_long_language()
#> [1] "english"