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 560c6a2 commit 0d37f61Copy full SHA for 0d37f61
.ci/linters/po/msgfmt_linter.R
@@ -4,7 +4,7 @@ msgfmt_linter <- function(po_file) {
4
mo_tmp <- tempfile()
5
on.exit(unlink(mo_tmp))
6
7
- res = system2("msgfmt", c("--statistics", po_file, "-o", mo_tmp)), stdout=TRUE, stderr=TRUE)
+ res = system2("msgfmt", c("--statistics", po_file, "-o", mo_tmp), stdout=TRUE, stderr=TRUE)
8
if (any(grepl("untranslated message|fuzzy translation", res))) {
9
cat(sprintf("In %s, found incomplete translations:\n%s\n", po_file, paste(res, collapse="\n")))
10
stop("Please fix.")
0 commit comments