hi
its ok to commit this (Bo?)
pavel
diff --git a/src/Buffer.cpp b/src/Buffer.cpp
index cac1f58..b20340d 100644
--- a/src/Buffer.cpp
+++ b/src/Buffer.cpp
@@ -925,18 +925,18 @@ bool Buffer::writeFile(FileName const & fname) const
        }
 
        if (!retval) {
-               message(str + _(" could not write file!."));
+               message(str + _(" could not write file!"));
                return false;
        }
 
        removeAutosaveFile(d->filename.absFilename());
 
        if (params().embedded) {
-               message(str + _(" writing embedded files!."));
+               message(str + _(" writing embedded files."));
                // if embedding is enabled, write file.lyx and all the embedded 
files
                // to the zip file fname.
                if (!d->embedded_files.writeFile(fname, *this)) {
-                       message(str + _(" could not write embedded files!."));
+                       message(str + _(" could not write embedded files!"));
                        return false;
                }
        }
diff --git a/src/EmbeddedFiles.cpp b/src/EmbeddedFiles.cpp
index e5d7ab3..4109dcd 100644
--- a/src/EmbeddedFiles.cpp
+++ b/src/EmbeddedFiles.cpp
@@ -168,7 +168,7 @@ bool EmbeddedFile::extract() const
                // otherwise, ask if overwrite
                int ret = Alert::prompt(
                        _("Overwrite external file?"),
-                       bformat(_("External file %1$s already exists, do you 
want to overwrite it"),
+                       bformat(_("External file %1$s already exists, do you 
want to overwrite it?"),
                                from_utf8(ext_file)), 1, 1, _("&Overwrite"), 
_("&Cancel"));
                if (ret != 0)
                        // if the user does not want to overwrite, we still 
consider it
diff --git a/src/LyXFunc.cpp b/src/LyXFunc.cpp
index 7536a0f..8ef6cec 100644
--- a/src/LyXFunc.cpp
+++ b/src/LyXFunc.cpp
@@ -720,7 +720,7 @@ bool loadLayoutFile(string const & name, string const & 
buf_path)
 
        LayoutFile & tc = LayoutFileList::get()[name];
        if (!tc.load(buf_path)) {
-               docstring s = bformat(_("The document class %1$s."
+               docstring s = bformat(_("The document class %1$s "
                                   "could not be loaded."), from_utf8(name));
                Alert::error(_("Could not load class"), s);
                return false;

Reply via email to