]> git.lyx.org Git - features.git/commitdiff
more text cleanups from Michael
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 19 May 2005 18:53:09 +0000 (18:53 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Thu, 19 May 2005 18:53:09 +0000 (18:53 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9958 a592a061-630c-0410-9148-cb99ea01b6c8

15 files changed:
src/BufferView.C
src/ChangeLog
src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlLog.C
src/frontends/gtk/ChangeLog
src/frontends/gtk/Dialogs.C
src/frontends/gtk/GTexinfo.C
src/frontends/qt2/ChangeLog
src/frontends/qt2/Dialogs.C
src/frontends/qt2/QTexinfo.C
src/frontends/qt2/ui/QBibtexAddDialogBase.ui
src/frontends/qt2/ui/QCitationFindDialogBase.ui
src/frontends/xforms/ChangeLog
src/frontends/xforms/Dialogs.C
src/frontends/xforms/FormTexinfo.C

index 918d7a3e33c556cc94bdc93fbf9b17fc578a8bd7..9b33d6567bb0e6771ddbb4388846f0eed8669ce8 100644 (file)
@@ -241,7 +241,7 @@ void BufferView::scroll(int lines)
 void BufferView::showErrorList(string const & action) const
 {
        if (getErrorList().size()) {
-               string const title = bformat(_("LyX: %1$s errors (%2$s)"),
+               string const title = bformat(_("%1$s Errors (%2$s)"),
                        action, buffer()->fileName());
                owner()->getDialogs().show("errorlist", title);
                pimpl_->errorlist_.clear();
index 13b68c0ed71d0cbbe0763bf8b38cdf0fe1e16331..c32662748fbdcb90584154f9efd6c695f4a2850c 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-14  Michael Schmitt  <michael.schmitt@teststep.org>
+
+       * BufferView.C: fix dialog title
+
 2005-05-18  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
 
        * lyx_main.C (priv_exec): fix logic error with help from Angus
index ffd2cc4c7ae6af95754d2bb2d957a7358f44cbd4..d6db819e7db1d95b2a93a2dced6505841926add7 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-14  Michael Schmitt  <michael.schmitt@teststep.org>
+
+       * ControlLog.C: fix dialog title
+
 2005-05-13  Angus Leeming  <leeming@lyx.org>
 
        * helper_funcs.C (browseFile, browseDir): remove the loop that tested
index 4f849af0b806200b2adbb60f18ecfe69387c925c..148bd7f9b967c9087b18561625b6197bdb5ecb1f 100644 (file)
@@ -71,13 +71,13 @@ string const ControlLog::title() const
        string t;
        switch (type_) {
        case LatexLog:
-               t = _("LyX: LaTeX Log");
+               t = _("LaTeX Log");
                break;
        case LiterateLog:
-               t = _("LyX: Literate Programming Build Log");
+               t = _("Literate Programming Build Log");
                break;
        case Lyx2lyxLog:
-               t = _("LyX: lyx2lyx error Log");
+               t = _("lyx2lyx Error Log");
                break;
        case VCLog:
                t = _("Version Control Log");
index 38f52c1237e0521146aa855d26a3691dfbafa6e4..c071866d90d0f74759de5594d8ed6cdbfb378e22 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-14  Michael Schmitt  <michael.schmitt@teststep.org>
+
+       * Dialogs.C: dialog title "Index" => "Index Entry"
+       * GTexinfo.C: dialog title "LaTeX Information" => "TeX Information"
+
 2005-04-25  Angus Leeming  <leeming@lyx.org>
 
        * GChanges.C:
index 34e09dc27d08fad45d3aaf571fd25ea193266b58..7887c04e83e7b87833b7c75dbb2121a3505eea08 100644 (file)
@@ -264,7 +264,7 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
                dialog->bc().view(new GBC(dialog->bc()));
                dialog->setController(new ControlCommand(*dialog, name));
                dialog->setView(new GText(*dialog,
-                                         _("Index"), _("Keyword:|#K")));
+                                         _("Index Entry"), _("Keyword:|#K")));
                dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
        } else if (name == "label") {
                dialog->bc().view(new GBC(dialog->bc()));
index 206807ae1503aa3bf7cfac1895496eff2652f7e4..1062f4807b285f08d2cf9bc2b834079343488ae7 100644 (file)
@@ -34,7 +34,7 @@ namespace frontend {
 
 
 GTexinfo::GTexinfo(Dialog & parent)
-       : GViewCB<ControlTexinfo, GViewGladeB>(parent, _("LaTeX Information"), false),
+       : GViewCB<ControlTexinfo, GViewGladeB>(parent, _("TeX Information"), false),
          activeStyle(ControlTexinfo::cls)
 {}
 
index 49605f23405919f49ce4fbd44f3e623a2af2d270..687f639c9d45703f4ac2f12c309ece14ca78bab4 100644 (file)
@@ -1,3 +1,11 @@
+2005-05-14  Michael Schmitt  <michael.schmitt@teststep.org>
+
+       * Dialogs.C: add missing ":" to text messages
+       * QTexinfo.C: dialog title "LaTeX Information" => "TeX Information"
+       * ui/QBibtexAddDialogBase.ui: fix label & tooltip
+       * ui/QCitationFindDialogBase.ui: change text "citation key/entry" => 
+       "bibliography key/entry"
+
 2005-05-19  Angus Leeming  <leeming@lyx.org>
 
        * qscreen.[Ch]: cache and reuse pixmaps to show the flashing cursor.
index 387b89c9c3054e60aca12b70bf68a3ec6e7b0912..88e4c09c949d16a24071526dc959a17208536a40 100644 (file)
@@ -230,13 +230,13 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
                dialog->setController(new ControlCommand(*dialog, name));
                dialog->setView(new QIndex(*dialog,
                                           _("Index Entry"),
-                                          qt_("&Keyword")));
+                                          qt_("&Keyword:")));
                dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
        } else if (name == "label") {
                dialog->setController(new ControlCommand(*dialog, name));
                dialog->setView(new QIndex(*dialog,
                                           _("Label"),
-                                          qt_("&Label")));
+                                          qt_("&Label:")));
                dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
        } else if (name == "log") {
                dialog->setController(new ControlLog(*dialog));
index d1a2b1cd5d61b4d8359a8b0e8601845b7a5dd817..6ffd783f2fcca6ac829bd0af4ea3cc3c8d7e9aaf 100644 (file)
@@ -31,7 +31,7 @@ namespace frontend {
 typedef QController<ControlTexinfo, QView<QTexinfoDialog> > base_class;
 
 QTexinfo::QTexinfo(Dialog & parent)
-       : base_class(parent, _("LaTeX Information")),
+       : base_class(parent, _("TeX Information")),
          warningPosted(false), activeStyle(ControlTexinfo::cls)
 {
 }
index 9aed5a6b055a077645f78cfe0cf414b67283c13a..d75be568188e6b0fa4323234b943ecb0cfa85e24 100644 (file)
@@ -75,7 +75,7 @@
             </property>
             <property>
                 <name>toolTip</name>
-                <string>Search the available citations</string>
+                <string>Enter BibTeX database name</string>
             </property>
         </widget>
         <widget row="0"  column="0"  rowspan="1"  colspan="2" >
             </property>
             <property>
                 <name>toolTip</name>
-                <string>Available citation keys</string>
+                <string>Available BibTeX databases</string>
             </property>
         </widget>
         <spacer row="2"  column="1" >
index 07df2948e30a9ea840284793f02a967d53897821..6434f286af08ab77a6cb74be99e159087e8493fe 100644 (file)
@@ -82,7 +82,7 @@
                     </property>
                     <property>
                         <name>toolTip</name>
-                        <string>Available citation keys</string>
+                        <string>Available bibliography keys</string>
                     </property>
                 </widget>
             </vbox>
             </property>
             <property>
                 <name>toolTip</name>
-                <string>Citation entry</string>
+                <string>Bibliography entry</string>
             </property>
         </widget>
         <spacer row="2"  column="1" >
                     </property>
                     <property>
                         <name>toolTip</name>
-                        <string>Search the available citations</string>
+                        <string>Browse the available bibliography entries</string>
                     </property>
                 </widget>
                 <widget row="2"  column="0" >
index ffaa2a1894f1f3f1bba4ff245b29ea5f35a37d63..e4eb1b2842c9fbb06757cabac52b2d8bdc7e26ce 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-12  Michael Schmitt  <michael.schmitt@teststep.org>
+
+       * Dialogs.C: change dialog title "Index" => "Index Entry"
+       * FormTexinfo.C: change dialog title "LaTeX Information" => "TeX Information"
+
 2005-05-13  Angus Leeming  <leeming@lyx.org>
 
        * checkedwidgets.[Ch] (CheckedPath): new class that determines
index 2a5d851adbce362143026f36358cd4cc85045f1c..8ff574e81fabcb5718f09bc3f5e13548220e3609 100644 (file)
@@ -243,7 +243,7 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
        } else if (name == "index") {
                dialog->setController(new ControlCommand(*dialog, name));
                dialog->setView(new FormText(*dialog,
-                                            _("Index"), _("Keyword:|#K")));
+                                            _("Index Entry"), _("Keyword:|#K")));
                dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
        } else if (name == "label") {
                dialog->setController(new ControlCommand(*dialog, name));
index b82b198c6c9b9c2fccc26b5a21e64ebf4d92d93b..037dda5971a79b669501b5d50b486489dffc1714 100644 (file)
@@ -32,7 +32,7 @@ namespace frontend {
 typedef FormController<ControlTexinfo, FormView<FD_texinfo> > base_class;
 
 FormTexinfo::FormTexinfo(Dialog & parent)
-       : base_class(parent, _("LaTeX Information")),
+       : base_class(parent, _("TeX Information")),
          activeStyle(ControlTexinfo::cls)
 {}