Am Freitag, den 07.03.2008, 21:17 +0100 schrieb Christian Kellner:
> > 1 - Translate cd media names, like N_("Blank CD-ROM Disc"):
> I have an update version of the first patch. We didnt use the
> correct gettext version for it and forgot about another location.
> Sebastien Bacher spotted the error and confirmed it works.
> 
> Good to commit?

yes. approval 1 of 2.

andre


> Index: hal/ghalmount.c
> ===================================================================
> --- hal/ghalmount.c   (revision 1611)
> +++ hal/ghalmount.c   (working copy)
> @@ -209,9 +209,9 @@
>      }
>    
>    if (is_blank)
> -    return gettext(disc_data[n].ui_name_blank);
> +    return dgettext (GETTEXT_PACKAGE, disc_data[n].ui_name_blank);
>    else
> -    return gettext(disc_data[n].ui_name);
> +    return dgettext (GETTEXT_PACKAGE, disc_data[n].ui_name);
>  }
>  
>  typedef struct _MountIconSearchData
> Index: hal/ghalvolume.c
> ===================================================================
> --- hal/ghalvolume.c  (revision 1611)
> +++ hal/ghalvolume.c  (working copy)
> @@ -184,9 +184,9 @@
>      }
>    
>    if (is_blank)
> -    return disc_data[n].ui_name_blank;
> +    return dgettext (GETTEXT_PACKAGE, disc_data[n].ui_name_blank);
>    else
> -    return disc_data[n].ui_name;
> +    return dgettext (GETTEXT_PACKAGE, disc_data[n].ui_name);
>  }
> 
> _______________________________________________
> release-team mailing list
> [EMAIL PROTECTED]
> http://mail.gnome.org/mailman/listinfo/release-team
-- 
 mailto:[EMAIL PROTECTED] | failed
 http://www.iomc.de/  | http://blogs.gnome.org/aklapper

Attachment: signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil

_______________________________________________
gnome-vfs-list mailing list
gnome-vfs-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-vfs-list

Reply via email to