71
|
1 |
<?php |
1
|
2 |
|
119
|
3 |
/* Poweradmin, a friendly web-based admin tool for PowerDNS. |
47
|
4 |
* See <https://rejo.zenger.nl/poweradmin> for more details. |
|
5 |
* |
|
6 |
* Copyright 2007, 2008 Rejo Zenger <rejo@zenger.nl> |
|
7 |
* |
|
8 |
* This program is free software: you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation, either version 3 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* This program is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
20 |
*/ |
|
21 |
|
4
|
22 |
// Added next line to enable i18n on following definitions. Not sure |
|
23 |
// if this is the best (or at least a proper) location for this. /RZ. |
|
24 |
require_once("inc/i18n.inc.php"); |
|
25 |
|
82
|
26 |
/* PERMISSIONS */ |
|
27 |
define("ERR_PERM_SEARCH", _("You do not have the permission to perform searches.")); |
|
28 |
define("ERR_PERM_ADD_RECORD", _("You do not have the permission to add a record to this zone.")); |
|
29 |
define("ERR_PERM_EDIT_RECORD", _("You do not have the permission to edit this record.")); |
|
30 |
define("ERR_PERM_VIEW_RECORD", _("You do not have the permission to view this record.")); |
|
31 |
define("ERR_PERM_DEL_RECORD", _("You do not have the permission to delete this record.")); |
|
32 |
define("ERR_PERM_ADD_ZONE_MASTER", _("You do not have the permission to add a master zone.")); |
110
|
33 |
define("ERR_PERM_ADD_ZONE_SLAVE", _("You do not have the permission to add a slave zone.")); |
82
|
34 |
define("ERR_PERM_DEL_ZONE", _("You do not have the permission to delete a zone.")); |
|
35 |
define("ERR_PERM_DEL_SM", _("You do not have the permission to delete a supermaster.")); |
|
36 |
define("ERR_PERM_VIEW_ZONE", _("You do not have the permission to view this zone.")); |
|
37 |
define("ERR_PERM_EDIT_USER", _("You do not have the permission to edit this user.")); |
|
38 |
define("ERR_PERM_EDIT_PERM_TEMPL", _("You do not have the permission to edit permission templates.")); |
89
|
39 |
define("ERR_PERM_DEL_PERM_TEMPL", _("You do not have the permission to delete permission templates.")); |
82
|
40 |
define("ERR_PERM_ADD_USER", _("You do not have the permission to add a new user.")); |
|
41 |
define("ERR_PERM_DEL_USER", _("You do not have the permission to delete this user.")); |
1
|
42 |
|
|
43 |
/* DOMAIN STUFF */ |
110
|
44 |
define("ERR_DOMAIN_INVALID", _('This is an invalid zone name.')); |
82
|
45 |
define("ERR_SM_EXISTS", _('There is already a supermaster with this IP address.')); |
|
46 |
define("ERR_DOMAIN_EXISTS", _('There is already a zone with this name.')); |
1
|
47 |
|
|
48 |
/* USER STUFF */ |
110
|
49 |
define("ERR_USER_EXIST", _('Username exist already, please choose another one.')); |
|
50 |
define("ERR_USER_NOT_EXIST", _('User does not exist.')); |
|
51 |
define("ERR_USER_WRONG_CURRENT_PASS", _('You did not enter the correct current password.')); |
|
52 |
define("ERR_USER_MATCH_NEW_PASS", _('The two new password fields do not match.')); |
|
53 |
define("ERR_PERM_TEMPL_ASSIGNED", _('This template is assigned to at least one user.')); |
1
|
54 |
|
|
55 |
/* OTHER */ |
82
|
56 |
define("ERR_INV_INPUT", _('Invalid or unexpected input given.')); |
4
|
57 |
define("ERR_INV_ARG", _('Invalid argument(s) given to function %s')); |
|
58 |
define("ERR_INV_ARGC", _('Invalid argument(s) given to function %s %s')); |
110
|
59 |
define("ERR_UNKNOWN", _('Unknown error.')); |
|
60 |
define("ERR_INV_EMAIL", _('Enter a valid email address.')); |
141
|
61 |
define("ERR_ZONE_NOT_EXIST", _('There is no zone with this ID.')); |
144
|
62 |
define("ERR_INSTALL_DIR_EXISTS", _('The install/ directory exists, you must remove it first before proceeding.')); |
1
|
63 |
|
123
|
64 |
/* DATABASE */ |
|
65 |
define("ERR_DB_NO_DB_NAME", _('No database name has been set in config.inc.php.')); |
|
66 |
define("ERR_DB_NO_DB_HOST", _('No database host has been set in config.inc.php.')); |
|
67 |
define("ERR_DB_NO_DB_USER", _('No database username has been set in config.inc.php.')); |
|
68 |
define("ERR_DB_NO_DB_PASS", _('No database password has been set in config.inc.php.')); |
|
69 |
define("ERR_DB_NO_DB_TYPE", _('No or unknown database type has been set in config.inc.php.')); |
|
70 |
|
1
|
71 |
/* DNS */ |
110
|
72 |
define("ERR_DNS_CONTENT", _('Your content field doesnt have a legit value.')); |
|
73 |
define("ERR_DNS_HOSTNAME", _('Invalid hostname.')); |
140
|
74 |
define("ERR_DNS_HN_INV_CHARS", _('You have invalid characters in your hostname.')); |
|
75 |
define("ERR_DNS_HN_DASH", _('A hostname can not start or end with a dash.')); |
|
76 |
define("ERR_DNS_HN_LENGTH", _('Given hostname or one of the labels is too short or too long.')); |
|
77 |
define("ERR_DNS_HN_SLASH", _('Given hostname has too many slashes.')); |
|
78 |
define("ERR_DNS_RR_TYPE", _('Unknown record type.')); |
82
|
79 |
define("ERR_DNS_IP", _('This is not a valid IPv4 or IPv6 address.')); |
110
|
80 |
define("ERR_DNS_IPV6", _('This is not a valid IPv6 address.')); |
|
81 |
define("ERR_DNS_IPV4", _('This is not a valid IPv4 address.')); |
4
|
82 |
define("ERR_DNS_CNAME", _('This is not a valid CNAME. Did you assign an MX or NS record to the record?')); |
140
|
83 |
define("ERR_DNS_MX_NS_TO_CNAME", _('You can not point a NS or MX record to a CNAME record. Remove or rame the CNAME record first, or take another name.')); |
110
|
84 |
define("ERR_DNS_NS_HNAME", _('NS records must be a hostnames.')); |
4
|
85 |
define("ERR_DNS_MX_PRIO", _('A prio field should be numeric.')); |
140
|
86 |
define("ERR_DNS_SOA_NAME", _('Invalid value for name field of SOA record. It should be the name of the zone.')); |
138
|
87 |
define("ERR_DNS_SOA_MNAME", _('You have an error in the MNAME field of the SOA record.')); |
140
|
88 |
define("ERR_DNS_HINFO_INV_CONTENT", _('Invalid value for content field of HINFO record.')); |
138
|
89 |
define("ERR_DNS_HN_TOO_LONG", _('The hostname is too long.')); |
|
90 |
define("ERR_DNS_INV_TLD", _('You are using an invalid top level domain.')); |
140
|
91 |
define("ERR_DNS_INV_TTL", _('Invalid value for TTL field. It should be numeric.')); |
|
92 |
define("ERR_DNS_INV_PRIO", _('Invalid value for prio field. It should be numeric.')); |
164
|
93 |
define("ERR_DNS_SRV_NAME", _('Invalid value for name field of SRV record.')); |
|
94 |
define("ERR_DNS_SRV_WGHT", _('Invalid value for the priority field of the SRV record.')); |
|
95 |
define("ERR_DNS_SRV_PORT", _('Invalid value for the weight field of the SRV record.')); |
|
96 |
define("ERR_DNS_SRV_TRGT", _('Invalid SRV target.')); |
|
97 |
define("ERR_DNS_PRINTABLE", _('Invalid characters have been used in this record.')); |
82
|
98 |
|
|
99 |
/* GOOD! */ |
132
|
100 |
define("SUC_ZONE_ADD", _('Zone has been added successfully.')); |
|
101 |
define("SUC_ZONE_DEL", _('Zone has been deleted successfully.')); |
|
102 |
define("SUC_USER_UPD", _('The user has been updated successfully.')); |
|
103 |
define("SUC_USER_ADD", _('The user has been created successfully.')); |
|
104 |
define("SUC_USER_DEL", _('The user has been deleted successfully.')); |
|
105 |
define("SUC_RECORD_UPD", _('The record has been updated successfully.')); |
|
106 |
define("SUC_RECORD_DEL", _('The record has been deleted successfully.')); |
|
107 |
define("SUC_SM_DEL", _('The supermaster has been deleted successfully.')); |
|
108 |
define("SUC_SM_ADD", _('The supermaster has been added successfully.')); |
|
109 |
define("SUC_PERM_TEMPL_DEL", _('The permission template has been deleted successfully.')); |
82
|
110 |
|
1
|
111 |
?> |