Change strings.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23819 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-03-18 23:35:57 +00:00
parent be3d526dbd
commit 826d0fc879
2 changed files with 2 additions and 2 deletions

View File

@ -279,7 +279,7 @@ void InsetCommandParams::read(Lexer & lex)
string const test = lex.getString();
if (test != "LatexCommand") {
lex.printError("InsetCommandParams: No LatexCommand line found.");
throw ExceptionMessage(WarningException, _("InsetCommandParams error:"),
throw ExceptionMessage(WarningException, _("InsetCommandParams error: "),
_("Can't find LatexCommand line."));
}
}

View File

@ -65,7 +65,7 @@ void InsetInfo::draw(PainterInfo & pi, int x, int y) const
odocstringstream os;
os << _("Information regarding ")
<<_(nameTranslator().find(type_))
<< _(" ") << from_utf8(name_);
<< " " << from_utf8(name_);
pi.base.bv->message(os.str());
}
}