2005-02-10 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / remote-rdp.c
index f8d9d8b77b1bdae37900d24d96cb5a8d12794171..8c9288d96ab2fbbc0525e26763d9b77d074f435d 100644 (file)
@@ -193,7 +193,7 @@ get_byte (void)
       if (timeout == 0)
        return (unsigned char) c;
 
-      error ("Timeout reading from remote_system");
+      error (_("Timeout reading from remote_system"));
     }
 
   return c;
@@ -387,7 +387,7 @@ rdp_init (int cold, int tty)
 
   if (!sync)
     {
-      error ("Couldn't reset the board, try pressing the reset button");
+      error (_("Couldn't reset the board, try pressing the reset button"));
     }
 }
 
@@ -454,10 +454,10 @@ send_rdp (char *template,...)
              printf_unfiltered ("RDP: Unimplemented message\n");
              return;
            case 255:
-             error ("Command garbled");
+             error (_("Command garbled"));
              break;
            default:
-             error ("Corrupt reply from target");
+             error (_("Corrupt reply from target"));
              break;
            }
          break;
@@ -988,7 +988,7 @@ handle_swi (void)
          break;
 
        default:
-         error ("Unimplemented SWI argument");
+         error (_("Unimplemented SWI argument"));
        }
 
       type = type >> 2;
@@ -1357,7 +1357,7 @@ remote_rdp_create_inferior (char *exec_file, char *allargs, char **env,
   CORE_ADDR entry_point;
 
   if (exec_file == 0 || exec_bfd == 0)
-    error ("No executable file specified.");
+    error (_("No executable file specified."));
 
   entry_point = (CORE_ADDR) bfd_get_start_address (exec_bfd);
 
This page took 0.026257 seconds and 4 git commands to generate.