1*0Sstevel@tonic-gate /* 2*0Sstevel@tonic-gate * CDDL HEADER START 3*0Sstevel@tonic-gate * 4*0Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*0Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*0Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*0Sstevel@tonic-gate * with the License. 8*0Sstevel@tonic-gate * 9*0Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*0Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*0Sstevel@tonic-gate * See the License for the specific language governing permissions 12*0Sstevel@tonic-gate * and limitations under the License. 13*0Sstevel@tonic-gate * 14*0Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*0Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*0Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*0Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*0Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*0Sstevel@tonic-gate * 20*0Sstevel@tonic-gate * CDDL HEADER END 21*0Sstevel@tonic-gate */ 22*0Sstevel@tonic-gate /* 23*0Sstevel@tonic-gate * ident "%Z%%M% %I% %E% SMI" 24*0Sstevel@tonic-gate * 25*0Sstevel@tonic-gate * Copyright 2000-2002 Sun Microsystems, Inc. All rights reserved. 26*0Sstevel@tonic-gate * Use is subject to license terms. 27*0Sstevel@tonic-gate */ 28*0Sstevel@tonic-gate 29*0Sstevel@tonic-gate import java.util.ListResourceBundle; 30*0Sstevel@tonic-gate 31*0Sstevel@tonic-gate public class GuiResource extends ListResourceBundle { 32*0Sstevel@tonic-gate public Object[][] getContents() { 33*0Sstevel@tonic-gate return contents; 34*0Sstevel@tonic-gate } 35*0Sstevel@tonic-gate 36*0Sstevel@tonic-gate static final Object[][] contents = { 37*0Sstevel@tonic-gate {"Never", "Never"}, 38*0Sstevel@tonic-gate {"Warning", "Warning"}, 39*0Sstevel@tonic-gate {"Error", "Error"}, 40*0Sstevel@tonic-gate {"Confirm Action", "Confirm Action"}, 41*0Sstevel@tonic-gate {"Principals", "Principals"}, 42*0Sstevel@tonic-gate {"Policies", "Policies"}, 43*0Sstevel@tonic-gate {"Defaults", "Defaults"}, 44*0Sstevel@tonic-gate {"Principal List", "Principal List"}, 45*0Sstevel@tonic-gate {"Policy List", "Policy List"}, 46*0Sstevel@tonic-gate {"Principal Basics", "Principal Basics"}, 47*0Sstevel@tonic-gate {"Principal Details", "Principal Details"}, 48*0Sstevel@tonic-gate {"Principal Flags", "Principal Flags"}, 49*0Sstevel@tonic-gate {"Policy Details", "Policy Details" }, 50*0Sstevel@tonic-gate {"Modify ", "Modify "}, 51*0Sstevel@tonic-gate {"New ", "New "}, 52*0Sstevel@tonic-gate {"Duplicate ", "Duplicate "}, 53*0Sstevel@tonic-gate {"- *CHANGES*", "- *CHANGES*"}, 54*0Sstevel@tonic-gate {"OK", "OK"}, 55*0Sstevel@tonic-gate {"New", "New"}, 56*0Sstevel@tonic-gate {"Please save or cancel first", "Please save or cancel first"}, 57*0Sstevel@tonic-gate {"Cannot find default realm; check /etc/krb5/krb5.conf", 58*0Sstevel@tonic-gate "Cannot find default realm; check /etc/krb5/krb5.conf"}, 59*0Sstevel@tonic-gate {"Cannot find default server for realm", 60*0Sstevel@tonic-gate "Cannot find default server for realm"}, 61*0Sstevel@tonic-gate {"A password must be specified", "A password must be specified"}, 62*0Sstevel@tonic-gate {"A realm entry must be specified", 63*0Sstevel@tonic-gate "A realm entry must be specified"}, 64*0Sstevel@tonic-gate {"A master KDC entry must be specified", 65*0Sstevel@tonic-gate "A master KDC entry must be specified"}, 66*0Sstevel@tonic-gate {"Invalid login, please try again", 67*0Sstevel@tonic-gate "Invalid login, please try again"}, 68*0Sstevel@tonic-gate {"Please enter a principal name or cancel", 69*0Sstevel@tonic-gate "Please enter a principal name or cancel"}, 70*0Sstevel@tonic-gate {"Please enter a password or cancel", 71*0Sstevel@tonic-gate "Please enter a password or cancel"}, 72*0Sstevel@tonic-gate {"Please enter a policy name or cancel", 73*0Sstevel@tonic-gate "Please enter a policy name or cancel"}, 74*0Sstevel@tonic-gate {"Context-Sensitive Help", "Context-Sensitive Help"}, 75*0Sstevel@tonic-gate {"Click on GUI items to get help.\n\nClick on button below", 76*0Sstevel@tonic-gate "to dismiss, Click on GUI items to get help.\n\nClick on", 77*0Sstevel@tonic-gate "button below to dismiss"}, 78*0Sstevel@tonic-gate {"Principal Name:", "Principal Name:"}, 79*0Sstevel@tonic-gate {"Principal", "Principal"}, 80*0Sstevel@tonic-gate {"Password:", "Password:"}, 81*0Sstevel@tonic-gate {"Realm:", "Realm:"}, 82*0Sstevel@tonic-gate {"Master KDC:", "Master KDC:"}, 83*0Sstevel@tonic-gate {"Exit", "Exit"}, 84*0Sstevel@tonic-gate {"About", "About"}, 85*0Sstevel@tonic-gate {"Dismiss", "Dismiss"}, 86*0Sstevel@tonic-gate {"Start Over", "Start Over"}, 87*0Sstevel@tonic-gate {"Filter Pattern:", "Filter Pattern:"}, 88*0Sstevel@tonic-gate {"Clear Filter", "Clear Filter"}, 89*0Sstevel@tonic-gate {"Clear Name", "Clear Name"}, 90*0Sstevel@tonic-gate {"Modify", "Modify"}, 91*0Sstevel@tonic-gate {"Create New", "Create New"}, 92*0Sstevel@tonic-gate {"Delete", "Delete"}, 93*0Sstevel@tonic-gate {"Duplicate", "Duplicate"}, 94*0Sstevel@tonic-gate {"General", "General"}, 95*0Sstevel@tonic-gate {"Comments:", "Comments:"}, 96*0Sstevel@tonic-gate {"Policy:", "Policy:"}, 97*0Sstevel@tonic-gate {"Policy", "Policy"}, 98*0Sstevel@tonic-gate {"Generate Random Password", "Generate Random Password"}, 99*0Sstevel@tonic-gate {"Admin History", "Admin History"}, 100*0Sstevel@tonic-gate {"Last Principal Change:", "Last Principal Change:"}, 101*0Sstevel@tonic-gate {"Last Changed By:", "Last Changed By:"}, 102*0Sstevel@tonic-gate {"Account Expires:", "Account Expires:"}, 103*0Sstevel@tonic-gate {"Save", "Save"}, 104*0Sstevel@tonic-gate {"Previous", "Previous"}, 105*0Sstevel@tonic-gate {"Next", "Next"}, 106*0Sstevel@tonic-gate {"Done", "Done"}, 107*0Sstevel@tonic-gate {"Cancel", "Cancel"}, 108*0Sstevel@tonic-gate {"Discard", "Discard"}, 109*0Sstevel@tonic-gate {"Password", "Password"}, 110*0Sstevel@tonic-gate {"Last Success:", "Last Success:"}, 111*0Sstevel@tonic-gate {"Last Failure:", "Last Failure:"}, 112*0Sstevel@tonic-gate {"Failure Count:", "Failure Count:"}, 113*0Sstevel@tonic-gate {"Last Password Change:", "Last Password Change:"}, 114*0Sstevel@tonic-gate {"Password Expires:", "Password Expires:"}, 115*0Sstevel@tonic-gate {"Key Version:", "Key Version:"}, 116*0Sstevel@tonic-gate {"Ticket Lifetimes", "Ticket Lifetimes"}, 117*0Sstevel@tonic-gate {"Ticket", "Ticket"}, 118*0Sstevel@tonic-gate {"Maximum Lifetime (seconds):", 119*0Sstevel@tonic-gate "Maximum Lifetime (seconds):"}, 120*0Sstevel@tonic-gate {"Maximum Renewal (seconds):", 121*0Sstevel@tonic-gate "Maximum Renewal (seconds):"}, 122*0Sstevel@tonic-gate {"Security", "Security"}, 123*0Sstevel@tonic-gate {"Disable Account", "Disable Account"}, 124*0Sstevel@tonic-gate {"Force Password Change", "Force Password Change"}, 125*0Sstevel@tonic-gate {"Allow Postdated Tickets", "Allow Postdated Tickets"}, 126*0Sstevel@tonic-gate {"Allow Forwardable Tickets", "Allow Forwardable Tickets"}, 127*0Sstevel@tonic-gate {"Allow Renewable Tickets", "Allow Renewable Tickets"}, 128*0Sstevel@tonic-gate {"Allow Proxiable Tickets", "Allow Proxiable Tickets"}, 129*0Sstevel@tonic-gate {"Disallow Service Tickets", "Disallow Service Tickets"}, 130*0Sstevel@tonic-gate {"Miscellaneous", "Miscellaneous"}, 131*0Sstevel@tonic-gate {"Enforce Policy", "Enforce Policy"}, 132*0Sstevel@tonic-gate {"Enable DES MD5", "Enable DES MD5"}, 133*0Sstevel@tonic-gate {"Enable TGT-Based Authentication", 134*0Sstevel@tonic-gate "Enable TGT-Based Authentication"}, 135*0Sstevel@tonic-gate {"Enable Duplicate Authentication", 136*0Sstevel@tonic-gate "Enable Duplicate Authentication"}, 137*0Sstevel@tonic-gate {"Require Preauthentication", "Require Preauthentication"}, 138*0Sstevel@tonic-gate {"Require Hardware Authentication", 139*0Sstevel@tonic-gate "Require Hardware Authentication"}, 140*0Sstevel@tonic-gate {"Policy Name:", "Policy Name:"}, 141*0Sstevel@tonic-gate {"Minimum Password Length:", "Minimum Password Length:"}, 142*0Sstevel@tonic-gate {"Minimum Password Classes:", "Minimum Password Classes:"}, 143*0Sstevel@tonic-gate {"Saved Password History:", "Saved Password History:"}, 144*0Sstevel@tonic-gate {"Minimum Ticket Lifetime (seconds):", 145*0Sstevel@tonic-gate "Minimum Ticket Lifetime (seconds):"}, 146*0Sstevel@tonic-gate {"Maximum Ticket Lifetime (seconds):", 147*0Sstevel@tonic-gate "Maximum Ticket Lifetime (seconds):"}, 148*0Sstevel@tonic-gate {"Maximum Ticket Renewal (seconds):", 149*0Sstevel@tonic-gate "Maximum Ticket Renewal (seconds):"}, 150*0Sstevel@tonic-gate {"Principals Using This Policy:", "Principals Using This Policy:"}, 151*0Sstevel@tonic-gate {"Account Expiry:", "Account Expiry:"}, 152*0Sstevel@tonic-gate {"Defaults for New Principals", "Defaults for New Principals"}, 153*0Sstevel@tonic-gate {"Defaults for Existing Principals", 154*0Sstevel@tonic-gate "Defaults for Existing Principals"}, 155*0Sstevel@tonic-gate 156*0Sstevel@tonic-gate {"SEAM Date/Time Helper", "SEAM Date/Time Helper"}, 157*0Sstevel@tonic-gate {"Month", "Month"}, 158*0Sstevel@tonic-gate {"Date", "Date"}, 159*0Sstevel@tonic-gate {"Year", "Year"}, 160*0Sstevel@tonic-gate {"Hour", "Hour"}, 161*0Sstevel@tonic-gate {"Minute", "Minute"}, 162*0Sstevel@tonic-gate {"Second", "Second"}, 163*0Sstevel@tonic-gate {"Now", "Now"}, 164*0Sstevel@tonic-gate {"Midnight", "Midnight"}, 165*0Sstevel@tonic-gate {"Help", "Help"}, 166*0Sstevel@tonic-gate {"Help for Date and Time Dialog", "Help for Date and Time Dialog"}, 167*0Sstevel@tonic-gate 168*0Sstevel@tonic-gate {"SEAM Duration Helper", "SEAM Duration Helper"}, 169*0Sstevel@tonic-gate {"Weeks", "Weeks"}, 170*0Sstevel@tonic-gate {"Unit", "Unit"}, 171*0Sstevel@tonic-gate {"Value", "Value"}, 172*0Sstevel@tonic-gate {"Seconds", "Seconds"}, 173*0Sstevel@tonic-gate {"Minutes", "Minutes"}, 174*0Sstevel@tonic-gate {"Hours", "Hours"}, 175*0Sstevel@tonic-gate {"Days", "Days"}, 176*0Sstevel@tonic-gate {"Weeks", "Weeks"}, 177*0Sstevel@tonic-gate {"Months", "Months"}, 178*0Sstevel@tonic-gate {"Years", "Years"}, 179*0Sstevel@tonic-gate {"=", "="}, 180*0Sstevel@tonic-gate {"Help for entering time duration", 181*0Sstevel@tonic-gate "Help for entering time duration"}, 182*0Sstevel@tonic-gate 183*0Sstevel@tonic-gate {"SEAM Print Helper", "SEAM Print Helper"}, 184*0Sstevel@tonic-gate {"Print Command", "Print Command"}, 185*0Sstevel@tonic-gate {"File Name", "File Name"}, 186*0Sstevel@tonic-gate {"Print", "Print"}, 187*0Sstevel@tonic-gate {"SEAM File Helper", "SEAM File Helper"}, 188*0Sstevel@tonic-gate 189*0Sstevel@tonic-gate {"Reference Count:", "Reference Count:"}, 190*0Sstevel@tonic-gate {"Minimum Password Lifetime (seconds):", 191*0Sstevel@tonic-gate "Minimum Password Lifetime (seconds):"}, 192*0Sstevel@tonic-gate {"Maximum Password Lifetime (seconds):", 193*0Sstevel@tonic-gate "Maximum Password Lifetime (seconds):"}, 194*0Sstevel@tonic-gate {"Password Save Count:", "Password Save Count:"}, 195*0Sstevel@tonic-gate 196*0Sstevel@tonic-gate {"Flags:", "Flags:"}, 197*0Sstevel@tonic-gate {"None", "None"}, 198*0Sstevel@tonic-gate {"Allow Service Tickets", "Allow Service Tickets"}, 199*0Sstevel@tonic-gate {"Allow TGT-Based Authentication", 200*0Sstevel@tonic-gate "Allow TGT-Based Authentication"}, 201*0Sstevel@tonic-gate {"Allow Duplicate Authentication", 202*0Sstevel@tonic-gate "Allow Duplicate Authentication"}, 203*0Sstevel@tonic-gate {"Allow Service Tickets", "Allow Service Tickets"}, 204*0Sstevel@tonic-gate {"Require Preauthentication", "Require Preauthentication"}, 205*0Sstevel@tonic-gate {"Require Hardware Preauthentication", 206*0Sstevel@tonic-gate "Require Hardware Preauthentication"}, 207*0Sstevel@tonic-gate {"Require Password Change", "Require Password Change"}, 208*0Sstevel@tonic-gate {"Disallow Service", "Disallow Service"}, 209*0Sstevel@tonic-gate {"Support DES MD5", "Support DES MD5"}, 210*0Sstevel@tonic-gate {"Enforce Policy", "Enforce Policy"}, 211*0Sstevel@tonic-gate {"(no policy)", "(no policy)"}, 212*0Sstevel@tonic-gate {"Policy name already exists. Please choose a different", 213*0Sstevel@tonic-gate "policy name or cancel", 214*0Sstevel@tonic-gate "Policy name already exists. Please choose a different", 215*0Sstevel@tonic-gate "policy name or cancel"}, 216*0Sstevel@tonic-gate {"You are about to destroy data.", 217*0Sstevel@tonic-gate "You are about to destroy data."}, 218*0Sstevel@tonic-gate {"You are about to lose changes.", 219*0Sstevel@tonic-gate "You are about to lose changes."}, 220*0Sstevel@tonic-gate {"Click OK to proceed or Cancel to continue editing.", 221*0Sstevel@tonic-gate "Click OK to proceed or Cancel to continue editing."}, 222*0Sstevel@tonic-gate {"Click Save to commit changes, Discard to discard changes", 223*0Sstevel@tonic-gate "or Cancel to continue editing.", 224*0Sstevel@tonic-gate "Click Save to commit changes", 225*0Sstevel@tonic-gate "Discard to discard changes, or Cancel", 226*0Sstevel@tonic-gate "to continue editing."}, 227*0Sstevel@tonic-gate {"Unable to access lists; please use the Name field.", 228*0Sstevel@tonic-gate "Unable to access lists; please use the Name field."}, 229*0Sstevel@tonic-gate {"About SEAM Adminstration Tool", "About SEAM Adminstration Tool"}, 230*0Sstevel@tonic-gate {"Sun Enterprise Authentication Mechanism Administration Tool", 231*0Sstevel@tonic-gate "Sun Enterprise Authentication Mechanism Administration", 232*0Sstevel@tonic-gate "Tool"}, 233*0Sstevel@tonic-gate {"Copyright 1999-2002 Sun Microsystems, Inc.", 234*0Sstevel@tonic-gate "Copyright 1999-2002 Sun Microsystems, Inc."}, 235*0Sstevel@tonic-gate {"All Rights Reserved.", "All Rights Reserved."}, 236*0Sstevel@tonic-gate {"Example: ", "Example: "}, 237*0Sstevel@tonic-gate {"or", "or"}, 238*0Sstevel@tonic-gate {"Properties", "Properties"}, 239*0Sstevel@tonic-gate {"List Controls", "List Controls"}, 240*0Sstevel@tonic-gate {"Show Lists", "Show Lists"}, 241*0Sstevel@tonic-gate {"Cache Lists Forever", "Cache Lists Forever"}, 242*0Sstevel@tonic-gate {"List Cache Timeout (seconds):", "List Cache Timeout (seconds):"}, 243*0Sstevel@tonic-gate {"Apply", "Apply"}, 244*0Sstevel@tonic-gate {"Loading principal list", "Loading principal list"}, 245*0Sstevel@tonic-gate {"Loading policy list", "Loading policy list"}, 246*0Sstevel@tonic-gate {"File", "File"}, 247*0Sstevel@tonic-gate {"Edit", "Edit"}, 248*0Sstevel@tonic-gate {"Log Out", "Log Out"}, 249*0Sstevel@tonic-gate {"Current Principal", "Current Principal"}, 250*0Sstevel@tonic-gate {"Current Policy", "Current Policy"}, 251*0Sstevel@tonic-gate {"Properties...", "Properties..."}, 252*0Sstevel@tonic-gate {"Refresh", "Refresh"}, 253*0Sstevel@tonic-gate {"Help Contents", "Help Contents"}, 254*0Sstevel@tonic-gate {"Insufficient privileges to use gkadmin: ", 255*0Sstevel@tonic-gate "Insufficient privileges to use gkadmin: "}, 256*0Sstevel@tonic-gate {"Please try using another principal.", 257*0Sstevel@tonic-gate "Please try using another principal."}, 258*0Sstevel@tonic-gate {"Let the KDC control the ticket lifetime values", 259*0Sstevel@tonic-gate "Let the KDC control the ticket lifetime values"}, 260*0Sstevel@tonic-gate {"SEAM Administration Login", "SEAM Administration Login"}, 261*0Sstevel@tonic-gate {"SEAM Administration Tool", "SEAM Administration Tool"}, 262*0Sstevel@tonic-gate {"Can't run /usr/dt/bin/netscape.", 263*0Sstevel@tonic-gate "Can't run /usr/dt/bin/netscape."}, 264*0Sstevel@tonic-gate {"Invalid URL: ", "Invalid URL: "} 265*0Sstevel@tonic-gate }; 266*0Sstevel@tonic-gate } 267