home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / LocaleChooserRes.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  55 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.intl.beans.resources;
  21.  
  22. import java.util.*;
  23.  
  24. public class LocaleChooserRes extends ListResourceBundle {
  25.   static final Object[][] contents = {
  26.     // inspector property name short descriptions
  27.     {"localeChoices","Locales to display in locale tree"},
  28.     {"selectedLocales","Locales to be visually selected by default in locale tree"},
  29.     {"displayStyle","Locale name display style"},
  30.     {"acceptLeafNodesOnly","Allow only leaves of locale tree to be chosen"},
  31.     {"allowMultiSelect","Allow multiple locales to be selected"},
  32.     {"title","Title at root of locale tree"},
  33.     {"collationLocale","Locale used to collate entries in locale tree"},
  34.  
  35.     // inspector event name short descriptions
  36.     {"localeChanged","Called when a new locale is chosen in locale tree"},
  37.  
  38.     // generic title
  39.     {"Select_a_locale","Select a locale"},
  40.  
  41.     // collation locale custom editor title
  42.     {"default_runtime_locale","(default runtime locale)"},
  43.  
  44.     // locale choices custom editor title
  45.     {"all_runtime_locales","(all runtime locales)"},
  46.  
  47.     // selected locales custom editor title
  48.     {"none_selected","(no locales)"},
  49.   };
  50.  
  51.   protected Object[][] getContents() {
  52.     return contents;
  53.   }
  54. }
  55.