https://bugs.documentfoundation.org/show_bug.cgi?id=144175
Julien Nabet <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Julien Nabet <[email protected]> --- Just for the record, the strings are used here: 329 if (!xDocProps->getPrintedBy().isEmpty()) 330 { 331 OUT_COMMENT( GLOBSTR( STR_DOC_INFO ) ); 332 OUString aStrOut = GLOBSTR( STR_DOC_PRINTED ) + ": "; 333 lcl_AddStamp( aStrOut, xDocProps->getPrintedBy(), 334 xDocProps->getPrintDate(), *ScGlobal::getLocaleDataPtr() ); 335 OUT_COMMENT( aStrOut ); 336 } and lcl_AddStamp calls: ... 169 rStr += GLOBSTR( STR_BY ) + " "; 170 if (!rName.empty()) 171 rStr += rName; 172 else 173 rStr += "???"; 174 rStr += " " + GLOBSTR( STR_ON ) + " "; ... which also deals with datetime https://opengrok.libreoffice.org/xref/core/sc/source/filter/html/htmlexp.cxx?r=821d2f8c#329 -- You are receiving this mail because: You are the assignee for the bug.
