File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4969,16 +4969,16 @@ function(x, ...)
49694969
49704970 c(character (),
49714971 if ((n <- x $ latin1 ) && ! suppress_notes ) {
4972- sprintf(
4973- ngettext( n ,
4974- " Note: found %d marked Latin-1 string " ,
4975- " Note: found %d marked Latin-1 strings " ), n )
4972+ sprintf(ngettext( n ,
4973+ " Note: found %d marked Latin-1 string " ,
4974+ " Note: found %d marked Latin-1 strings " ) ,
4975+ n )
49764976 },
49774977 if ((n <- x $ utf8 ) && ! suppress_notes ) {
4978- sprintf(
4979- ngettext(n ,
4978+ sprintf(ngettext(n ,
49804979 " Note: found %d marked UTF-8 string" ,
4981- " Note: found %d marked UTF-8 strings" ), n )
4980+ " Note: found %d marked UTF-8 strings" ),
4981+ n )
49824982 },
49834983 # # if(n <- x$bytes) { ## elevated to a Warning in 4.5.0
49844984 # # sprintf(
@@ -4987,10 +4987,10 @@ function(x, ...)
49874987 # # "Warning: found %d strings marked as \"bytes\""), n)
49884988 # # },
49894989 if ((n <- x $ bytes ) && ! suppress_notes ) {
4990- sprintf(
4991- ngettext(n ,
4990+ sprintf(ngettext(n ,
49924991 " Note: found %d string marked as \" bytes\" " ,
4993- " Note: found %d strings marked as \" bytes\" " ), n )
4992+ " Note: found %d strings marked as \" bytes\" " ),
4993+ n )
49944994 },
49954995 if (nr <- nrow(x $ unknown )) {
49964996 msg <- ngettext(nr ,
You can’t perform that action at this time.
0 commit comments