xref: /onnv-gate/usr/src/cmd/krb5/kadmin/gui/GuiResource.java (revision 96:4c8311d51cba)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
50Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
60Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
70Sstevel@tonic-gate  * with the License.
80Sstevel@tonic-gate  *
90Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
100Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
110Sstevel@tonic-gate  * See the License for the specific language governing permissions
120Sstevel@tonic-gate  * and limitations under the License.
130Sstevel@tonic-gate  *
140Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
150Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
160Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
170Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
180Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
190Sstevel@tonic-gate  *
200Sstevel@tonic-gate  * CDDL HEADER END
210Sstevel@tonic-gate  */
220Sstevel@tonic-gate /*
230Sstevel@tonic-gate  * ident	"%Z%%M%	%I%	%E% SMI"
240Sstevel@tonic-gate  *
25*96Ssemery  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
260Sstevel@tonic-gate  * Use is subject to license terms.
270Sstevel@tonic-gate  */
280Sstevel@tonic-gate 
290Sstevel@tonic-gate import java.util.ListResourceBundle;
300Sstevel@tonic-gate 
310Sstevel@tonic-gate public class GuiResource extends ListResourceBundle {
getContents()320Sstevel@tonic-gate     public Object[][] getContents() {
330Sstevel@tonic-gate         return contents;
340Sstevel@tonic-gate     }
350Sstevel@tonic-gate 
360Sstevel@tonic-gate     static final Object[][] contents = {
370Sstevel@tonic-gate         {"Never", "Never"},
380Sstevel@tonic-gate         {"Warning", "Warning"},
390Sstevel@tonic-gate         {"Error", "Error"},
400Sstevel@tonic-gate         {"Confirm Action", "Confirm Action"},
410Sstevel@tonic-gate         {"Principals", "Principals"},
420Sstevel@tonic-gate         {"Policies", "Policies"},
430Sstevel@tonic-gate         {"Defaults", "Defaults"},
440Sstevel@tonic-gate         {"Principal List", "Principal List"},
450Sstevel@tonic-gate         {"Policy List", "Policy List"},
460Sstevel@tonic-gate         {"Principal Basics", "Principal Basics"},
470Sstevel@tonic-gate         {"Principal Details", "Principal Details"},
480Sstevel@tonic-gate         {"Principal Flags", "Principal Flags"},
490Sstevel@tonic-gate         {"Policy Details", "Policy Details" },
500Sstevel@tonic-gate         {"Modify ", "Modify "},
510Sstevel@tonic-gate         {"New ", "New "},
520Sstevel@tonic-gate         {"Duplicate ", "Duplicate "},
530Sstevel@tonic-gate         {"- *CHANGES*", "- *CHANGES*"},
540Sstevel@tonic-gate         {"OK", "OK"},
55*96Ssemery         {"Clear", "Clear"},
560Sstevel@tonic-gate         {"New", "New"},
570Sstevel@tonic-gate         {"Please save or cancel first", "Please save or cancel first"},
580Sstevel@tonic-gate         {"Cannot find default realm; check /etc/krb5/krb5.conf",
590Sstevel@tonic-gate 	 "Cannot find default realm; check /etc/krb5/krb5.conf"},
600Sstevel@tonic-gate         {"Cannot find default server for realm",
610Sstevel@tonic-gate 	 "Cannot find default server for realm"},
620Sstevel@tonic-gate         {"A password must be specified", "A password must be specified"},
630Sstevel@tonic-gate         {"A realm entry must be specified",
640Sstevel@tonic-gate 	 "A realm entry must be specified"},
650Sstevel@tonic-gate         {"A master KDC entry must be specified",
660Sstevel@tonic-gate 	 "A master KDC entry must be specified"},
670Sstevel@tonic-gate         {"Invalid login, please try again",
680Sstevel@tonic-gate 	 "Invalid login, please try again"},
690Sstevel@tonic-gate         {"Please enter a principal name or cancel",
700Sstevel@tonic-gate 	 "Please enter a principal name or cancel"},
710Sstevel@tonic-gate         {"Please enter a password or cancel",
720Sstevel@tonic-gate 	 "Please enter a password or cancel"},
73*96Ssemery 	{"If changing the key encryption types then specify a new password"
74*96Ssemery 	 +" for the principal whose keys are being changed",
75*96Ssemery 	 "If changing the key encryption types then specify a new password"
76*96Ssemery 	 +" for the principal whose keys are being changed"},
770Sstevel@tonic-gate         {"Please enter a policy name or cancel",
780Sstevel@tonic-gate 	 "Please enter a policy name or cancel"},
790Sstevel@tonic-gate         {"Context-Sensitive Help", "Context-Sensitive Help"},
80*96Ssemery         {"Click on GUI items to get help.\n\nClick on button below to dismiss",
81*96Ssemery 	 "Click on GUI items to get help.\n\nClick on button below to dismiss"},
820Sstevel@tonic-gate         {"Principal Name:", "Principal Name:"},
830Sstevel@tonic-gate         {"Principal", "Principal"},
840Sstevel@tonic-gate         {"Password:", "Password:"},
850Sstevel@tonic-gate         {"Realm:", "Realm:"},
860Sstevel@tonic-gate         {"Master KDC:", "Master KDC:"},
870Sstevel@tonic-gate         {"Exit", "Exit"},
880Sstevel@tonic-gate         {"About", "About"},
890Sstevel@tonic-gate         {"Dismiss", "Dismiss"},
900Sstevel@tonic-gate         {"Start Over", "Start Over"},
910Sstevel@tonic-gate         {"Filter Pattern:", "Filter Pattern:"},
920Sstevel@tonic-gate         {"Clear Filter", "Clear Filter"},
930Sstevel@tonic-gate         {"Clear Name", "Clear Name"},
940Sstevel@tonic-gate         {"Modify", "Modify"},
950Sstevel@tonic-gate         {"Create New", "Create New"},
960Sstevel@tonic-gate         {"Delete", "Delete"},
970Sstevel@tonic-gate         {"Duplicate", "Duplicate"},
980Sstevel@tonic-gate         {"General", "General"},
990Sstevel@tonic-gate         {"Comments:", "Comments:"},
1000Sstevel@tonic-gate         {"Policy:", "Policy:"},
1010Sstevel@tonic-gate         {"Policy", "Policy"},
1020Sstevel@tonic-gate         {"Generate Random Password", "Generate Random Password"},
1030Sstevel@tonic-gate         {"Admin History", "Admin History"},
1040Sstevel@tonic-gate         {"Last Principal Change:", "Last Principal Change:"},
1050Sstevel@tonic-gate         {"Last Changed By:", "Last Changed By:"},
1060Sstevel@tonic-gate         {"Account Expires:", "Account Expires:"},
107*96Ssemery         {"Encryption Key Types:", "Encryption Key Types:"},
1080Sstevel@tonic-gate         {"Save", "Save"},
1090Sstevel@tonic-gate         {"Previous", "Previous"},
1100Sstevel@tonic-gate         {"Next", "Next"},
1110Sstevel@tonic-gate         {"Done", "Done"},
1120Sstevel@tonic-gate         {"Cancel", "Cancel"},
1130Sstevel@tonic-gate         {"Discard", "Discard"},
1140Sstevel@tonic-gate         {"Password", "Password"},
1150Sstevel@tonic-gate         {"Last Success:", "Last Success:"},
1160Sstevel@tonic-gate         {"Last Failure:", "Last Failure:"},
1170Sstevel@tonic-gate         {"Failure Count:", "Failure Count:"},
1180Sstevel@tonic-gate         {"Last Password Change:", "Last Password Change:"},
1190Sstevel@tonic-gate         {"Password Expires:", "Password Expires:"},
1200Sstevel@tonic-gate         {"Key Version:", "Key Version:"},
1210Sstevel@tonic-gate         {"Ticket Lifetimes", "Ticket Lifetimes"},
1220Sstevel@tonic-gate         {"Ticket", "Ticket"},
1230Sstevel@tonic-gate         {"Maximum Lifetime (seconds):",
1240Sstevel@tonic-gate 	 "Maximum Lifetime (seconds):"},
1250Sstevel@tonic-gate         {"Maximum Renewal (seconds):",
1260Sstevel@tonic-gate 	 "Maximum Renewal (seconds):"},
1270Sstevel@tonic-gate         {"Security", "Security"},
1280Sstevel@tonic-gate         {"Disable Account", "Disable Account"},
1290Sstevel@tonic-gate         {"Force Password Change", "Force Password Change"},
1300Sstevel@tonic-gate         {"Allow Postdated Tickets", "Allow Postdated Tickets"},
1310Sstevel@tonic-gate         {"Allow Forwardable Tickets", "Allow Forwardable Tickets"},
1320Sstevel@tonic-gate         {"Allow Renewable Tickets", "Allow Renewable Tickets"},
1330Sstevel@tonic-gate         {"Allow Proxiable Tickets", "Allow Proxiable Tickets"},
1340Sstevel@tonic-gate         {"Disallow Service Tickets", "Disallow Service Tickets"},
1350Sstevel@tonic-gate         {"Miscellaneous", "Miscellaneous"},
1360Sstevel@tonic-gate         {"Enforce Policy", "Enforce Policy"},
1370Sstevel@tonic-gate         {"Enable DES MD5", "Enable DES MD5"},
1380Sstevel@tonic-gate         {"Enable TGT-Based Authentication",
1390Sstevel@tonic-gate 	 "Enable TGT-Based Authentication"},
1400Sstevel@tonic-gate         {"Enable Duplicate Authentication",
1410Sstevel@tonic-gate 	 "Enable Duplicate Authentication"},
1420Sstevel@tonic-gate         {"Require Preauthentication", "Require Preauthentication"},
1430Sstevel@tonic-gate         {"Require Hardware Authentication",
1440Sstevel@tonic-gate 	 "Require Hardware Authentication"},
1450Sstevel@tonic-gate         {"Policy Name:", "Policy Name:"},
1460Sstevel@tonic-gate         {"Minimum Password Length:", "Minimum Password Length:"},
1470Sstevel@tonic-gate         {"Minimum Password Classes:", "Minimum Password Classes:"},
1480Sstevel@tonic-gate         {"Saved Password History:", "Saved Password History:"},
1490Sstevel@tonic-gate         {"Minimum Ticket Lifetime (seconds):",
1500Sstevel@tonic-gate 	 "Minimum Ticket Lifetime (seconds):"},
1510Sstevel@tonic-gate         {"Maximum Ticket Lifetime (seconds):",
1520Sstevel@tonic-gate 	 "Maximum Ticket Lifetime (seconds):"},
1530Sstevel@tonic-gate         {"Maximum Ticket Renewal (seconds):",
1540Sstevel@tonic-gate 	 "Maximum Ticket Renewal (seconds):"},
1550Sstevel@tonic-gate         {"Principals Using This Policy:", "Principals Using This Policy:"},
1560Sstevel@tonic-gate         {"Account Expiry:", "Account Expiry:"},
1570Sstevel@tonic-gate         {"Defaults for New Principals", "Defaults for New Principals"},
1580Sstevel@tonic-gate         {"Defaults for Existing Principals",
1590Sstevel@tonic-gate 	 "Defaults for Existing Principals"},
1600Sstevel@tonic-gate 
1610Sstevel@tonic-gate         {"SEAM Date/Time Helper", "SEAM Date/Time Helper"},
1620Sstevel@tonic-gate         {"Month", "Month"},
1630Sstevel@tonic-gate         {"Date", "Date"},
1640Sstevel@tonic-gate         {"Year", "Year"},
1650Sstevel@tonic-gate         {"Hour", "Hour"},
1660Sstevel@tonic-gate         {"Minute", "Minute"},
1670Sstevel@tonic-gate         {"Second", "Second"},
1680Sstevel@tonic-gate         {"Now", "Now"},
1690Sstevel@tonic-gate         {"Midnight", "Midnight"},
1700Sstevel@tonic-gate         {"Help", "Help"},
1710Sstevel@tonic-gate         {"Help for Date and Time Dialog", "Help for Date and Time Dialog"},
172*96Ssemery 
173*96Ssemery 	{"SEAM Encryption Type List Helper",
174*96Ssemery 	 "SEAM Encryption Type List Helper"},
175*96Ssemery 	{"Help for Encryption Type Dialog", "Help for Encryption Type Dialog"},
1760Sstevel@tonic-gate 
1770Sstevel@tonic-gate         {"SEAM Duration Helper", "SEAM Duration Helper"},
1780Sstevel@tonic-gate         {"Weeks", "Weeks"},
1790Sstevel@tonic-gate         {"Unit", "Unit"},
1800Sstevel@tonic-gate         {"Value", "Value"},
1810Sstevel@tonic-gate         {"Seconds", "Seconds"},
1820Sstevel@tonic-gate         {"Minutes", "Minutes"},
1830Sstevel@tonic-gate         {"Hours", "Hours"},
1840Sstevel@tonic-gate         {"Days", "Days"},
1850Sstevel@tonic-gate         {"Weeks", "Weeks"},
1860Sstevel@tonic-gate         {"Months", "Months"},
1870Sstevel@tonic-gate         {"Years", "Years"},
1880Sstevel@tonic-gate         {"=", "="},
1890Sstevel@tonic-gate         {"Help for entering time duration",
1900Sstevel@tonic-gate 	 "Help for entering time duration"},
1910Sstevel@tonic-gate 
1920Sstevel@tonic-gate         {"SEAM Print Helper", "SEAM Print Helper"},
1930Sstevel@tonic-gate         {"Print Command", "Print Command"},
1940Sstevel@tonic-gate         {"File Name", "File Name"},
1950Sstevel@tonic-gate         {"Print", "Print"},
1960Sstevel@tonic-gate         {"SEAM File Helper", "SEAM File Helper"},
1970Sstevel@tonic-gate 
1980Sstevel@tonic-gate         {"Reference Count:", "Reference Count:"},
1990Sstevel@tonic-gate         {"Minimum Password Lifetime (seconds):",
2000Sstevel@tonic-gate 	 "Minimum Password Lifetime (seconds):"},
2010Sstevel@tonic-gate         {"Maximum Password Lifetime (seconds):",
2020Sstevel@tonic-gate 	 "Maximum Password Lifetime (seconds):"},
2030Sstevel@tonic-gate         {"Password Save Count:", "Password Save Count:"},
2040Sstevel@tonic-gate 
2050Sstevel@tonic-gate         {"Flags:", "Flags:"},
2060Sstevel@tonic-gate         {"None", "None"},
2070Sstevel@tonic-gate         {"Allow Service Tickets", "Allow Service Tickets"},
2080Sstevel@tonic-gate         {"Allow TGT-Based Authentication",
2090Sstevel@tonic-gate 	 "Allow TGT-Based Authentication"},
2100Sstevel@tonic-gate         {"Allow Duplicate Authentication",
2110Sstevel@tonic-gate 	 "Allow Duplicate Authentication"},
2120Sstevel@tonic-gate         {"Allow Service Tickets", "Allow Service Tickets"},
2130Sstevel@tonic-gate         {"Require Preauthentication", "Require Preauthentication"},
2140Sstevel@tonic-gate         {"Require Hardware Preauthentication",
2150Sstevel@tonic-gate 	 "Require Hardware Preauthentication"},
2160Sstevel@tonic-gate         {"Require Password Change", "Require Password Change"},
2170Sstevel@tonic-gate         {"Disallow Service", "Disallow Service"},
2180Sstevel@tonic-gate         {"Support DES MD5", "Support DES MD5"},
2190Sstevel@tonic-gate         {"Enforce Policy", "Enforce Policy"},
2200Sstevel@tonic-gate         {"(no policy)", "(no policy)"},
2210Sstevel@tonic-gate         {"Policy name already exists. Please choose a different",
2220Sstevel@tonic-gate 	 "policy name or cancel",
2230Sstevel@tonic-gate 	 "Policy name already exists. Please choose a different",
2240Sstevel@tonic-gate 	 "policy name or cancel"},
2250Sstevel@tonic-gate         {"You are about to destroy data.",
2260Sstevel@tonic-gate 	 "You are about to destroy data."},
2270Sstevel@tonic-gate         {"You are about to lose changes.",
2280Sstevel@tonic-gate 	 "You are about to lose changes."},
2290Sstevel@tonic-gate         {"Click OK to proceed or Cancel to continue editing.",
2300Sstevel@tonic-gate 	 "Click OK to proceed or Cancel to continue editing."},
231*96Ssemery         {"Click Save to commit changes, Discard to discard changes,"
232*96Ssemery 	 +" or Cancel to continue editing.",
233*96Ssemery 	 "Click Save to commit changes, Discard to discard changes,"
234*96Ssemery 	 +" or Cancel to continue editing."},
2350Sstevel@tonic-gate         {"Unable to access lists; please use the Name field.",
2360Sstevel@tonic-gate 	 "Unable to access lists; please use the Name field."},
2370Sstevel@tonic-gate         {"About SEAM Adminstration Tool", "About SEAM Adminstration Tool"},
2380Sstevel@tonic-gate         {"Sun Enterprise Authentication Mechanism Administration Tool",
239*96Ssemery 	 "Sun Enterprise Authentication Mechanism Administration Tool"},
240*96Ssemery         {"Copyright 2005 Sun Microsystems, Inc.  All rights reserved.",
241*96Ssemery 	 "Copyright 2005 Sun Microsystems, Inc.  All rights reserved."},
242*96Ssemery 	{"Use is subject to license terms.", "Use is subject to license terms"},
2430Sstevel@tonic-gate         {"Example: ", "Example: "},
2440Sstevel@tonic-gate         {"or", "or"},
2450Sstevel@tonic-gate         {"Properties", "Properties"},
2460Sstevel@tonic-gate         {"List Controls", "List Controls"},
2470Sstevel@tonic-gate         {"Show Lists", "Show Lists"},
2480Sstevel@tonic-gate         {"Cache Lists Forever", "Cache Lists Forever"},
2490Sstevel@tonic-gate         {"List Cache Timeout (seconds):", "List Cache Timeout (seconds):"},
2500Sstevel@tonic-gate         {"Apply", "Apply"},
2510Sstevel@tonic-gate         {"Loading principal list", "Loading principal list"},
2520Sstevel@tonic-gate         {"Loading policy list", "Loading policy list"},
2530Sstevel@tonic-gate         {"File", "File"},
2540Sstevel@tonic-gate         {"Edit", "Edit"},
2550Sstevel@tonic-gate         {"Log Out", "Log Out"},
2560Sstevel@tonic-gate         {"Current Principal", "Current Principal"},
2570Sstevel@tonic-gate         {"Current Policy", "Current Policy"},
2580Sstevel@tonic-gate         {"Properties...", "Properties..."},
2590Sstevel@tonic-gate         {"Refresh", "Refresh"},
2600Sstevel@tonic-gate         {"Help Contents", "Help Contents"},
2610Sstevel@tonic-gate         {"Insufficient privileges to use gkadmin: ",
2620Sstevel@tonic-gate 	 "Insufficient privileges to use gkadmin: "},
2630Sstevel@tonic-gate         {"Please try using another principal.",
2640Sstevel@tonic-gate 	 "Please try using another principal."},
2650Sstevel@tonic-gate         {"Let the KDC control the ticket lifetime values",
2660Sstevel@tonic-gate 	 "Let the KDC control the ticket lifetime values"},
2670Sstevel@tonic-gate         {"SEAM Administration Login", "SEAM Administration Login"},
2680Sstevel@tonic-gate         {"SEAM Administration Tool", "SEAM Administration Tool"},
2690Sstevel@tonic-gate         {"Can't run /usr/dt/bin/netscape.",
2700Sstevel@tonic-gate 	 "Can't run /usr/dt/bin/netscape."},
2710Sstevel@tonic-gate         {"Invalid URL: ", "Invalid URL: "}
2720Sstevel@tonic-gate     };
2730Sstevel@tonic-gate }
274