[Libreoffice-bugs] [Bug 144175] Remove strings from l10n in html export
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Mon Aug 30 16:23:21 UTC 2021
https://bugs.documentfoundation.org/show_bug.cgi?id=144175
Julien Nabet <serval2412 at yahoo.fr> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |serval2412 at yahoo.fr
--- Comment #2 from Julien Nabet <serval2412 at yahoo.fr> ---
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20210830/025e2a1b/attachment.htm>
More information about the Libreoffice-bugs
mailing list