diff options
Diffstat (limited to 'src/hardware.cpp')
-rw-r--r-- | src/hardware.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hardware.cpp b/src/hardware.cpp index 92d2b36..7b1c215 100644 --- a/src/hardware.cpp +++ b/src/hardware.cpp @@ -794,9 +794,9 @@ bool HardwareInfo::suspend( suspend_type suspend ) { } } else { if ( !suspend_states.suspend2disk ) - kdDebug() << "The machine does not support suspend to disk." << endl; + kdDebug() << "The machine does not support hibernation." << endl; else - kdWarning() << "Policy forbid user to trigger suspend to disk" << endl; + kdWarning() << "Policy forbid user to trigger hibernation" << endl; return false; } @@ -813,9 +813,9 @@ bool HardwareInfo::suspend( suspend_type suspend ) { } } else { if ( !suspend_states.suspend2ram ) - kdDebug() << "The machine does not support suspend to ram." << endl; + kdDebug() << "The machine does not support Sleep mode." << endl; else - kdWarning() << "Policy forbid user to trigger suspend to ram" << endl; + kdWarning() << "Policy forbid user to trigger Sleep mode" << endl; return false; } |