mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
Use [[Context]] for the msgid of some strings
This commit is contained in:
parent
fec57fe959
commit
813c00a21f
@ -1066,7 +1066,7 @@ int parse_version(string const &, string const &, string &)
|
||||
{
|
||||
cout << "LyX " << lyx_version
|
||||
<< " (" << lyx_release_date << ")" << endl;
|
||||
cout << to_utf8(bformat(_("Built on %1$s, %2$s"),
|
||||
cout << to_utf8(bformat(_("Built on %1$s[[date]], %2$s[[time]]"),
|
||||
from_ascii(__DATE__), from_ascii(__TIME__))) << endl;
|
||||
|
||||
cout << lyx_version_info << endl;
|
||||
|
@ -138,7 +138,7 @@ static QString buildinfo()
|
||||
QTextStream out(&res);
|
||||
out << "LyX " << lyx_version
|
||||
<< " (" << lyx_release_date << ")" << endl;
|
||||
out << toqstr(bformat(_("Built on %1$s, %2$s"),
|
||||
out << toqstr(bformat(_("Built on %1$s[[date]], %2$s[[time]]"),
|
||||
from_ascii(__DATE__), from_ascii(__TIME__))) << endl;
|
||||
|
||||
out << lyx_version_info << endl;
|
||||
|
Loading…
Reference in New Issue
Block a user