[CentOS] Setting a different LANG variable for a single GTK application?

Mon May 15 14:29:51 UTC 2006
William (Bill) Triest <wtriest at chemistry.ohio-state.edu>

Maybe I'm missing something, but LANG=fr_FR gtkcdlabel won't work in csh 
while /bin/env LANG=fr_FR gtkcdlabel will so I think that was the point 
of using env

--Bill

John Allen wrote:
> On Mon 15 May 2006 15:18, Paul Heinlein wrote:
>   
>> On Mon, 15 May 2006, Niki Kovacs wrote:
>>     
>>> The problem is now including this workaround in the corresponding
>>> .desktop menu entry in /usr/share/applications. When I try to
>>> replace
>>>
>>> Exec=gtkcdlabel
>>>
>>> by
>>>
>>> Exec='LANG=fr_FR && gtkcdlabel'
>>>
>>> ... GNOME complains about an error.
>>>       
>> This is what env(1) is intended to address:
>>
>>    Exec='/bin/env LANG=fr_FR gtkcdlabel'
>>     
>
> All you should need is
>
> LANG=fr_FR gtkcdlabel
>
>