diff options
author | Pierre Muller <muller@sourceware.org> | 2012-05-22 08:45:56 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2012-05-22 08:45:56 +0000 |
commit | 43011e5218454a59f78d74380b5072fa5e564645 (patch) | |
tree | beddc88a6046be6c49df2adab957fc1e013c1b38 | |
parent | 95bfe26e6b78a99478c0c518ac61ee12a44c1f62 (diff) | |
download | gdb-43011e5218454a59f78d74380b5072fa5e564645.zip gdb-43011e5218454a59f78d74380b5072fa5e564645.tar.gz gdb-43011e5218454a59f78d74380b5072fa5e564645.tar.bz2 |
* tracepoint.c (start_tracing): Add missing i18n markup.
(stop_tracing, set_trace_user): Ditto.
(set_trace_notes, set_trace_stop_notes): Ditto.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/tracepoint.c | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c12d3fd..8b59474 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr> + + * tracepoint.c (start_tracing): Add missing i18n markup. + (stop_tracing, set_trace_user): Ditto. + (set_trace_notes, set_trace_stop_notes): Ditto. + 2012-05-21 Tom Tromey <tromey@redhat.com> PR c++/7173: diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index b4269c6..63f66c7 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -1805,7 +1805,7 @@ start_tracing (char *notes) ret = target_set_trace_notes (trace_user, notes, NULL); if (!ret && (trace_user || notes)) - warning ("Target does not support trace user/notes, info ignored"); + warning (_("Target does not support trace user/notes, info ignored")); /* Now insert traps and begin collecting data. */ target_trace_start (); @@ -1891,7 +1891,7 @@ stop_tracing (char *note) ret = target_set_trace_notes (NULL, NULL, note); if (!ret && note) - warning ("Target does not support trace notes, note ignored"); + warning (_("Target does not support trace notes, note ignored")); /* Should change in response to reply? */ current_trace_status ()->running = 0; @@ -3201,7 +3201,7 @@ set_trace_user (char *args, int from_tty, ret = target_set_trace_notes (trace_user, NULL, NULL); if (!ret) - warning ("Target does not support trace notes, user ignored"); + warning (_("Target does not support trace notes, user ignored")); } static void @@ -3213,7 +3213,7 @@ set_trace_notes (char *args, int from_tty, ret = target_set_trace_notes (NULL, trace_notes, NULL); if (!ret) - warning ("Target does not support trace notes, note ignored"); + warning (_("Target does not support trace notes, note ignored")); } static void @@ -3225,7 +3225,7 @@ set_trace_stop_notes (char *args, int from_tty, ret = target_set_trace_notes (NULL, NULL, trace_stop_notes); if (!ret) - warning ("Target does not support trace notes, stop note ignored"); + warning (_("Target does not support trace notes, stop note ignored")); } /* Convert the memory pointed to by mem into hex, placing result in buf. |