changeset 20037:17d79913f065

Fix several typos in GUI strings (bug #44681). * file-editor.cc (construct): "White Spaces" => "Whitespace Characters". * settings-dialog.ui: " Normal" => "Normal". Eliminate useless space. * shortcut-manager.cc (do_init_data): "White Spaces" => "Whitespace Characters". * welcome-wizard.cc (final_page): "commnity" => "community".
author Rik <rik@octave.org>
date Wed, 01 Apr 2015 08:49:18 -0700
parents 97b37077a2d3
children c3a40003aa42
files libgui/src/m-editor/file-editor.cc libgui/src/settings-dialog.ui libgui/src/shortcut-manager.cc libgui/src/welcome-wizard.cc
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/m-editor/file-editor.cc	Tue Mar 31 21:28:55 2015 -0700
+++ b/libgui/src/m-editor/file-editor.cc	Wed Apr 01 08:49:18 2015 -0700
@@ -1447,7 +1447,7 @@
   _show_linenum_action->setCheckable (true);
 
   _show_whitespace_action = add_action (_view_editor_menu, QIcon (),
-          tr ("Show &White Spaces"), SLOT (show_white_space (bool)));
+          tr ("Show &Whitespace Characters"), SLOT (show_white_space (bool)));
   _show_whitespace_action->setCheckable (true);
 
   _show_eol_action = add_action (_view_editor_menu, QIcon (),
--- a/libgui/src/settings-dialog.ui	Tue Mar 31 21:28:55 2015 -0700
+++ b/libgui/src/settings-dialog.ui	Wed Apr 01 08:49:18 2015 -0700
@@ -128,7 +128,7 @@
                   <item>
                    <widget class="QRadioButton" name="icon_size_normal">
                     <property name="text">
-                     <string> Normal</string>
+                     <string>Normal</string>
                     </property>
                     <property name="checked">
                      <bool>true</bool>
--- a/libgui/src/shortcut-manager.cc	Tue Mar 31 21:28:55 2015 -0700
+++ b/libgui/src/shortcut-manager.cc	Wed Apr 01 08:49:18 2015 -0700
@@ -278,7 +278,7 @@
   // view
   init (tr ("Show Line Numbers"), "editor_view:show_line_numbers",
         QKeySequence ());
-  init (tr ("Show White Spaces"), "editor_view:show_white_spaces",
+  init (tr ("Show Whitespace Characters"), "editor_view:show_white_spaces",
         QKeySequence ());
   init (tr ("Show Line Endings"), "editor_view:show_eol_chars", QKeySequence ());
   init (tr ("Show Indentation Guides"), "editor_view:show_ind_guides",
--- a/libgui/src/welcome-wizard.cc	Tue Mar 31 21:28:55 2015 -0700
+++ b/libgui/src/welcome-wizard.cc	Wed Apr 01 08:49:18 2015 -0700
@@ -211,7 +211,7 @@
   message->setText
   (tr ("<html><body>\n"
        "<p>We hope you find Octave to be a useful tool.</p>\n"
-       "<p>If you encounter problems, there are a number of ways to get help, including commercial support options, a mailing list, a wiki, and other commnity-based support channels.\n"
+       "<p>If you encounter problems, there are a number of ways to get help, including commercial support options, a mailing list, a wiki, and other community-based support channels.\n"
        "You can find more information about each of these by visiting <a href=\"http://octave.org/support.html\">http://octave.org/support.html</a> (opens in external browser).</p>\n"
        "</body></html>"));
   message->setWordWrap (true);