30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# File '../../src/include/samba-client/helps.rb', line 30
def initialize_samba_client_helps(include_target)
textdomain "samba-client"
@HELPS = {
"read" => _(
"<p><b><big>Initializing Samba Client Configuration</big></b><br>\n</p>\n"
) +
_(
"<p><b><big>Aborting the Initialization</big></b><br>\nSafely abort the configuration utility by pressing <b>Abort</b>.</p>\n"
),
"write" => _(
"<p><b><big>Saving Samba Client Configuration</big></b><br>\n</p>\n"
) +
_(
"<p><b><big>Aborting Saving</big></b><br>\n" +
"Abort the save procedure by pressing <b>Abort</b>.\n" +
"An additional dialog informs you whether it is safe to do so.\n" +
"</p>\n"
),
"MembershipDialog_nocont" => _(
"<p><b><big>Selecting Windows Domain Membership</big></b></p>"
) +
_(
"<p>A Linux client can be a member of a workgroup, NT domain, or Active Directory domain.\nSpecify the name of the membership.</p>\n"
) +
_(
"<p><b>Use SMB Information for Linux Authentication</b> allows \nverification of passwords with the NT server or the Kerberos server if joining an AD domain.</p>\n"
) +
_(
"<p>Check <b>Change primary DNS suffix</b> to add your AD server into the list of name servers.\nThis option is only available for static network setups.</p>"
) +
_(
"<p>When you press <b>OK</b>, the system verifies the membership and,\nif it is a NT or Active Directory domain, allows this host to join the domain.</p>\n"
),
"MembershipDialog_cont" => _(
"<p><b><big>Selecting Windows Domain Membership</big></b></p>"
) +
_("<p>Specify the name of the NT or Active Directory domain.</p>\n") +
_(
"<p>When you press <b>Next</b>, the system verifies the domain and\nallows this host to join the domain.</p>\n"
),
"MembershipDialog_common" => _(
"<p>Check <b>Create Home Directory on Login</b> to have local home directories created on the first login.</p>"
) +
_(
"<p><b>Offline Authentication</b> enables the user to log in even if there is no connection to the domain controller. For this option to work, you must log in to your domain at least once. The user's credentials are then stored encrypted on your computer and are reused for a domain login when no connection to the domain controller can be established. This is especially useful for mobile users."
) +
_(
"<p>Click <b>Expert Settings</b> to enable advanced features such as WINS options or mounting server home directories from Active Directory domains.</p>"
),
"MembershipDialog_config" => _(
"<p><b>Join Settings</b></p>"
) +
_(
"<p>Set the <b>Username</b> and <b>Password</b> that should be used for joining\nthe selected domain during autoinstallation. Note that the password will be saved to the profile in cleartext (unencrypted) form.</p>"
) +
_(
"<p>Specify the <b>Active Directory Server</b> to use for joining an Active Directory domain. This is also used as the value for KDC in the Kerberos configuration.</p>"
),
"MembershipDialog_NTP" => _(
"<p>\n" +
"To synchronize your time with an NTP server, configure your computer\n" +
"as an NTP client. Access the configuration with <b>NTP Configuration</b>.\n" +
"</p>\n"
)
}
end
|