mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* InsetInfo.cpp (toolTip):
- use bformat for proper syntactic translatability (the tooltips of this inset look rather weird in generals, though). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27242 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
84395acfb5
commit
a73c6c72dc
@ -112,10 +112,8 @@ docstring InsetInfo::name() const
|
||||
|
||||
docstring InsetInfo::toolTip(BufferView const &, int, int) const
|
||||
{
|
||||
odocstringstream os;
|
||||
os << _("Information regarding ")
|
||||
<< _(infoType()) << " " << from_utf8(name_);
|
||||
return os.str();
|
||||
return bformat(_("Information regarding %1$s '%2$s'"),
|
||||
_(infoType()), from_utf8(name_));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user