~nik90/ubuntu/precise/gnome-system-monitor/keywords

« back to all changes in this revision

Viewing changes to src/procactions.cpp

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2011-12-28 14:46:35 UTC
  • mfrom: (1.1.63)
  • Revision ID: package-import@ubuntu.com-20111228144635-3sb1b3a6r2fz8cod
Tags: 3.3.3-0ubuntu1
* New upstream unstable release.
  - Shows whether OS is 32-bit or 64-bit (LP: #531762)
  - Network load default colors improved for the colorblind (LP: #485712)
  - UI streamlined (status bar removed, fewer default columns in
    processes tab, etc.)
* debian/patches/02_lpi.patch: Refreshed
* debian/watch: Watch for unstable releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
 
73
73
    /* failed */
74
74
    error_msg = g_strdup_printf (
75
 
        _("Cannot change the priority of process with pid %d to %d.\n"
 
75
        _("Cannot change the priority of process with PID %d to %d.\n"
76
76
          "%s"),
77
77
        info->pid, args->nice_value, g_strerror(saved_errno));
78
78
 
152
152
 
153
153
    /* failed */
154
154
    error_msg = g_strdup_printf (
155
 
        _("Cannot kill process with pid %d with signal %d.\n"
 
155
        _("Cannot kill process with PID %d with signal %d.\n"
156
156
          "%s"),
157
157
        info->pid, args->signal, g_strerror(saved_errno));
158
158