Typo: inspect_jpegs, not inspect-jpegs in form
[privoxy.git] / src / java / org / privoxy / activityconsole / ActivityConsoleResources.java
1 /*********************************************************************
2  *
3  * File        :  $Source: /cvsroot/ijbswa/current/src/java/org/privoxy/activityconsole/ActivityConsoleResources.java,v $
4  *
5  * Purpose     :  Default English text for all translatable strings.
6  *
7  * Copyright   :  Written by and Copyright (C) 2003 the SourceForge
8  *                Privoxy team. http://www.privoxy.org/
9  *
10  *                Based on the Internet Junkbuster originally written
11  *                by and Copyright (C) 1997 Anonymous Coders and
12  *                Junkbusters Corporation.  http://www.junkbusters.com
13  *
14  *                This program is free software; you can redistribute it
15  *                and/or modify it under the terms of the GNU General
16  *                Public License as published by the Free Software
17  *                Foundation; either version 2 of the License, or (at
18  *                your option) any later version.
19  *
20  *                This program is distributed in the hope that it will
21  *                be useful, but WITHOUT ANY WARRANTY; without even the
22  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
23  *                PARTICULAR PURPOSE.  See the GNU General Public
24  *                License for more details.
25  *
26  *                The GNU General Public License should be included with
27  *                this file.  If not, you can view it at
28  *                http://www.gnu.org/copyleft/gpl.html
29  *                or write to the Free Software Foundation, Inc., 59
30  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  *
32  * Revisions   :
33  *    $Log: ActivityConsoleResources.java,v $
34  *    Revision 1.1  2003/01/18 14:37:24  david__schmidt
35  *    Initial checkin of directory structure and source code of the java Activity
36  *    Console
37  *
38  *********************************************************************/
39
40 package org.privoxy.activityconsole;
41
42 import java.io.Serializable;
43
44 /**
45  * The default (English) language resources file for the Activity Console.
46  * @author Last Modified By: $Author: david__schmidt $
47  * @version $Rev$-$Date: 2003/01/18 14:37:24 $$State: Exp $
48  */
49 public class ActivityConsoleResources extends java.util.ListResourceBundle implements Serializable
50 {
51   private static final String
52     COPYRIGHT = org.privoxy.activityconsole.Copyright.COPYRIGHT;
53
54   static final Object[][] contents =
55   {
56     {"guiTitle", "Privoxy Activity Console - serving port %1"},
57     {"menuFile", "File"}, 
58     {"menuFileQuit", "Quit"}, 
59     {"menuEdit", "Edit"},
60     {"menuEditDelete", "Delete selected row"},
61     {"menuEditConfig", "Set port"},
62     {"menuView", "View"},
63     {"menuViewWide", "Detailed statistics"},
64     {"guiNewPortTitle", "New port"},
65     {"guiNewPortPrompt", "Currently serving port %1.\n\nPlease enter the new port to serve:"},
66     {"guiNewPortErrorTitle", "Alert"},
67     {"guiNewPortErrorPrompt", "New port must be positive."},
68     {"guiDeleteConfirmTitle","Are you sure?"},
69     {"guiDeleteConfirmPrompt","Are you sure you want to delete stats from host %1?"},
70     {"guiPropertiesFileHeader","Privoxy Activity Console properties file - edit only while the Activity Console is not running."},
71
72     /* Headers and descriptions for statistics columns */
73     {"guiDefaultColumn0","Host:Port"},
74     {"guiDefaultColumn0Description","The host and port that statistics are coming from"},
75     {"guiDefaultColumn1","Request"},
76     {"guiDefaultColumn1Description","The number of requests that flow through the proxy"},
77     {"guiDefaultColumn2","Filter"},
78     {"guiDefaultColumn2Description","The number of filters that have been applied"},
79     {"guiDefaultColumn3","Image"},
80     {"guiDefaultColumn3Description","The number of images that have been blocked"},
81     {"guiDefaultColumn4","De-anim"},
82     {"guiDefaultColumn4Description","The number of GIF images that have been de-animated"},
83     {"guiDefaultColumn5","Cookie"},
84     {"guiDefaultColumn5Description","The number of cookies that have been blocked"},
85     {"guiDefaultColumn6","Referer"},
86     {"guiDefaultColumn6Description","The number of referers blocked"},
87     {"guiDefaultColumn7","ACL"},
88     {"guiDefaultColumn7Description","The number of blocks due to ACL restrictions"},
89     {"guiDefaultColumn8","UA"},
90     {"guiDefaultColumn8Description","The number of times user-agent header was removed"},
91     {"guiDefaultColumn9","FROM"},
92     {"guiDefaultColumn9Description","The number of times the from: header was removed"},
93     {"guiDefaultColumn10","FORWARD"},
94     {"guiDefaultColumn10Description","The number of times the forward header was removed"},
95   };
96
97   /** Returns the contents of this ListBundleResources class.
98    * @see java.util.ListBundleResource
99    * @return Object an Object array containing this classes resources.
100    */
101   protected Object[][] getContents()
102   {
103     return contents;
104   }
105
106   /** Returns the name of the language this class represents.
107    * @return String the name of the language this class represents.
108    */
109
110   public String toString()
111   {
112     return "English";
113   }
114 }