summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/gwerror.cpp
blob: 65574eb393daa1691126a99cbaaf6c50da4411fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*
    gwerror.cpp - Kopete Groupwise Protocol
  
    Copyright (c) 2007     Novell, Inc http://www.novell.com/linux

    Kopete (c) 2002-2007 by the Kopete developers <kopete-devel@kde.org>
 
    *************************************************************************
    *                                                                       *
    * This library is free software; you can redistribute it and/or         *
    * modify it under the terms of the GNU Lesser General Public            *
    * License as published by the Free Software Foundation; either          *
    * version 2 of the License, or (at your option) any later version.      *
    *                                                                       *
    *************************************************************************
*/

#include <klocale.h>

#include "gwerror.h"

TQString GroupWise::errorCodeToString( int errorCode )
{
	TQString errorString;
	switch ( errorCode )
	{
#if 0		
		case NMERR_ACCESS_DENIED:
			errorString = i18n( "Access denied" );
			break;
		case NMERR_NOT_SUPPORTED:
			errorString = i18n( "Not supported" );
			break;
		case NMERR_PASSWORD_EXPIRED:
			errorString = i18n( "Password expired" );
			break;
		case NMERR_PASSWORD_INVALID:
			errorString = i18n( "Invalid password" );
			break;
		case NMERR_USER_NOT_FOUND:
			errorString = i18n( "User not found" );
			break;
		case NMERR_ATTRIBUTE_NOT_FOUND:
			errorString = i18n( "Attribute not found" );
			break;
		case NMERR_USER_DISABLED:
			errorString = i18n( "User is disabled" );
			break;
		case NMERR_DIRECTORY_FAILURE:
			errorString = i18n( "Directory failure" );
			break;
		case NMERR_HOST_NOT_FOUND:
			errorString = i18n( "Host not found" );
			break;
		case NMERR_ADMIN_LOCKED:
			errorString = i18n( "Locked by admin" );
			break;
		case NMERR_DUPLICATE_PARTICIPANT:
			errorString = i18n( "Duplicate participant" );
			break;
		case NMERR_SERVER_BUSY:
			errorString = i18n( "Server busy" );
			break;
		case NMERR_OBJECT_NOT_FOUND:
			errorString = i18n( "Object not found" );
			break;
		case NMERR_DIRECTORY_UPDATE:
			errorString = i18n( "Directory update" );
			break;
		case NMERR_DUPLICATE_FOLDER:
			errorString = i18n( "Duplicate folder" );
			break;
		case NMERR_DUPLICATE_CONTACT:
			errorString = i18n( "Contact list entry already exists" );
			break;
		case NMERR_USER_NOT_ALLOWED:
			errorString = i18n( "User not allowed" );
			break;
		case NMERR_TOO_MANY_CONTACTS:
			errorString = i18n( "Too many contacts" );
			break;
		case NMERR_CONFERENCE_NOT_FOUND_2:
			errorString = i18n( "Conference not found" );
			break;
		case NMERR_TOO_MANY_FOLDERS:
			errorString = i18n( "Too many folders" );
			break;
		case NMERR_SERVER_PROTOCOL:
			errorString = i18n( "Server protocol error" );
			break;
		case NMERR_CONVERSATION_INVITE:
			errorString = i18n( "Conversation invitation error" );
			break;
		case NMERR_USER_BLOCKED:
			errorString = i18n( "User is blocked" );
			break;
		case NMERR_MASTER_ARCHIVE_MISSING:
			errorString = i18n( "Master archive is missing" );
			break;
		case NMERR_PASSWORD_EXPIRED_2:
			errorString = i18n( "Expired password in use" );
			break;
		case NMERR_CREDENTIALS_MISSING:
			errorString = i18n( "Credentials missing" );
			break;
		case NMERR_AUTHENTICATION_FAILED:
			errorString = i18n( "Authentication failed" );
			break;
		case NMERR_EVAL_CONNECTION_LIMIT:
			errorString = i18n( "Eval connection limit" );
			break;
		case MSGPRES_ERR_UNSUPPORTED_CLIENT_VERSION:
			errorString = i18n( "Unsupported client version" );
			break;
		case MSGPRES_ERR_DUPLICATE_CHAT:
			errorString = i18n( "A duplicate chat was found" );
			break;
		case MSGPRES_ERR_CHAT_NOT_FOUND:
			errorString = i18n( "Chat not found" );
			break;
		case MSGPRES_ERR_INVALID_NAME:
			errorString = i18n( "Invalid chat name" );
			break;
		case MSGPRES_ERR_CHAT_ACTIVE:
			errorString = i18n( "The chat is active" );
			break;
		case MSGPRES_ERR_CHAT_BUSY:
			errorString = i18n( "Chat is busy; try again" );
			break;
		case MSGPRES_ERR_REQUEST_TOO_SOON:
			errorString = i18n( "Tried request too soon after another; try again" );
			break;
		case MSGPRES_ERR_CHAT_NOT_ACTIVE:
			errorString = i18n( "Server's chat subsystem is not active" );
			break;
		case MSGPRES_ERR_INVALID_CHAT_UPDATE:
			errorString = i18n( "The chat update request is invalid" );
			break;
		case MSGPRES_ERR_DIRECTORY_MISMATCH:
			errorString = i18n( "Write failed due to directory mismatch" );
			break;
		case MSGPRES_ERR_RECIPIENT_TOO_OLD:
			errorString = i18n( "Recipient's client version is too old" );
			break;
		case MSGPRES_ERR_CHAT_NO_LONGER_VALID:
			errorString = i18n( "Chat has been removed from server" );
			break;
		default:
			errorString = i18n("Unrecognized error code: %s").tqarg( errorCode );
#else
		case NMERR_ACCESS_DENIED:
			errorString = "Access denied";
			break;
		case NMERR_NOT_SUPPORTED:
			errorString = "Not supported";
			break;
		case NMERR_PASSWORD_EXPIRED:
			errorString = "Password expired";
			break;
		case NMERR_PASSWORD_INVALID:
			errorString = "Invalid password";
			break;
		case NMERR_USER_NOT_FOUND:
			errorString = "User not found";
			break;
		case NMERR_ATTRIBUTE_NOT_FOUND:
			errorString = "Attribute not found";
			break;
		case NMERR_USER_DISABLED:
			errorString = "User is disabled";
			break;
		case NMERR_DIRECTORY_FAILURE:
			errorString = "Directory failure";
			break;
		case NMERR_HOST_NOT_FOUND:
			errorString = "Host not found";
			break;
		case NMERR_ADMIN_LOCKED:
			errorString = "Locked by admin";
			break;
		case NMERR_DUPLICATE_PARTICIPANT:
			errorString = "Duplicate participant";
			break;
		case NMERR_SERVER_BUSY:
			errorString = "Server busy";
			break;
		case NMERR_OBJECT_NOT_FOUND:
			errorString = "Object not found";
			break;
		case NMERR_DIRECTORY_UPDATE:
			errorString = "Directory update";
			break;
		case NMERR_DUPLICATE_FOLDER:
			errorString = "Duplicate folder";
			break;
		case NMERR_DUPLICATE_CONTACT:
			errorString = "Contact list entry already exists";
			break;
		case NMERR_USER_NOT_ALLOWED:
			errorString = "User not allowed";
			break;
		case NMERR_TOO_MANY_CONTACTS:
			errorString = "Too many contacts";
			break;
		case NMERR_CONFERENCE_NOT_FOUND_2:
			errorString = "Conference not found";
			break;
		case NMERR_TOO_MANY_FOLDERS:
			errorString = "Too many folders";
			break;
		case NMERR_SERVER_PROTOCOL:
			errorString = "Server protocol error";
			break;
		case NMERR_CONVERSATION_INVITE:
			errorString = "Conversation invitation error";
			break;
		case NMERR_USER_BLOCKED:
			errorString = "User is blocked";
			break;
		case NMERR_MASTER_ARCHIVE_MISSING:
			errorString = "Master archive is missing";
			break;
		case NMERR_PASSWORD_EXPIRED_2:
			errorString = "Expired password in use";
			break;
		case NMERR_CREDENTIALS_MISSING:
			errorString = "Credentials missing";
			break;
		case NMERR_AUTHENTICATION_FAILED:
			errorString = "Authentication failed";
			break;
		case NMERR_EVAL_CONNECTION_LIMIT:
			errorString = "Eval connection limit";
			break;
		case MSGPRES_ERR_UNSUPPORTED_CLIENT_VERSION:
			errorString = "Unsupported client version";
			break;
		case MSGPRES_ERR_DUPLICATE_CHAT:
			errorString = "A duplicate chat was found";
			break;
		case MSGPRES_ERR_CHAT_NOT_FOUND:
			errorString = "Chat not found";
			break;
		case MSGPRES_ERR_INVALID_NAME:
			errorString = "Invalid chat name";
			break;
		case MSGPRES_ERR_CHAT_ACTIVE:
			errorString = "The chat is active";
			break;
		case MSGPRES_ERR_CHAT_BUSY:
			errorString = "Chat is busy; try again";
			break;
		case MSGPRES_ERR_REQUEST_TOO_SOON:
			errorString = "Tried request too soon after another; try again";
			break;
		case MSGPRES_ERR_CHAT_NOT_ACTIVE:
			errorString = "Server's chat subsystem is not active";
			break;
		case MSGPRES_ERR_INVALID_CHAT_UPDATE:
			errorString = "The chat update request is invalid";
			break;
		case MSGPRES_ERR_DIRECTORY_MISMATCH:
			errorString = "Write failed due to directory mismatch";
			break;
		case MSGPRES_ERR_RECIPIENT_TOO_OLD:
			errorString = "Recipient's client version is too old";
			break;
		case MSGPRES_ERR_CHAT_NO_LONGER_VALID:
			errorString = "Chat has been removed from server";
			break;
		default:
			errorString = TQString("Unrecognized error code: %s").tqarg( errorCode );
#endif
	}
	return errorString;
}