aboutsummaryrefslogtreecommitdiff
path: root/devices/ahci.cpp
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2011-01-02 10:48:25 -0800
committerArjan van de Ven <arjan@linux.intel.com>2011-01-02 10:48:25 -0800
commit2aa2cfef3386e3271f7f928decc3c2d95eb19401 (patch)
treed3f77c8d10139e349bdad8838fbb76448eb0cf1b /devices/ahci.cpp
parent37b44398fadab0d5a3a085bd037521ea8fba27b4 (diff)
downloadpowertop-2aa2cfef3386e3271f7f928decc3c2d95eb19401.tar.gz
more translatable strings
Diffstat (limited to 'devices/ahci.cpp')
-rw-r--r--devices/ahci.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/devices/ahci.cpp b/devices/ahci.cpp
index 1c38e05..510715a 100644
--- a/devices/ahci.cpp
+++ b/devices/ahci.cpp
@@ -134,9 +134,9 @@ ahci::ahci(char *_name, char *path)
diskname = model_name(path, _name);
if (strlen(diskname.c_str()) == 0)
- sprintf(humanname, "SATA link: %s", _name);
+ sprintf(humanname, _("SATA link: %s"), _name);
else
- sprintf(humanname, "SATA disk: %s", diskname.c_str());
+ sprintf(humanname, _("SATA disk: %s"), diskname.c_str());
}