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/procactions.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/procactions.cpp')
-rw-r--r-- | src/procactions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/procactions.cpp b/src/procactions.cpp index a01c150..a8f3d61 100644 --- a/src/procactions.cpp +++ b/src/procactions.cpp @@ -72,7 +72,7 @@ renice_single_process (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter /* failed */ error_msg = g_strdup_printf ( - _("Cannot change the priority of process with pid %d to %d.\n" + _("Cannot change the priority of process with PID %d to %d.\n" "%s"), info->pid, args->nice_value, g_strerror(saved_errno)); @@ -152,7 +152,7 @@ kill_single_process (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, /* failed */ error_msg = g_strdup_printf ( - _("Cannot kill process with pid %d with signal %d.\n" + _("Cannot kill process with PID %d with signal %d.\n" "%s"), info->pid, args->signal, g_strerror(saved_errno)); |