]> git.lyx.org Git - lyx.git/commitdiff
fix some typos. Patch by Yuri Chornoivan.
authorJürgen Spitzmüller <spitz@lyx.org>
Wed, 29 Dec 2010 16:57:04 +0000 (16:57 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Wed, 29 Dec 2010 16:57:04 +0000 (16:57 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37039 a592a061-630c-0410-9148-cb99ea01b6c8

lib/layouts/egs.layout
src/Buffer.cpp
src/Buffer.h
src/LaTeX.cpp
src/graphics/GraphicsConverter.h
src/support/filetools.cpp

index 64f36daaf0caf74e6e007f6014520744ba196045..21cc5a807b50a85030848aea66462747ab7d0e38 100644 (file)
@@ -327,7 +327,7 @@ Style Affil
        ParSep                0.7
        Align                 Left
        LabelType             Static
-       LabelString           "Affilation:"
+       LabelString           "Affiliation:"
        LabelFont
          Series              Bold
          Shape               Italic
index 4908518c74317ee0b17156b16436acc732d64494..15314366a7e474c3e12f0d09fb015b86fded2d58 100644 (file)
@@ -1061,7 +1061,7 @@ bool Buffer::save() const
                } else {
                        Alert::error(_("Backup failure"),
                                     bformat(_("Cannot create backup file %1$s.\n"
-                                              "Please check whether the directory exists and is writeable."),
+                                              "Please check whether the directory exists and is writable."),
                                             from_utf8(backupName.absFileName())));
                        //LYXERR(Debug::DEBUG, "Fs error: " << fe.what());
                }
@@ -3761,7 +3761,7 @@ Buffer::ReadStatus Buffer::loadEmergency()
                if (success) {
                        if (isReadonly()) {
                                Alert::warning(_("File is read-only"),
-                                       bformat(_("An emergency file is succesfully loaded, "
+                                       bformat(_("An emergency file is successfully loaded, "
                                        "but the original file %1$s is marked read-only. "
                                        "Please make sure to save the document as a different "
                                        "file."), from_utf8(d->filename.absFileName())));
@@ -3823,7 +3823,7 @@ Buffer::ReadStatus Buffer::loadAutosave()
                if (ret_llf == ReadSuccess) {
                        if (isReadonly()) {
                                Alert::warning(_("File is read-only"),
-                                       bformat(_("A backup file is succesfully loaded, "
+                                       bformat(_("A backup file is successfully loaded, "
                                        "but the original file %1$s is marked read-only. "
                                        "Please make sure to save the document as a "
                                        "different file."), 
index 5819466bf7e635673a495d8d6e0b124961749b6b..19dd6eca7e8c4903cb9b0c6a36a26fdc293d9683 100644 (file)
@@ -183,9 +183,9 @@ public:
        /// Renames and saves the buffer
        bool saveAs(support::FileName const & fn);
 
-       /// Write document to stream. Returns \c false if unsuccesful.
+       /// Write document to stream. Returns \c false if unsuccessful.
        bool write(std::ostream &) const;
-       /// Write file. Returns \c false if unsuccesful.
+       /// Write file. Returns \c false if unsuccessful.
        bool writeFile(support::FileName const &) const;
 
        /// \name Functions involved in reading files/strings.
index 47c2201a51bea2d172a5cabfb1911cb20d358d7c..d79af2fbf859655595c8930a56562ca3661efadb 100644 (file)
@@ -1008,7 +1008,7 @@ void LaTeX::deplog(DepTable & head)
                        // However, ...
                        if (suffixIs(token, ")"))
                                // no line break for sure
-                               // pretend we've been succesfully searching
+                               // pretend we've been successfully searching
                                found_file = true;
                // (2) "No file file.ext"
                } else if (regex_match(token, sub, reg2)) {
@@ -1049,7 +1049,7 @@ void LaTeX::deplog(DepTable & head)
                                                file.absFileName(), ".toc")), head);
                else
                        // not found, but we won't check further
-                       // pretend we've been succesfully searching
+                       // pretend we've been successfully searching
                        found_file = true;
 
                // (8) "(file.ext"
@@ -1088,7 +1088,7 @@ void LaTeX::deplog(DepTable & head)
                                        // we have a closing bracket, so the content
                                        // is not a file name.
                                        // no need to investigate further
-                                       // pretend we've been succesfully searching
+                                       // pretend we've been successfully searching
                                        first = what[0].second;
                                        found_file = true;
                                }
index f84b9e9b11b5e7cdcaffabff9a205948d8b8358f..838b07bfc7d3e949958b9b3c9049ce4f8e2eb136 100644 (file)
@@ -45,14 +45,14 @@ public:
 
        /** Connect and you'll be informed when the conversion process has
         *  finished.
-        *  If the conversion is succesful, then the listener is passed \c true.
+        *  If the conversion is successful, then the listener is passed \c true.
         */
        typedef boost::signal<void(bool)> sig_type;
        typedef sig_type::slot_type slot_type;
        ///
        boost::signals::connection connect(slot_type const &) const;
 
-       /** If the conversion is succesful, this returns the name of the
+       /** If the conversion is successful, this returns the name of the
         *  resulting file.
         *  If conversion fails or has not been completed, however, it
         *  returns an empty string.
index 519f779a5ef283e1c8271bfaa3390f9088688f7d..59090ecfaaabf3d70875a6c119c38aee8faaa156 100644 (file)
@@ -821,7 +821,7 @@ cmd_ret const runCommand(string const & cmd)
 #error No popen() function.
 #endif
 
-       // (Claus Hentschel) Check if popen was succesful ;-)
+       // (Claus Hentschel) Check if popen was successful ;-)
        if (!inf) {
                lyxerr << "RunCommand:: could not start child process" << endl;
                return make_pair(-1, string());