Module: Yast::SambaClientHelpsInclude

Defined in:
../../src/include/samba-client/helps.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) initialize_samba_client_helps(include_target)



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"

  # All helps are here
  @HELPS = {
    # Read dialog help 1/2
    "read"                    => _(
      "<p><b><big>Initializing Samba Client Configuration</big></b><br>\n</p>\n"
    ) +
      # Read dialog help 2/2
      _(
        "<p><b><big>Aborting the Initialization</big></b><br>\nSafely abort the configuration utility by pressing <b>Abort</b>.</p>\n"
      ),
    # Write dialog help 1/2
    "write"                   => _(
      "<p><b><big>Saving Samba Client Configuration</big></b><br>\n</p>\n"
    ) +
      # Write dialog help 2/2
      _(
        "<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"
      ),
    # translators: Samba workgroup dialog help title
    "MembershipDialog_nocont" => _(
      "<p><b><big>Selecting Windows Domain Membership</big></b></p>"
    ) +
      # translators: Samba workgroup dialog help 1/3
      _(
        "<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"
      ) +
      # Samba role dialog help 2/3
      _(
        "<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"
      ) +
      # Samba role dialog help 2.5/3
      _(
        "<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>"
      ) +
      # Samba role dialog help 3/3
      _(
        "<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"
      ),
    # translators: Samba membership dialog help title (installation)
    "MembershipDialog_cont"   => _(
      "<p><b><big>Selecting Windows Domain Membership</big></b></p>"
    ) +
      # translators: Samba membership dialog help 1/2 (installation)
      _("<p>Specify the name of the NT or Active Directory domain.</p>\n") +
      # translators: Samba membership dialog help 2/2 (installation)
      _(
        "<p>When you press <b>Next</b>, the system verifies the domain and\nallows this host to join the domain.</p>\n"
      ),
    # Samba membership dialog help (common part 1/4)
    "MembershipDialog_common" => _(
      "<p>Check <b>Create Home Directory on Login</b> to have local home directories created on the first login.</p>"
    ) +
      # Samba membership dialog help (common part 2/4)
      _(
        "<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."
      ) +
      # Samba membership dialog help (common part)
      _(
        "<p>Click <b>Expert Settings</b> to enable advanced features such as WINS options or mounting server home directories from Active Directory domains.</p>"
      ),
    # Samba membership dialog - additional help for autoyast config
    "MembershipDialog_config" => _(
      "<p><b>Join Settings</b></p>"
    ) +
      # Samba membership dialog - additional help for autoyast config
      _(
        "<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>"
      ) +
      # Samba membership dialog - additional help for autoyast config
      _(
        "<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>"
      ),
    # Samba membership dialog - additional help for possible NTP configuration
    "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"
    )
  } 

  # EOF
end