diff libgui/src/m-editor/file-editor.cc @ 18257:cae24b7cfaf4 stable

minor fix of text strings and related translations (part of bug #41201) * file-editor.cc: minor changes of text strings * main-window.cc: minor changes of text strings * files-dock-widget.cc: minor changes of text strings * find-dialog.cc: minor changes of text strings * settings-dialog.cc: minor changes of text strings * welcome-wizard.cc: minor changes of text strings * libgui/languages/*.ts: update the traanslations accordingly
author Torsten <ttl@justmail.de>
date Sat, 11 Jan 2014 22:29:52 +0100
parents d62570cfbab9
children 09ef57c61b3b
line wrap: on
line diff
--- a/libgui/src/m-editor/file-editor.cc	Sun Dec 29 10:11:30 2013 -0500
+++ b/libgui/src/m-editor/file-editor.cc	Sat Jan 11 22:29:52 2014 +0100
@@ -471,7 +471,7 @@
       // Create a NonModal message about error.
       QMessageBox *msgBox
         = new QMessageBox (QMessageBox::Critical, tr ("Octave Editor"),
-                           tr ("The associated file editor tab has disappeared.  It was likely closed by some means."),
+                           tr ("The associated file editor tab has disappeared."),
                            QMessageBox::Ok, 0);
 
       msgBox->setWindowModality (Qt::NonModal);
@@ -876,16 +876,16 @@
                                      tr ("&New File"), _tool_bar);
 
   QAction *open_action = new QAction (QIcon (":/actions/icons/fileopen.png"),
-                                      tr ("&Open File"), _tool_bar);
+                                      tr ("&Open File..."), _tool_bar);
 
   _save_action = new QAction (QIcon (":/actions/icons/filesave.png"),
                               tr ("&Save File"), _tool_bar);
 
   _save_as_action = new QAction (QIcon (":/actions/icons/filesaveas.png"),
-                                 tr ("Save File &As"), _tool_bar);
+                                 tr ("Save File &As..."), _tool_bar);
 
   _print_action = new QAction ( QIcon (":/actions/icons/fileprint.png"),
-                                tr ("Print"), _tool_bar);
+                                tr ("Print..."), _tool_bar);
 
   _undo_action = new QAction (QIcon (":/actions/icons/undo.png"),
                               tr ("&Undo"), _tool_bar);
@@ -934,12 +934,12 @@
     = new QAction (tr ("&Uncomment"), _tool_bar);
 
   _find_action = new QAction (QIcon (":/actions/icons/search.png"),
-                              tr ("&Find and Replace"), _tool_bar);
+                              tr ("&Find and Replace..."), _tool_bar);
 
   _run_action = new QAction (QIcon (":/actions/icons/artsbuilderexecute.png"),
                              tr ("Save File and Run"), _tool_bar);
 
-  _goto_line_action = new QAction (tr ("Go&to Line"), _tool_bar);
+  _goto_line_action = new QAction (tr ("Go &to Line..."), _tool_bar);
 
   // the mru-list and an empty array of actions
   QSettings *settings = resource_manager::get_settings ();
@@ -999,7 +999,7 @@
     _mru_file_menu->addAction (_mru_file_actions[i]);
 
   fileMenu->addAction (new_action);
-  fileMenu->addAction (QIcon (), tr ("New &Function"),
+  fileMenu->addAction (QIcon (), tr ("New &Function..."),
                       this, SLOT (request_new_function (bool)));
   fileMenu->addAction (open_action);
   fileMenu->addMenu (_mru_file_menu);
@@ -1055,11 +1055,11 @@
   editMenu->addSeparator ();
   _preferences_action =
     editMenu->addAction (QIcon (":/actions/icons/configure.png"),
-                         tr ("&Preferences"),
+                         tr ("&Preferences..."),
                          this, SLOT (request_preferences (bool)));
   _styles_preferences_action =
     editMenu->addAction (QIcon (":/actions/icons/configure.png"),
-                         tr ("&Styles Preferences"),
+                         tr ("&Styles Preferences..."),
                          this, SLOT (request_styles_preferences (bool)));
   _menu_bar->addMenu (editMenu);