]> err.no Git - util-linux/commitdiff
hwclock: several strings without gettext calls
authorPedro Ribeiro <p.m42.ribeiro@gmail.com>
Fri, 3 Oct 2008 06:57:43 +0000 (08:57 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 3 Oct 2008 06:57:43 +0000 (08:57 +0200)
Signed-off-by: Pedro Ribeiro <p.m42.ribeiro@gmail.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
hwclock/cmos.c
hwclock/hwclock.c

index ca3ca61ed8dfbcfd5c00cb67bb1b7b53462e1060..c45a5045e8b4c9c47462f04719d7e886a044d416 100644 (file)
@@ -291,10 +291,10 @@ unsigned long cmos_read(unsigned long reg)
     unsigned char v = reg | 0x80;
     lseek(dev_port_fd, clock_ctl_addr, 0);
     if (write(dev_port_fd, &v, 1) == -1 && debug)
-      printf("cmos_read(): write to control address %X failed: %s\n", clock_ctl_addr, strerror(errno));
+      printf(_("cmos_read(): write to control address %X failed: %s\n"), clock_ctl_addr, strerror(errno));
     lseek(dev_port_fd, clock_data_addr, 0);
     if (read(dev_port_fd, &v, 1) == -1 && debug)
-      printf("cmos_read(): read data address %X failed: %s\n", clock_data_addr, strerror(errno));
+      printf(_("cmos_read(): read data address %X failed: %s\n"), clock_data_addr, strerror(errno));
     return v;
   } else {
     /* We only want to read CMOS data, but unfortunately
@@ -325,11 +325,11 @@ unsigned long cmos_write(unsigned long reg, unsigned long val)
     unsigned char v = reg | 0x80;
     lseek(dev_port_fd, clock_ctl_addr, 0);
     if (write(dev_port_fd, &v, 1) == -1 && debug)
-      printf("cmos_write(): write to control address %X failed: %s\n", clock_ctl_addr, strerror(errno));
+      printf(_("cmos_write(): write to control address %X failed: %s\n"), clock_ctl_addr, strerror(errno));
     v = (val & 0xff);
     lseek(dev_port_fd, clock_data_addr, 0);
     if (write(dev_port_fd, &v, 1) == -1 && debug)
-      printf("cmos_write(): write to data address %X failed: %s\n", clock_data_addr, strerror(errno));
+      printf(_("cmos_write(): write to data address %X failed: %s\n"), clock_data_addr, strerror(errno));
   } else {
     outb (reg, clock_ctl_addr);
     outb (val, clock_data_addr);
index 48b47ade88fa1ececa3930bf15c9e35615fde513..2749c0fc7b7a7b11e57aa93c10758eb43b553b19 100644 (file)
@@ -922,18 +922,18 @@ save_adjtime(const struct adjtime adjtime, const bool testing) {
 
       adjfile = fopen(adj_file_name, "w");
       if (adjfile == NULL) {
-        outsyserr("Could not open file with the clock adjustment parameters "
-               "in it (%s) for writing", adj_file_name);
+        outsyserr(_("Could not open file with the clock adjustment parameters "
+               "in it (%s) for writing"), adj_file_name);
        err = 1;
       } else {
         if (fputs(newfile, adjfile) < 0) {
-         outsyserr("Could not update file with the clock adjustment "
-                   "parameters (%s) in it", adj_file_name);
+         outsyserr(_("Could not update file with the clock adjustment "
+                   "parameters (%s) in it"), adj_file_name);
          err = 1;
         }
         if (fclose(adjfile) < 0) {
-          outsyserr("Could not update file with the clock adjustment "
-                   "parameters (%s) in it", adj_file_name);
+          outsyserr(_("Could not update file with the clock adjustment "
+                   "parameters (%s) in it"), adj_file_name);
          err = 1;
         }
       }
@@ -987,8 +987,8 @@ do_adjustment(struct adjtime *adjtime_p,
     adjtime_p->dirty = TRUE;
   } else if (adjtime_p->last_adj_time == 0) {
     if (debug)
-      printf("Not setting clock because last adjustment time is zero, "
-            "so history is bad.");
+      printf(_("Not setting clock because last adjustment time is zero, "
+            "so history is bad."));
   } else {
     int adjustment;
     /* Number of seconds we must insert in the Hardware Clock */