We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4258dd3 commit 6b2065fCopy full SHA for 6b2065f
R/read.R
@@ -186,7 +186,9 @@ long_to_shortnames <- function(v, translations) {
186
# Handle missing translations
187
missing_indices <- is.na(positions)
188
if (any(missing_indices)) {
189
- rlang::warn("Missing translations. Using original long names.")
+ missing_translations <- paste0(translations$long[missing_indices], collapse=", ")
190
+ rlang::warn(glue::glue("Missing translations: {missing_translations}."))
191
+ rlang::warn("Will use original long names.")
192
shortnames[missing_indices] <- v[missing_indices]
193
}
194
0 commit comments