summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakperm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-08-08 23:46:45 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-08-08 23:46:45 +0000
commit2b411c42edcfb0b01a5c2428f24603452e93f655 (patch)
tree0e2e4ac8cf7c77533d4b81562730e98279e83632 /perl-install/standalone/drakperm
parent7f81a1ec871ffd2a807cdead33bc4cb3dd626248 (diff)
downloaddrakx-2b411c42edcfb0b01a5c2428f24603452e93f655.tar
drakx-2b411c42edcfb0b01a5c2428f24603452e93f655.tar.gz
drakx-2b411c42edcfb0b01a5c2428f24603452e93f655.tar.bz2
drakx-2b411c42edcfb0b01a5c2428f24603452e93f655.tar.xz
drakx-2b411c42edcfb0b01a5c2428f24603452e93f655.zip
(row_setting_dialog) add hints for translators
Diffstat (limited to 'perl-install/standalone/drakperm')
-rwxr-xr-xperl-install/standalone/drakperm15
1 files changed, 12 insertions, 3 deletions
diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm
index 894011632..4a9731d10 100755
--- a/perl-install/standalone/drakperm
+++ b/perl-install/standalone/drakperm
@@ -253,15 +253,24 @@ sub row_setting_dialog {
my %rights_labels = (user => N("User"), group => N("Group"), other => N("Other"));
my %checks = ('read' => {
label => N("Read"),
- tip => { map { $_ => N("Enable \"%s\" to read the file", translate($_)) } keys %rights },
+ tip => { map { $_ =>
+ #-PO: here %s will be either "user", "group" or "other"
+ N("Enable \"%s\" to read the file", translate($_))
+ } keys %rights },
},
'write' => {
label => N("Write"),
- tip => { map { $_ => N("Enable \"%s\" to write the file", translate($_)) } keys %rights },
+ tip => { map { $_ =>
+ #-PO: here %s will be either "user", "group" or "other"
+ N("Enable \"%s\" to write the file", translate($_))
+ } keys %rights },
},
'execute' => {
label => N("Execute"),
- tip => { map { $_ => N("Enable \"%s\" to execute the file", translate($_)) } keys %rights },
+ tip => { map { $_ =>
+ #-PO: here %s will be either "user", "group" or "other"
+ N("Enable \"%s\" to execute the file", translate($_))
+ } keys %rights },
},
sticky => { label => N("Sticky-bit"), tip => N("Used for directory:\n only owner of directory or file in this directory can delete it") },
suid => { label => N("Set-UID"), tip => N("Use owner id for execution") },