diff --git a/management/yastui/src/include/subdomain/profile_dialogs.ycp b/management/yastui/src/include/subdomain/profile_dialogs.ycp index c355d97c2..20dffe1ba 100644 --- a/management/yastui/src/include/subdomain/profile_dialogs.ycp +++ b/management/yastui/src/include/subdomain/profile_dialogs.ycp @@ -441,13 +441,14 @@ define symbol DisplayProfileForm(string pathname, boolean hat) { string help1 = _("In this form you can view and modify the contents of an individual profile. For existing entries you can double click the permissions to access a modification dialog.

"); - string help2 = _("Permission Definitions:
r - read
w - write
l - link
m - mmap PROT_EXEC
x - execute
i - inherit
p - discrete profile
P - discrete profile
(*clean exec)
u - unconstrained
U -unconstrained
(clean exec)

"); - string help3 = _("Add Entry:
Select the type of resource to add from the drop down list.

"); - string help4 = _("File
Add a file entry to this profile
"); - string help5 = _("Directory
Add a directory entry to this profile
"); - string help6 = _("Capability
Add a capability entry to this profile
"); - string help7 = _("Include
Add an include entry to this profile. This option includes the profile entry contents of another file in this profile at load time.
"); - string helpHat = _("Hat
Add a sub-profile for this profile - called a Hat. This option is analagous to manually creating a new profile, which can selected during execution only in the context of being asked for by a changehat aware application. For more information on changehat please see man changehat on your system or the Novell AppArmor User's Guide.

"); + string help2 = _("Permission Definitions:
r - read
w - write
l - link
m - mmap PROT_EXEC
x - execute
i - inherit
p - discrete profile
P - discrete profile
(*clean exec)
u - unconstrained
U -unconstrained
(*clean exec)

"); + string help3 = _("Add Entry:
Select the type of resource to add from the drop down list.

"); + string help4 = _("

Edit Entry:
Edit the selected entry.

"); string help8 = _("Delete Entry:
Removes the selected entry from this profile.

"); string help9 = _("*Clean Exec
The Clean Exec option for the discrete profile and unconstrained execute permissions provide added security by stripping the enviroment that is inherited by the child program of specific variables. These variables are:"); string help10 = "

"; @@ -492,11 +493,11 @@ define symbol DisplayProfileForm(string pathname, boolean hat) { string help = ""; string formtitle = ""; if ( hat ) { - help = help1 + help2 + help3 + help4 + help5 + help6 + help7 + help8 + help9 + help10; - formtitle = "AppArmor Hat Dialog"; + help = help1 + help2 + help3 + help4 + help5 + help6 + help7 + help8 + helpEdit + help9 + help10; + formtitle = _("AppArmor Hat Dialog"); } else { - help = help1 + help2 + help3 + help4 + help5 + help6 + help7 + helpHat + help8 + help9 + help10; - formtitle = "AppArmor Profile Dialog"; + help = help1 + help2 + help3 + help4 + help5 + help6 + help7 + helpHat + helpEdit + help8 + help9 + help10; + formtitle = _("AppArmor Profile Dialog"); } Wizard::SetContentsButtons( formtitle, contents_main_profile_form, help, "Back", _("&Done") );