diff options
author | Nick Clifton <nickc@redhat.com> | 2011-05-18 13:52:44 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-05-18 13:52:44 +0000 |
commit | d0da06e2dfbebf62eef7a2ec510240844972dbdb (patch) | |
tree | ddb0aacfd40abb316c672c7e5ac772c6edafffd1 /gas | |
parent | 9c489990bb00f32858569d48f79ce8116e0ee050 (diff) | |
download | gdb-d0da06e2dfbebf62eef7a2ec510240844972dbdb.zip gdb-d0da06e2dfbebf62eef7a2ec510240844972dbdb.tar.gz gdb-d0da06e2dfbebf62eef7a2ec510240844972dbdb.tar.bz2 |
PR gas/12754
* config/tc-tic30.c (ordinal_names): Allow translation of the
ordinal names.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-tic30.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b6f9528..a732657 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,11 @@ 2011-05-18 Nick Clifton <nickc@redhat.com> + PR gas/12754 + * config/tc-tic30.c (ordinal_names): Allow translation of the + ordinal names. + +2011-05-18 Nick Clifton <nickc@redhat.com> + * config/tc-arm.c (s_unreq): Reword warning message to make it easier to translate. * config/tc-ia64.c (md_show_usage): Add note for translators. diff --git a/gas/config/tc-tic30.c b/gas/config/tc-tic30.c index 7dea5d7..570c833 100644 --- a/gas/config/tc-tic30.c +++ b/gas/config/tc-tic30.c @@ -34,7 +34,7 @@ static char operand_special_chars[] = "%$-+(,)*._~/<>&^!:[@]"; static char *ordinal_names[] = { - "first", "second", "third", "fourth", "fifth" + N_("first"), N_("second"), N_("third"), N_("fourth"), N_("fifth") }; const char comment_chars[] = ";"; |