bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#18054: Problematic translation strings in coreutils 8.22‏


From: Eric Blake
Subject: bug#18054: Problematic translation strings in coreutils 8.22‏
Date: Fri, 18 Jul 2014 19:41:32 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0

On 07/18/2014 03:48 PM, Sebastian Rasmussen wrote:

>  
>    if ((uid_set (uid) || groups) && setgroups (n_gids, gids) != 0)
>      error (EXIT_CANCELED, errno, _("failed to %s supplemental groups"),
> -           gids ? "set" : "clear");
> +           gids ? _("set") : _("clear"));

This is not good; there may be languages where the translation context
around "set" is different than around "clear".  Better is:

error (EXIT_CANCELED, errno,
       gids ? _("failed to set supplemental groups") :
           _("failed to clear supplemental groups"));

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]