1/**
2 ** Certificate Trust Dialogue
3 **/
4/* Authenticating to network "%@" : title in dialogue for Wi-Fi,
5 *				    argument is SSID of wireless network
6 * Authenticating to 802.1X network : title in dialogue for Ethernet
7 */
8"Authenticating to network \"%@\"" = "Authenticating to network \"%@\"";
9"Authenticating to 802.1X network" = "Authenticating to 802.1X network";
10
11/**
12 ** Name, Password, Certificate selection Dialogue
13 **/
14
15/* TitleAirPortPassword
16 * TitleAirPortCertificate
17 * TitleAirPortCertificateAndPassword
18 *   These titles are used to ask the user for a name, password, and/or
19 *   certificate on an AirPort network.   The single argument to this format
20 *   string is the SSID of the AirPort network.
21 *
22 * TitleEthernetCertificate
23 * TitleEthernetCertificateAndPassword
24 * TitleAirPortPassword
25 *   These titles are used to ask the user for a name, password, and/or
26 *   certificate on an Ethernet network.
27 */
28"TitleAirPortCertificate" = "Select a certificate for network \"%@\"";
29"TitleAirPortCertificateAndPassword" = "Select a certificate or enter a name and password for network \"%@\"";
30"TitleAirPortPassword" = "Enter a name and password for network \"%@\"";
31
32"TitleEthernetCertificate" = "Select the certificate for this 802.1X network.";
33"TitleEthernetCertificateAndPassword" = "Select the certificate or enter the name and password for this 802.1X network";
34"TitleEthernetPassword" = "Enter the name and password for this 802.1X network";
35
36/* User Name:			: label for account name field
37 * Password:			: label for the password field
38 * Cancel			: Cancel button
39 * OK				: OK button
40 * Remember information		: 'Remember this information" checkbox
41 */
42"User Name:" = "Account Name:";
43"Password:"  = "Password:";
44"Cancel" = "Cancel";
45"OK" = "OK";
46"Remember information" = "Remember this information";
47
48/*
49 * No certificate selected
50 *   In the certificate pop-up, indicates that no certificate is selected but
51 *   does not imply that a certificate is required. Used when we're prompting
52 *   for both the password and the certificate.
53 */
54"No certificate selected" = "No certificate selected";
55
56/*
57 * Select a certificate
58 *   When we're only prompting for the certificate, used to tell the user
59 *   to select a certificate, since one is required.
60 */
61"Select a certificate" = "Select a certificate";
62
63/*
64 * Account Name (optional):
65 *   Used when the dialogue is only asking for a certificate to indicate
66 *   that the account name is not required, but may be specified if it can't
67 *   be derived from the certificate.
68 */
69"Account Name (optional):" = "Account Name (optional):";
70
71/**
72 ** Password Change Dialogue
73 ** - appears if the server supports password change
74 **/
75"Your password has expired for this network" = "Your password has expired for this 802.1X network";
76"Your password has expired for network \"%@\"" = "Your password has expired for network \"%@\"";
77
78/*
79 * Old Password:		: label for old/existing password
80 * New Password:		: label for new password
81 * Retype New Password:		: label for retyped new password
82 * Change Password		: default button label
83 */
84"Old Password:" = "Old Password:";
85"New Password:" = "New Password:";
86"Retype New Password:" = "Retype New Password:";
87"Change Password" = "Change Password";
88
89
90/* error messages validating input */
91"You must enter your old password" = "You must enter your old password";
92"Your old password is incorrect" = "Your old password is incorrect";
93"Enter and retype your new password" = "Enter and retype your new password";
94"Your new password must be different than your old password" = "Your new password must be different than your old password";
95"Retype your new password" = "Retype your new password";
96"The new passwords do not match" = "The new passwords do not match";
97
98/**
99 ** Fatal Alert Dialogue
100 **/
101
102/*
103 * DISCONNECT
104 * - button label
105 */
106"DISCONNECT" = "Disconnect";
107
108/*
109 * AUTHENTICATION_FAILED
110 * - title of fatal alert for Ethernet
111 */
112"AUTHENTICATION_FAILED" = "Authentication failed on 802.1X network";
113
114/*
115 * AUTHENTICATION_FAILED_AIRPORT
116 * - title of fatal alert for Wi-Fi networks
117 * - argument to this format string is SSID of Wi-Fi network
118 */
119"AUTHENTICATION_FAILED_AIRPORT" = "Authentication failed on network \"%@\"";
120
121/*
122 * EAPOLCLIENT_FAILURE_MESSAGE_DEFAULT
123 * - non-specific failure message to indicate that something went wrong
124 */
125"EAPOLCLIENT_FAILURE_MESSAGE_DEFAULT" = "Contact your network administrator to verify your configuration settings.";
126
127/*
128 * EAPOLCLIENT_FAILURE_MESSAGE_SERVER_NOT_TRUSTED
129 * - failure message that occurs when the server's certificate was not trusted
130 */
131"EAPOLCLIENT_FAILURE_MESSAGE_SERVER_NOT_TRUSTED" = "The identity of the authentication server could not be established.  Contact your network administrator to verify your configuration settings.";
132/*
133 * EAPOLCLIENT_FAILURE_MESSAGE_AUTHENTICATION_STALLED
134 * - failure message that occurs when the authentication isn't making progress,
135 *   likely due to a RADIUS server being offline
136 */
137"EAPOLCLIENT_FAILURE_MESSAGE_AUTHENTICATION_STALLED" = "The authentication server is unresponsive. Contact your network administrator to check the network infrastructure.";
138