Skip to content

Commit

Permalink
Fix i18n tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JTPetter committed Nov 8, 2023
1 parent 78d1924 commit 6d16fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/variablesChartsSubgroups.R
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ variablesChartsSubgroups <- function(jaspResults, dataset, options) {
nDroppedStageRows <- sum(is.na(dataset[[stages]]))
dataset <- dataset[!is.na(dataset[[stages]]),]
removalType <- if (wideFormat) "subgroup(s)" else "observation(s)"
plotNotes <- paste0(plotNotes, gettextf("Removed %i %s that were not assigned to any stage.<br>", nDroppedStageRows, removalType))
plotNotes <- paste0(plotNotes, gettextf("Removed %1$i %2$s that were not assigned to any stage.<br>", nDroppedStageRows, removalType))
}
}

Expand Down

0 comments on commit 6d16fb3

Please sign in to comment.