1 | #!/usr/bin/perl |
---|
2 | |
---|
3 | # $Id: strings.pl,v 1.03 2011/06/28 00:13:48 sbajic Exp $ |
---|
4 | # DSPAM |
---|
5 | # COPYRIGHT (C) 2002-2012 DSPAM PROJECT |
---|
6 | # |
---|
7 | # This program is free software: you can redistribute it and/or modify |
---|
8 | # it under the terms of the GNU Affero General Public License as |
---|
9 | # published by the Free Software Foundation, either version 3 of the |
---|
10 | # License, or (at your option) any later version. |
---|
11 | # |
---|
12 | # This program is distributed in the hope that it will be useful, |
---|
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
15 | # GNU Affero General Public License for more details. |
---|
16 | # |
---|
17 | # You should have received a copy of the GNU Affero General Public License |
---|
18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
19 | |
---|
20 | $LANG{'lang_name'} = "English"; |
---|
21 | $LANG{'lang_select'} = "Language"; |
---|
22 | |
---|
23 | $LANG{'empty'} = "Empty"; |
---|
24 | $LANG{'admin_suite'} = "Administrative Suite"; |
---|
25 | $LANG{'alert_name'} = "Alert Name"; |
---|
26 | $LANG{'remove_alert'} = "Remove"; |
---|
27 | $LANG{'user_form'} = "Statistical SPAM Protection for"; |
---|
28 | $LANG{'user_form_submit'} = "Change"; |
---|
29 | |
---|
30 | $LANG{'admin_form'} = "Statistical SPAM Protection for <strong>Administrator</strong>"; |
---|
31 | $LANG{'admin_form_submit'} = "Change"; |
---|
32 | |
---|
33 | $LANG{'option_disable_filtering'} = "Disable DSPAM filtering"; |
---|
34 | $LANG{'option_enable_filtering'} = "Enable DSPAM filtering"; |
---|
35 | |
---|
36 | $LANG{'quarantine_rating'} = "Rating"; |
---|
37 | $LANG{'quarantine_date'} = "Date"; |
---|
38 | $LANG{'quarantine_from'} = "From"; |
---|
39 | $LANG{'quarantine_to'} = "To"; |
---|
40 | $LANG{'quarantine_subject'} = "Subject"; |
---|
41 | |
---|
42 | $LANG{'history_show'} = "Show"; |
---|
43 | $LANG{'history_show_all'} = "all"; |
---|
44 | $LANG{'history_show_spam'} = "spam"; |
---|
45 | $LANG{'history_show_innocent'} = "innocent"; |
---|
46 | $LANG{'history_show_whitelisted'} = "whitelisted"; |
---|
47 | $LANG{'history_retrain_as_spam'} = "spam"; |
---|
48 | $LANG{'history_retrain_as_innocent'} = "innocent"; |
---|
49 | $LANG{'history_retrain_as'} = "As"; |
---|
50 | $LANG{'history_retrain_undo'} = "Undo"; |
---|
51 | $LANG{'history_retrained'} = "Retrained"; |
---|
52 | $LANG{'history_label_resend'} = "Resend"; |
---|
53 | $LANG{'history_label_whitelist'} = "Whitelist"; |
---|
54 | $LANG{'history_label_spam'} = "SPAM"; |
---|
55 | $LANG{'history_label_innocent'} = "Good"; |
---|
56 | $LANG{'history_label_miss'} = "Miss"; |
---|
57 | $LANG{'history_label_virus'} = "Virus"; |
---|
58 | $LANG{'history_label_RBL'} = "RBL"; |
---|
59 | $LANG{'history_label_block'} = "BLOCK"; |
---|
60 | $LANG{'history_label_corpus'} = "Corpus"; |
---|
61 | $LANG{'history_label_unknown'} = "UNKN"; |
---|
62 | $LANG{'history_label_error'} = "Error"; |
---|
63 | |
---|
64 | $LANG{'error_no_historic'} = "No historical data is available."; |
---|
65 | $LANG{'error_cannot_open_log'} = "Unable to open logfile"; |
---|
66 | $LANG{'error_no_identity'} = "System Error. I was unable to determine your identity."; |
---|
67 | $LANG{'error_invalid_command'} = "Invalid Command"; |
---|
68 | $LANG{'error_cannot_write_prefs'} = "Unable to write preferences"; |
---|
69 | $LANG{'error_no_sigid'} = "No Message ID Specified"; |
---|
70 | $LANG{'error_no_alert_specified'} = "No Alert Specified."; |
---|
71 | $LANG{'error_message_part1'} = "The following error occured while trying to process your request:"; |
---|
72 | $LANG{'error_message_part2'} = "If this problem persists, please contact your administrator."; |
---|
73 | $LANG{'error_filesystem_scale'} = "Unable to determine filesystem scale"; |
---|
74 | $LANG{'error_load_default_prefs'} = "Unable to load default preferences"; |
---|
75 | $LANG{'error_access_denied'} = "Access Denied"; |
---|
76 | |
---|
77 | $LANG{'graph_legend_x_label_hour'} = "Hour of the day"; |
---|
78 | $LANG{'graph_legend_x_label_date'} = "Date"; |
---|
79 | $LANG{'graph_legend_nb_messages'} = "Number of Messages"; |
---|
80 | $LANG{'graph_legend_spam'} = "SPAM"; |
---|
81 | $LANG{'graph_legend_good'} = "Good"; |
---|
82 | $LANG{'graph_legend_inoculations'} = "Inoculations"; |
---|
83 | $LANG{'graph_legend_corpusfeds'} = "Corpusfeds"; |
---|
84 | $LANG{'graph_legend_virus'} = "Virus"; |
---|
85 | $LANG{'graph_legend_RBL'} = "Blacklisted (RBL)"; |
---|
86 | $LANG{'graph_legend_blocklisted'} = "Blocklisted"; |
---|
87 | $LANG{'graph_legend_whitelisted'} = "Auto-Whitelisted"; |
---|
88 | $LANG{'graph_legend_nonspam'} = "Nonspam"; |
---|
89 | $LANG{'graph_legend_spam_misses'} = "Spam Misses"; |
---|
90 | $LANG{'graph_legend_falsepositives'} = "False Positives"; |
---|
91 | |
---|
92 | 1; |
---|