diff options
author | infirit <[email protected]> | 2014-12-18 16:29:12 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-18 16:29:12 +0100 |
commit | 61a40499507138fd1620475487c1b6772be3e37a (patch) | |
tree | 7fcc768a9ba4d90d24362aaeebd4a9d273570ee1 /src/procdialogs.cpp | |
parent | 3d122e030b4b139ec563de4e0d16a2bceb0a9bf9 (diff) | |
download | mate-system-monitor-61a40499507138fd1620475487c1b6772be3e37a.tar.bz2 mate-system-monitor-61a40499507138fd1620475487c1b6772be3e37a.tar.xz |
Various small string fixes.
Mostly capitalisation fixes, but there are some spelling fixes, and
three strings which have had markup removed. One string has been
changed from using an ASCII ellipsis to a Unicode one.
Taken from GSM commit: f727cae54fc8410ecb3c2c4c4f901b754f418a7a
From: Philip Withnall <[email protected]>
Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=616794
Diffstat (limited to 'src/procdialogs.cpp')
-rw-r--r-- | src/procdialogs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/procdialogs.cpp b/src/procdialogs.cpp index d89295a..e44fd20 100644 --- a/src/procdialogs.cpp +++ b/src/procdialogs.cpp @@ -73,7 +73,7 @@ procdialog_create_kill_dialog (ProcData *procdata, int signal) /*xgettext: secondary alert message*/ secondary = _("Killing a process may destroy data, break the " "session or introduce a security risk. " - "Only unresponding processes should be killed."); + "Only unresponsive processes should be killed."); button_text = _("_Kill Process"); } else { @@ -84,7 +84,7 @@ procdialog_create_kill_dialog (ProcData *procdata, int signal) /*xgettext: secondary alert message*/ secondary = _("Ending a process may destroy data, break the " "session or introduce a security risk. " - "Only unresponding processes should be ended."); + "Only unresponsive processes should be ended."); button_text = _("_End Process"); } @@ -753,7 +753,7 @@ procdialog_create_preferences_dialog (ProcData *procdata) hbox2 = gtk_hbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (vbox2), hbox2, FALSE, FALSE, 0); - check_button = gtk_check_button_new_with_mnemonic (_("Show _all filesystems")); + check_button = gtk_check_button_new_with_mnemonic (_("Show _all file systems")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_button), procdata->config.show_all_fs); g_signal_connect (G_OBJECT (check_button), "toggled", |