home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-05-08 | 3.9 KB | 93 lines |
- /*
- * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
- *
- * This SOURCE CODE FILE, which has been provided by Borland as part
- * of a Borland product for use ONLY by licensed users of the product,
- * includes CONFIDENTIAL and PROPRIETARY information of Borland.
- *
- * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS
- * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
- * THE PRODUCT.
- *
- * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
- * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
- * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
- * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
- * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
- * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
- * CODE FILE.
- */
- //--------------------------------------------------------------------------------------------------
- // CORBA Reference Application
- // Copyright (c) 1997 by Borland International, All Rights Reserved
- //
- // Generated by the Resource Strings Wizard
- //--------------------------------------------------------------------------------------------------
-
- package borland.reference.creditapproval.client;
-
- import java.util.*;
-
- /*
- ResourceBundles are the standard JDK 1.1 mechanism to allow an application to
- respond to different user locale environments. Locale dependent resources,
- such as messages, are isolated into ResourceBundles, separate from the code
- that will be universal among locales. With a single set of class files, the
- language of menus and messages of an application can change depending on
- whether it is run in the United States or Japan.
-
- Because resource bundles are loaded dynamically at runtime, it is not
- possible at compile time to know which resource bundles need to be recompiled.
- Thus in order to see changes you make to this file updated in the application,
- you must explicitly recompile this file whenever you make a change to it.
-
- */
-
- public class Res extends ListResourceBundle {
- static final Object[][] contents = {
- {"Congratulations","Congratulations!"},
- {"You_have_been","You have been approved for a Cliffhanger Credit Card."},
- {"Please_make_a_note_of","Please make a note of the following information."},
- {"Apermanent_card_will","A permanent card will be sent to you in the mail."},
- {"Credit_Card_Number","Credit Card Number"},
- {"Expiration_Date","Expiration Date"},
- {"Credit_Limit","Credit Limit"},
- {"Sorry!","Sorry!"},
- {"Your_application_for","Your application for a Cliffhanger Credit Card has"},
- {"been_denied_for_the","been denied for the following reason"},
- {"OK","OK"},
- {"Credit_Card","Credit Card Application"},
- {"Personal_Information","Personal Information"},
- {"First","First"},
- {"Last","Last"},
- {"MI","MI"},
- {"Address_1","Address 1"},
- {"Address_2","Address 2"},
- {"Name","Name"},
- {"Personal_ID","Personal ID #"},
- {"City","City"},
- {"Rent_Mortgage_Payment","Rent/Mortgage Payment"},
- {"Clear","Clear"},
- {"Financial_Information","Financial Information"},
- {"Required_Field","Required Field Missing"},
- {"Submit","Submit"},
- {"Monthly_Income","Monthly Income"},
- {"DOB","DOB"},
- {"Identification","Identification"},
- {"Phone","Phone"},
- {"Country","Country"},
- {"Postal_Code","Postal Code"},
- {"State","State"},
- {"DobEditMask","MM/dd/yy"},
- {"Please_enter_a_value","Please enter a value for"},
- {"Connecting_to_Server","Connecting to Server"},
- {"Server_Down","The server is not currently running."},
- {"System_Error","System Error"},
- {"The_following_System","The following System Error occurred during"},
- {"the_processing_of","the processing of your application."},};
-
- public Object[][] getContents() {
- return contents;
- }
- }
-