diff options
author | Matt Wilson <msw@redhat.com> | 2001-03-07 16:24:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-03-07 16:24:13 +0000 |
commit | 24394effa38fa21cef8e7c31855f17e5a57b26bc (patch) | |
tree | b798cbbacfc9115466b065f563696310ac0e13eb /gnome-map | |
parent | f37142c15140db161f058a859b7fb546fcae9cfe (diff) | |
download | anaconda-24394effa38fa21cef8e7c31855f17e5a57b26bc.tar.gz anaconda-24394effa38fa21cef8e7c31855f17e5a57b26bc.tar.xz anaconda-24394effa38fa21cef8e7c31855f17e5a57b26bc.zip |
1) mark timezone comments for translation (#30869) (po/Makefile)
2) use them in the timezone widget (gnome-map/timezonemapmodule.c)
3) mark languages for translation (#30865) (po/Makefile)
4) use them in installtime language selection (iw/language_gui.py)
5) ran make update-po on po files to pull in empty translations
Diffstat (limited to 'gnome-map')
-rw-r--r-- | gnome-map/timezonemapmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnome-map/timezonemapmodule.c b/gnome-map/timezonemapmodule.c index 0eb7a3d23..f5619ff37 100644 --- a/gnome-map/timezonemapmodule.c +++ b/gnome-map/timezonemapmodule.c @@ -351,12 +351,12 @@ set_hilited (MapData *mapdata, gint index, double item_x, double item_y) gtk_statusbar_pop (GTK_STATUSBAR (mapdata->statusbar), 1); newstr = (char *) malloc (strlen (_(loc->zone)) + strlen (sep) + - ((loc->comment) ? strlen (loc->comment) : 0) + 1); + ((loc->comment) ? strlen (_(loc->comment)) : 0) + 1); strcpy (newstr, _(loc->zone)); if (loc->comment) { strcat (newstr, sep); - strcat (newstr, loc->comment); + strcat (newstr, _(loc->comment)); } gtk_statusbar_push (GTK_STATUSBAR (mapdata->statusbar), 1, newstr); @@ -659,7 +659,7 @@ create_location_list (MapData *mapdata) continue; row[0] = _(loc->zone); - row[1] = loc->comment; + row[1] = _(loc->comment); newrow = gtk_clist_append (GTK_CLIST (mapdata->locationlist), row); gtk_clist_set_row_data (GTK_CLIST (mapdata->locationlist), newrow, GINT_TO_POINTER (i)); |