home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / modules / edtplug / classes / netscape / test / plugin / composer / DocInfoResources.java < prev    next >
Encoding:
Java Source  |  1998-04-08  |  2.0 KB  |  53 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18.  
  19. package netscape.test.plugin.composer;
  20.  
  21. import java.util.*;
  22.  
  23. public class DocInfoResources extends ListResourceBundle {
  24.  
  25.     /**
  26.      * Overrides ListResourceBundle
  27.      */
  28.     public Object[][] getContents() {
  29.         return contents;
  30.     }
  31.  
  32.     static final Object[][] contents = {
  33.         // Non-Localizable Key                  // localize these strings
  34.         {"title", "Document Statistics"},
  35.         {"base", "Base URL: ^0\n"},
  36.         {"workDir", "Working Directory: ^0\n"},
  37.         {"workDirURL", "Working Directory URL: ^0\n"},
  38.         {"eventName", "Event Name: ^0\n"},
  39.         {"documentURL", "Document URL: ^0\n"},
  40.         {"chars", "Number of characters in the document: ^0\n"},
  41.         {"words", "Number of words in the document: ^0\n"},
  42.         {"images", "Number of images in the document: ^0\n"},
  43.         {"totalImageBytes", "Total size in bytes of the images: ^0\n"},
  44.         {"totalBytes", "Total size in bytes of the whole document: ^0\n"},
  45.         {"min14400", "Minimum time to download at 14.4 Kbaud: ^0 seconds\n"},
  46.         {"name", "Document Info"},
  47.         {"category", "HTML Tools"},
  48.         {"hint", "Display information about the document."},
  49.         {"ok", "OK"}
  50.         // stop localizing
  51.     };
  52. }
  53.