mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Revert change in rev. 15955 because as Georg says:
This fix will create extra translator work, and nobody will remmeber that bformat should be used instead of your solution once the real problem is fixed. If you use from_ascii instead of from_utf8 everything is OK. utf8 can be wrong as encoding for files anyway, so for now we require that files are pure ascii. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15957 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2ea833ac71
commit
3bc4d28449
@ -390,8 +390,9 @@ void LyX::prepareExit()
|
||||
// FIXME UNICODE: package().temp_dir() could in theory contain utf8 characters.
|
||||
// We cannot use from_utf8() here because this involves the use of static data
|
||||
// that may have been destroyed already on Mac systems.
|
||||
docstring const msg = _("Unable to remove the temporary directory") + " "
|
||||
+ package().temp_dir().c_str();
|
||||
docstring const msg =
|
||||
bformat(_("Unable to remove the temporary directory %1$s"),
|
||||
from_ascii(package().temp_dir()));
|
||||
Alert::warning(_("Unable to remove temporary directory"), msg);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user