Use [[Context]] for the msgid of some strings

This commit is contained in:
Vincent van Ravesteijn 2013-05-13 12:47:22 +02:00
parent fec57fe959
commit 813c00a21f
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;