Returns a character vector of all available translation keys.
Examples
# All keys
head(list_translation_keys())
#> [1] "active_control" "adverse_event" "ae" "ae_short"
#> [5] "age" "age_group"
# Keys containing "ae"
list_translation_keys(pattern = "ae")
#> [1] "ae" "ae_short" "fn_sae"
#> [4] "fn_teae" "sae" "sae_short"
#> [7] "subjects_with_any_ae" "subjects_with_any_sae" "subjects_with_any_teae"
#> [10] "teae" "teae_short"
# Keys for demographics
list_translation_keys(pattern = "^(age|sex|race|ethnic)")
#> [1] "age" "age_group" "age_years" "ethnicity" "race" "sex"
