Skip to content

Commit 9d0b5ad

Browse files
Fix untranslated strings
1 parent 263b3af commit 9d0b5ad

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

R/data.table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ replace_dot_alias = function(e) {
561561
}
562562
irows = vecseq(f__, len__, limit)
563563
}
564-
if (verbose) {cat(timetaken(last.started.at),"\n"); flush.console()}
564+
if (verbose) {cat(timetaken(last.started.at),"\n"); flush.console()} # notranslate
565565
# Fix for #1092 and #1074
566566
# TODO: implement better version of "any"/"all"/"which" to avoid
567567
# unnecessary construction of logical vectors

R/frollapply.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ frollapply = function(X, N, FUN, ..., by.column=TRUE, fill=NA, align=c("right","
259259
} else leftadaptive = FALSE
260260
if (leftadaptive) {
261261
if (verbose)
262-
cat("frollapply: adaptive=TRUE && align='left' pre-processing for align='right'\n")
262+
catf("frollapply: adaptive=TRUE && align='left' pre-processing for align='right'\n")
263263
if (by.column) {
264264
X = lapply(X, rev)
265265
} else {
@@ -329,7 +329,7 @@ frollapply = function(X, N, FUN, ..., by.column=TRUE, fill=NA, align=c("right","
329329
DTths0 = getDTthreads(FALSE)
330330
use.fork0 = .Platform$OS.type!="windows" && DTths0 > 1L
331331
if (verbose && !use.fork0)
332-
cat("frollapply running on single CPU thread\n")
332+
catf("frollapply running on single CPU thread\n")
333333
ans = vector("list", nx*nn)
334334
## vectorized x
335335

src/bmerge.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ void bmerge_r(int xlowIn, int xuppIn, int ilowIn, int iuppIn, int col, int thisg
414414
if (mult==ALL)
415415
allLen1[0] = FALSE; // bmerge()$allLen1
416416
else if (mult==ERR)
417-
error("mult='error' and multiple matches during merge");
417+
error(_("mult='error' and multiple matches during merge"));
418418
}
419419
if (nqmaxgrp == 1) {
420420
const int rf = (mult!=LAST) ? xlow+2-rollLow : xupp+rollUpp; // bmerge()$starts thus extra +1 for 1-based indexing at R level

0 commit comments

Comments
 (0)