diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-29 08:57:07 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-29 08:57:07 +0000 |
commit | e9273c1fe56a9e83207020780e5dcf7750715166 (patch) | |
tree | 55ced5ee6bb67ecd75ca78396f2fe3fcf280dc72 /perl-install/standalone | |
parent | 202b800e2038c173587f52d1435dbb036757ab34 (diff) | |
download | drakx-e9273c1fe56a9e83207020780e5dcf7750715166.tar drakx-e9273c1fe56a9e83207020780e5dcf7750715166.tar.gz drakx-e9273c1fe56a9e83207020780e5dcf7750715166.tar.bz2 drakx-e9273c1fe56a9e83207020780e5dcf7750715166.tar.xz drakx-e9273c1fe56a9e83207020780e5dcf7750715166.zip |
translate columns' headers
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakroam | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/standalone/drakroam b/perl-install/standalone/drakroam index 0a4cccab7..494fedf40 100755 --- a/perl-install/standalone/drakroam +++ b/perl-install/standalone/drakroam @@ -134,11 +134,11 @@ $ScanEntry->set_width_chars(4); $ScanEntry->set_text($ScanInterval); $KnownList = Gtk2::SimpleList->new( - "ESSID" => "text", - "Mode" => "text", - "Channel" => "text", - "DHCP" => "bool", - "Key" => "text" + N("ESSID") => "text", + N("Mode") => "text", + N("Channel") => "text", + N("DHCP") => "bool", + N("Key") => "text" ); $KnownList->get_selection->set_mode('single'); $KnownList->set_reorderable(1); |