From 4796ed0eb4b389abf08ba6025a483cffe09a4aad Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 24 Jul 2003 16:48:35 +0000 Subject: settings dialog: - localize all fields - add tips for all check boxes --- perl-install/standalone/drakperm | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'perl-install/standalone') diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm index bb14e5b6e..b051e75f5 100755 --- a/perl-install/standalone/drakperm +++ b/perl-install/standalone/drakperm @@ -235,18 +235,38 @@ sub row_setting_dialog { my $other = $s ? substr($rght,3,1) : substr($rght,2,1); my %rights = (user => $user, group => $group, other => $other); + my %rights_labels = (user => N("User"), group => N("Group"), other => N("Other")); my @check = ('', 'read', 'write', 'execute'); + + my %checks = ('read' => { + label => N("Read"), + tip => N("Enable \"%s\" to read the file"), + }, + 'write' => { + label => N("Write"), + tip => N("Enable \"%s\" to write the file"), + }, + 'execute' => { + label => N("Execute"), + tip => N("Enable \"%s\" to execute the file") + } + ); + $tips->set_tip($sticky, N("Used for directory:\n only owner of directory or file in this directory can delete it")); + $tips->set_tip($suid, N("Use owner id for execution")); + $tips->set_tip($gid, N("Use group id for execution")); + $tips->set_tip($usr_check, N("When checked, owner and group won't be changed")); - $vb_rights->add(new Gtk2::Label($_)) foreach @check; + $vb_rights->add(new Gtk2::Label($checks{$_}{label})) foreach @check; $hb_rights->add($vb_rights); foreach my $r (keys %rights) { $perms{$r} = { get_right($rights{$r}) }; - my $vbox = gtkadd(Gtk2::VBox->new(0,5), Gtk2::Label->new($r)); + my $vbox = gtkadd(Gtk2::VBox->new(0,5), Gtk2::Label->new($rights_labels{$r})); foreach my $c (@check) { $c eq '' and next; my $active = $perms{$r}{$c}; $perms{$r}{$c} = Gtk2::CheckButton->new; + $tips->set_tip($perms{$r}{$c}, N("Used for directory:\n only owner of directory or file in this directory can delete it")); $perms{$r}{$c}->set_active($active); $vbox->add($perms{$r}{$c}); } -- cgit v1.2.1