diff options
Diffstat (limited to 'src/dummy.cpp')
-rw-r--r-- | src/dummy.cpp | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/dummy.cpp b/src/dummy.cpp index 4db9268..bd3f2f9 100644 --- a/src/dummy.cpp +++ b/src/dummy.cpp @@ -24,13 +24,13 @@ * \date 2007 */ -#include <qstring.h> +#include <tqstring.h> #include <klocale.h> class dummy { dummy() { - QString dummy; + TQString dummy; // from configuredialog.cpp: dummy = i18n("If the current desktop user is inactive, dim the display to:"); @@ -57,20 +57,20 @@ class dummy { dummy = i18n("activated"); dummy = i18n("deactivated"); dummy = i18n("do nothing"); - dummy = i18n("Deactivate following devices:"); - dummy = i18n("Activate following devices"); - dummy = i18n("Reactivate following devices"); - dummy = i18n("Deactivate following device classes:"); - dummy = i18n("Activate following devices classes"); - dummy = i18n("Reactivate following device classes"); - dummy = i18n("If the scheme switched all devices are again activated."); + dummy = i18n("Deactivate following tqdevices:"); + dummy = i18n("Activate following tqdevices"); + dummy = i18n("Reactivate following tqdevices"); + dummy = i18n("Deactivate following tqdevice classes:"); + dummy = i18n("Activate following tqdevices classes"); + dummy = i18n("Reactivate following tqdevice classes"); + dummy = i18n("If the scheme switched all tqdevices are again activated."); dummy = i18n("This is a experimental feature."); dummy = i18n("If you have problems with this feature, please report them."); - dummy = i18n("Select one of the available devices and click on "); - dummy = i18n("Select one of the available device classes and click on "); - dummy = i18n("Select one or more of the available devices and click on "); - dummy = i18n("Select one or more of the available device classes and click on "); - dummy = i18n("Please note: If you e.g. deactivate a network device you may lose your " + dummy = i18n("Select one of the available tqdevices and click on "); + dummy = i18n("Select one of the available tqdevice classes and click on "); + dummy = i18n("Select one or more of the available tqdevices and click on "); + dummy = i18n("Select one or more of the available tqdevice classes and click on "); + dummy = i18n("Please note: If you e.g. deactivate a network tqdevice you may lose your " "internet connection."); dummy = i18n("<b>Note:</b> If you select this option, the computer will suspend or standby " "if the current user is inactive for the defined time. <br><br> This feature " @@ -92,11 +92,11 @@ class dummy { // for kpowersave.cpp: dummy = i18n("Cannot connect to D-Bus. The D-Bus daemon may not be running."); - dummy = i18n("Scheme switched to %1. \n Deactivate following devices: %2").arg("").arg(""); - dummy = i18n("Scheme switched to %1. \n Activate following devices: %2").arg("").arg(""); + dummy = i18n("Scheme switched to %1. \n Deactivate following tqdevices: %2").tqarg("").tqarg(""); + dummy = i18n("Scheme switched to %1. \n Activate following tqdevices: %2").tqarg("").tqarg(""); dummy = i18n("Report ..."); dummy = i18n("Suspend to RAM is not supported on your machine."); - dummy = i18n("Additionally, please mail the output of %1 to %2 . Thanks!").arg("").arg(""); + dummy = i18n("Additionally, please mail the output of %1 to %2 . Thanks!").tqarg("").tqarg(""); dummy = i18n("Power consumption"); // for screen.cpp @@ -116,12 +116,12 @@ class dummy { dummy = i18n("Session active:"); // for countdowndialog.cpp - dummy = i18n("The display get dimmed down to %1% in: ").arg(30); + dummy = i18n("The display get dimmed down to %1% in: ").tqarg(30); // other ConsoleKit related stuff - dummy = i18n("Could not call %1. The current desktop session is not active.").arg(""); - dummy = i18n("Could not set %1. The current desktop session is not active.").arg(""); - dummy = i18n("Stopped %1. The current desktop session is now inactive.").arg(""); - dummy = i18n("Restarted %1. The current desktop session is now active again.").arg(""); + dummy = i18n("Could not call %1. The current desktop session is not active.").tqarg(""); + dummy = i18n("Could not set %1. The current desktop session is not active.").tqarg(""); + dummy = i18n("Stopped %1. The current desktop session is now inactive.").tqarg(""); + dummy = i18n("Restarted %1. The current desktop session is now active again.").tqarg(""); } }; |