Mercurial > hg > octave-nkf
comparison libgui/src/m-editor/file-editor.cc @ 17935:752f6b358754
Tweak GUI strings for conformity.
* libgui/src/files-dock-widget.cc, libgui/src/history-dock-widget.cc:
Use "Double-click" instead of "Doubleclick".
* libgui/src/m-editor/file-editor.cc: Capitalize breakpoint in menu items.
* libgui/src/main-window.cc: Consistently capitalize first letter of all words
in menus.
* libgui/src/settings-dialog.ui: Capitalize only first letter of options in
preferences dialog.
* libgui/src/welcome-wizard.cc: Rephrase wizard screen.
author | Rik <rik@octave.org> |
---|---|
date | Sun, 10 Nov 2013 16:10:19 -0800 |
parents | dcf7282a0401 |
children | 9799a996b2c1 |
comparison
equal
deleted
inserted
replaced
17934:929c95b33eae | 17935:752f6b358754 |
---|---|
913 _remove_bookmark_action | 913 _remove_bookmark_action |
914 = new QAction (tr ("&Remove All Bookmarks"), _tool_bar); | 914 = new QAction (tr ("&Remove All Bookmarks"), _tool_bar); |
915 | 915 |
916 QAction *next_breakpoint_action | 916 QAction *next_breakpoint_action |
917 = new QAction (QIcon (":/actions/icons/bp_next.png"), | 917 = new QAction (QIcon (":/actions/icons/bp_next.png"), |
918 tr ("&Next breakpoint"), _tool_bar); | 918 tr ("&Next Breakpoint"), _tool_bar); |
919 QAction *previous_breakpoint_action | 919 QAction *previous_breakpoint_action |
920 = new QAction (QIcon (":/actions/icons/bp_prev.png"), | 920 = new QAction (QIcon (":/actions/icons/bp_prev.png"), |
921 tr ("Pre&vious breakpoint"), _tool_bar); | 921 tr ("Pre&vious Breakpoint"), _tool_bar); |
922 QAction *toggle_breakpoint_action | 922 QAction *toggle_breakpoint_action |
923 = new QAction (QIcon (":/actions/icons/bp_toggle.png"), | 923 = new QAction (QIcon (":/actions/icons/bp_toggle.png"), |
924 tr ("Toggle &breakpoint"), _tool_bar); | 924 tr ("Toggle &Breakpoint"), _tool_bar); |
925 QAction *remove_all_breakpoints_action | 925 QAction *remove_all_breakpoints_action |
926 = new QAction (QIcon (":/actions/icons/bp_rm_all.png"), | 926 = new QAction (QIcon (":/actions/icons/bp_rm_all.png"), |
927 tr ("&Remove All breakpoints"), _tool_bar); | 927 tr ("&Remove All Breakpoints"), _tool_bar); |
928 | 928 |
929 _comment_selection_action | 929 _comment_selection_action |
930 = new QAction (tr ("&Comment"), _tool_bar); | 930 = new QAction (tr ("&Comment"), _tool_bar); |
931 _uncomment_selection_action | 931 _uncomment_selection_action |
932 = new QAction (tr ("&Uncomment"), _tool_bar); | 932 = new QAction (tr ("&Uncomment"), _tool_bar); |
933 | 933 |
934 _find_action = new QAction (QIcon (":/actions/icons/search.png"), | 934 _find_action = new QAction (QIcon (":/actions/icons/search.png"), |
935 tr ("&Find and Replace"), _tool_bar); | 935 tr ("&Find and Replace"), _tool_bar); |
936 | 936 |
937 _run_action = new QAction (QIcon (":/actions/icons/artsbuilderexecute.png"), | 937 _run_action = new QAction (QIcon (":/actions/icons/artsbuilderexecute.png"), |
938 tr ("Save File And Run"), _tool_bar); | 938 tr ("Save File and Run"), _tool_bar); |
939 | 939 |
940 _goto_line_action = new QAction (tr ("Go&to Line"), _tool_bar); | 940 _goto_line_action = new QAction (tr ("Go&to Line"), _tool_bar); |
941 | 941 |
942 // the mru-list and an empty array of actions | 942 // the mru-list and an empty array of actions |
943 QSettings *settings = resource_manager::get_settings (); | 943 QSettings *settings = resource_manager::get_settings (); |