Get rid of one useless translation.

http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg181106.html
This commit is contained in:
Pavel Sanda 2013-11-17 10:41:18 -08:00
parent 4038ef8bea
commit 105f9bb5d9

View File

@ -2400,7 +2400,7 @@ bool GuiView::exportBufferAs(Buffer & b, docstring const & iformat)
for (; fit != export_formats.end(); ++fit) {
docstring const loc_prettyname =
translateIfPossible(from_utf8((*fit)->prettyname()));
QString const loc_filter = toqstr(bformat(_("%1$s (*.%2$s)"),
QString const loc_filter = toqstr(bformat(from_ascii("%1$s (*.%2$s)"),
loc_prettyname,
from_ascii((*fit)->extension())));
types << loc_filter;