Source Code Cross Referenced for Messages.java in  » Content-Management-System » opencms » org » opencms » workplace » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » opencms » org.opencms.workplace 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * File   : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/Messages.java,v $
003:         * Date   : $Date: 2008-02-27 12:05:45 $
004:         * Version: $Revision: 1.29 $
005:         *
006:         * This library is part of OpenCms -
007:         * the Open Source Content Management System
008:         *
009:         * Copyright (c) 2002 - 2008 Alkacon Software GmbH (http://www.alkacon.com)
010:         *
011:         * This library is free software; you can redistribute it and/or
012:         * modify it under the terms of the GNU Lesser General Public
013:         * License as published by the Free Software Foundation; either
014:         * version 2.1 of the License, or (at your option) any later version.
015:         *
016:         * This library is distributed in the hope that it will be useful,
017:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
018:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
019:         * Lesser General Public License for more details.
020:         *
021:         * For further information about Alkacon Software GmbH, please see the
022:         * company website: http://www.alkacon.com
023:         *
024:         * For further information about OpenCms, please see the
025:         * project website: http://www.opencms.org
026:         * 
027:         * You should have received a copy of the GNU Lesser General Public
028:         * License along with this library; if not, write to the Free Software
029:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
030:         */
031:
032:        package org.opencms.workplace;
033:
034:        import org.opencms.db.CmsResourceState;
035:        import org.opencms.i18n.A_CmsMessageBundle;
036:        import org.opencms.i18n.I_CmsMessageBundle;
037:
038:        /**
039:         * Convenience class to access the localized messages of this OpenCms package.<p> 
040:         * 
041:         * @author Jan Baudisch 
042:         * 
043:         * @version $Revision: 1.29 $ 
044:         * 
045:         * @since 6.0.0 
046:         */
047:        public final class Messages extends A_CmsMessageBundle {
048:
049:            /** Message constant for key in the resource bundle. */
050:            public static final String ERR_INITIALIZE_WORKPLACE_0 = "ERR_INITIALIZE_WORKPLACE_0";
051:
052:            /** Message constant for key in the resource bundle. */
053:            public static final String ERR_PROJECT_NOT_ACCESSIBLE_2 = "ERR_PROJECT_NOT_ACCESSIBLE_2";
054:
055:            /** Message constant for key in the resource bundle. */
056:            public static final String ERR_SITE_NOT_ACCESSIBLE_2 = "ERR_SITE_NOT_ACCESSIBLE_2";
057:
058:            /** Message constant for key in the resource bundle. */
059:            public static final String ERR_WORKPLACE_DIALOG_0 = "ERR_WORKPLACE_DIALOG_0";
060:
061:            /** Message constant for key in the resource bundle. */
062:            public static final String ERR_WORKPLACE_DIALOG_PARAMS_1 = "ERR_WORKPLACE_DIALOG_PARAMS_1";
063:
064:            /** Message constant for key in the resource bundle. */
065:            public static final String ERR_WORKPLACE_LOCK_RESOURCE_1 = "ERR_WORKPLACE_LOCK_RESOURCE_1";
066:
067:            /** Message constant for key in the resource bundle. */
068:            public static final String GUI_AJAX_REPORT_ERROR_0 = "GUI_AJAX_REPORT_ERROR_0";
069:
070:            /** Message constant for key in the resource bundle. */
071:            public static final String GUI_AJAX_REPORT_GIVEUP_0 = "GUI_AJAX_REPORT_GIVEUP_0";
072:
073:            /** Message constant for key in the resource bundle. */
074:            public static final String GUI_AJAX_REPORT_WAIT_0 = "GUI_AJAX_REPORT_WAIT_0";
075:
076:            /** Message constant for key in the resource bundle. */
077:            public static final String GUI_BUTTON_EXIT_0 = "GUI_BUTTON_EXIT_0";
078:
079:            /** Message constant for key in the resource bundle. */
080:            public static final String GUI_BUTTON_HELP_0 = "GUI_BUTTON_HELP_0";
081:
082:            /** Message constant for key in the resource bundle. */
083:            public static final String GUI_BUTTON_PREFERENCES_0 = "GUI_BUTTON_PREFERENCES_0";
084:
085:            /** Message constant for key in the resource bundle. */
086:            public static final String GUI_BUTTON_PUBLISH_0 = "GUI_BUTTON_PUBLISH_0";
087:
088:            /** Message constant for key in the resource bundle. */
089:            public static final String GUI_BUTTON_PUBLISHQUEUE_0 = "GUI_BUTTON_PUBLISHQUEUE_0";
090:
091:            /** Message constant for key in the resource bundle. */
092:            public static final String GUI_BUTTON_RELOAD_0 = "GUI_BUTTON_RELOAD_0";
093:
094:            /** Message constant for key in the resource bundle. */
095:            public static final String GUI_BUTTON_SYNCFOLDER_0 = "GUI_BUTTON_SYNCFOLDER_0";
096:
097:            /** Message constant for key in the resource bundle. */
098:            public static final String GUI_CALENDAR_CHOOSE_DATE_0 = "GUI_CALENDAR_CHOOSE_DATE_0";
099:
100:            /** Message constant for key in the resource bundle. */
101:            public static final String GUI_CALENDAR_DATE_FORMAT_0 = "GUI_CALENDAR_DATE_FORMAT_0";
102:
103:            /** Message constant for key in the resource bundle. */
104:            public static final String GUI_CALENDAR_TIME_FORMAT_0 = "GUI_CALENDAR_TIME_FORMAT_0";
105:
106:            /** Message constant for key in the resource bundle. */
107:            public static final String GUI_CALENDAR_TIMEFORMAT_0 = "GUI_CALENDAR_TIMEFORMAT_0";
108:
109:            /** Message constant for key in the resource bundle. */
110:            public static final String GUI_DIALOG_BUTTON_ADDNEW_0 = "GUI_DIALOG_BUTTON_ADDNEW_0";
111:
112:            /** Message constant for key in the resource bundle. */
113:            public static final String GUI_DIALOG_BUTTON_ADVANCED_0 = "GUI_DIALOG_BUTTON_ADVANCED_0";
114:
115:            /** Message constant for key in the resource bundle. */
116:            public static final String GUI_DIALOG_BUTTON_BACK_0 = "GUI_DIALOG_BUTTON_BACK_0";
117:
118:            /** Message constant for key in the resource bundle. */
119:            public static final String GUI_DIALOG_BUTTON_CANCEL_0 = "GUI_DIALOG_BUTTON_CANCEL_0";
120:
121:            /** Message constant for key in the resource bundle. */
122:            public static final String GUI_DIALOG_BUTTON_CLOSE_0 = "GUI_DIALOG_BUTTON_CLOSE_0";
123:
124:            /** Message constant for key in the resource bundle. */
125:            public static final String GUI_DIALOG_BUTTON_CONTINUE_0 = "GUI_DIALOG_BUTTON_CONTINUE_0";
126:
127:            /** Message constant for key in the resource bundle. */
128:            public static final String GUI_DIALOG_BUTTON_DELETE_0 = "GUI_DIALOG_BUTTON_DELETE_0";
129:
130:            /** Message constant for key in the resource bundle. */
131:            public static final String GUI_DIALOG_BUTTON_DETAIL_0 = "GUI_DIALOG_BUTTON_DETAIL_0";
132:
133:            /** Message constant for key in the resource bundle. */
134:            public static final String GUI_DIALOG_BUTTON_DISCARD_0 = "GUI_DIALOG_BUTTON_DISCARD_0";
135:
136:            /** Message constant for key in the resource bundle. */
137:            public static final String GUI_DIALOG_BUTTON_DOWNLOAD_0 = "GUI_DIALOG_BUTTON_DOWNLOAD_0";
138:
139:            /** Message constant for key in the resource bundle. */
140:            public static final String GUI_DIALOG_BUTTON_EDIT_0 = "GUI_DIALOG_BUTTON_EDIT_0";
141:
142:            /** Message constant for key in the resource bundle. */
143:            public static final String GUI_DIALOG_BUTTON_OK_0 = "GUI_DIALOG_BUTTON_OK_0";
144:
145:            /** Message constant for key in the resource bundle. */
146:            public static final String GUI_DIALOG_BUTTON_RESET_0 = "GUI_DIALOG_BUTTON_RESET_0";
147:
148:            /** Message constant for key in the resource bundle. */
149:            public static final String GUI_DIALOG_BUTTON_SEARCH_0 = "GUI_DIALOG_BUTTON_SEARCH_0";
150:
151:            /** Message constant for key in the resource bundle. */
152:            public static final String GUI_DIALOG_BUTTON_SET_0 = "GUI_DIALOG_BUTTON_SET_0";
153:
154:            /** Message constant for key in the resource bundle. */
155:            public static final String GUI_EDITOR_WIDGET_OPTIONALELEMENT_0 = "GUI_EDITOR_WIDGET_OPTIONALELEMENT_0";
156:
157:            /** Message constant for key in the resource bundle. */
158:            public static final String GUI_EDITOR_WIDGET_VALIDATION_ERROR_2 = "GUI_EDITOR_WIDGET_VALIDATION_ERROR_2";
159:
160:            /** Message constant for key in the resource bundle. */
161:            public static final String GUI_EDITOR_WIDGET_VALIDATION_ERROR_TITLE_0 = "GUI_EDITOR_WIDGET_VALIDATION_ERROR_TITLE_0";
162:
163:            /** Message constant for key in the resource bundle. */
164:            public static final String GUI_EDITOR_WIDGET_VALIDATION_WARNING_2 = "GUI_EDITOR_WIDGET_VALIDATION_WARNING_2";
165:
166:            /** Message constant for key in the resource bundle. */
167:            public static final String GUI_ERR_RESOURCE_PERMISSIONS_2 = "GUI_ERR_RESOURCE_PERMISSIONS_2";
168:
169:            /** Message constant for key in the resource bundle. */
170:            public static final String GUI_EXPLORER_STATE0_0 = "GUI_EXPLORER_STATE0_0";
171:
172:            /** Message constant for key in the resource bundle. */
173:            public static final String GUI_EXPLORER_STATE1_0 = "GUI_EXPLORER_STATE1_0";
174:
175:            /** Message constant for key in the resource bundle. */
176:            public static final String GUI_EXPLORER_STATE2_0 = "GUI_EXPLORER_STATE2_0";
177:
178:            /** Message constant for key in the resource bundle. */
179:            public static final String GUI_EXPLORER_STATE3_0 = "GUI_EXPLORER_STATE3_0";
180:
181:            /** Message constant for key in the resource bundle. */
182:            public static final String GUI_EXPLORER_STATENIP_0 = "GUI_EXPLORER_STATENIP_0";
183:
184:            /** Message constant for key in the resource bundle. */
185:            public static final String GUI_LABEL_BROADCAST_FROM_SYSTEM_0 = "GUI_LABEL_BROADCAST_FROM_SYSTEM_0";
186:
187:            /** Message constant for key in the resource bundle. */
188:            public static final String GUI_LABEL_BROADCASTMESSAGEFROM_0 = "GUI_LABEL_BROADCASTMESSAGEFROM_0";
189:
190:            /** Message constant for key in the resource bundle. */
191:            public static final String GUI_LABEL_LOGINADDRESS_0 = "GUI_LABEL_LOGINADDRESS_0";
192:
193:            /** Message constant for key in the resource bundle. */
194:            public static final String GUI_LABEL_LOGINTIME_0 = "GUI_LABEL_LOGINTIME_0";
195:
196:            /** Message constant for key in the resource bundle. */
197:            public static final String GUI_LABEL_OU_0 = "GUI_LABEL_OU_0";
198:
199:            /** Message constant for key in the resource bundle. */
200:            public static final String GUI_LABEL_PROJECT_0 = "GUI_LABEL_PROJECT_0";
201:
202:            /** Message constant for key in the resource bundle. */
203:            public static final String GUI_LABEL_SITE_0 = "GUI_LABEL_SITE_0";
204:
205:            /** Message constant for key in the resource bundle. */
206:            public static final String GUI_LABEL_USER_0 = "GUI_LABEL_USER_0";
207:
208:            /** Message constant for key in the resource bundle. */
209:            public static final String GUI_LABEL_VIEW_0 = "GUI_LABEL_VIEW_0";
210:
211:            /** Message constant for key in the resource bundle. */
212:            public static final String GUI_LABEL_WPTITLE_1 = "GUI_LABEL_WPTITLE_1";
213:
214:            /** Message constant for key in the resource bundle. */
215:            public static final String GUI_LOGIN_BUTTON_0 = "GUI_LOGIN_BUTTON_0";
216:
217:            /** Message constant for key in the resource bundle. */
218:            public static final String GUI_LOGIN_BUTTON_ALREADY_IN_0 = "GUI_LOGIN_BUTTON_ALREADY_IN_0";
219:
220:            /** Message constant for key in the resource bundle. */
221:            public static final String GUI_LOGIN_FAILED_0 = "GUI_LOGIN_FAILED_0";
222:
223:            /** Message constant for key in the resource bundle. */
224:            public static final String GUI_LOGIN_FAILED_DISABLED_0 = "GUI_LOGIN_FAILED_DISABLED_0";
225:
226:            /** Message constant for key in the resource bundle. */
227:            public static final String GUI_LOGIN_FAILED_NO_TARGET_PERMISSIONS_1 = "GUI_LOGIN_FAILED_NO_TARGET_PERMISSIONS_1";
228:
229:            /** Message constant for key in the resource bundle. */
230:            public static final String GUI_LOGIN_FAILED_NO_WORKPLACE_PERMISSIONS_0 = "GUI_LOGIN_FAILED_NO_WORKPLACE_PERMISSIONS_0";
231:
232:            /** Message constant for key in the resource bundle. */
233:            public static final String GUI_LOGIN_FAILED_TEMP_DISABLED_0 = "GUI_LOGIN_FAILED_TEMP_DISABLED_0";
234:
235:            /** Message constant for key in the resource bundle. */
236:            public static final String GUI_LOGIN_FAILED_WITH_MESSAGE_1 = "GUI_LOGIN_FAILED_WITH_MESSAGE_1";
237:
238:            /** Message constant for key in the resource bundle. */
239:            public static final String GUI_LOGIN_HEADLINE_0 = "GUI_LOGIN_HEADLINE_0";
240:
241:            /** Message constant for key in the resource bundle. */
242:            public static final String GUI_LOGIN_HEADLINE_ALREADY_IN_0 = "GUI_LOGIN_HEADLINE_ALREADY_IN_0";
243:
244:            /** Message constant for key in the resource bundle. */
245:            public static final String GUI_LOGIN_HEADLINE_SELECTED_ORGUNIT_1 = "GUI_LOGIN_HEADLINE_SELECTED_ORGUNIT_1";
246:
247:            /** Message constant for key in the resource bundle. */
248:            public static final String GUI_LOGIN_MESSAGE_0 = "GUI_LOGIN_MESSAGE_0";
249:
250:            /** Message constant for key in the resource bundle. */
251:            public static final String GUI_LOGIN_MESSAGE_ALREADY_IN_0 = "GUI_LOGIN_MESSAGE_ALREADY_IN_0";
252:
253:            /** Message constant for key in the resource bundle. */
254:            public static final String GUI_LOGIN_NO_DATA_0 = "GUI_LOGIN_NO_DATA_0";
255:
256:            /** Message constant for key in the resource bundle. */
257:            public static final String GUI_LOGIN_NO_NAME_0 = "GUI_LOGIN_NO_NAME_0";
258:
259:            /** Message constant for key in the resource bundle. */
260:            public static final String GUI_LOGIN_NO_PASSWORD_0 = "GUI_LOGIN_NO_PASSWORD_0";
261:
262:            /** Message constant for key in the resource bundle. */
263:            public static final String GUI_LOGIN_NOSCRIPT_1 = "GUI_LOGIN_NOSCRIPT_1";
264:
265:            /** Message constant for key in the resource bundle. */
266:            public static final String GUI_LOGIN_OPENCMS_IS_FREE_SOFTWARE_0 = "GUI_LOGIN_OPENCMS_IS_FREE_SOFTWARE_0";
267:
268:            /** Message constant for key in the resource bundle. */
269:            public static final String GUI_LOGIN_ORGUNIT_0 = "GUI_LOGIN_ORGUNIT_0";
270:
271:            /** Message constant for key in the resource bundle. */
272:            public static final String GUI_LOGIN_ORGUNIT_SELECT_OFF_0 = "GUI_LOGIN_ORGUNIT_SELECT_OFF_0";
273:
274:            /** Message constant for key in the resource bundle. */
275:            public static final String GUI_LOGIN_ORGUNIT_SELECT_ON_0 = "GUI_LOGIN_ORGUNIT_SELECT_ON_0";
276:
277:            /** Message constant for key in the resource bundle. */
278:            public static final String GUI_LOGIN_PASSWORD_0 = "GUI_LOGIN_PASSWORD_0";
279:
280:            /** Message constant for key in the resource bundle. */
281:            public static final String GUI_LOGIN_RIGHTS_RESERVED_0 = "GUI_LOGIN_RIGHTS_RESERVED_0";
282:
283:            /** Message constant for key in the resource bundle. */
284:            public static final String GUI_LOGIN_SUCCESS_WITH_MESSAGE_2 = "GUI_LOGIN_SUCCESS_WITH_MESSAGE_2";
285:
286:            /** Message constant for key in the resource bundle. */
287:            public static final String GUI_LOGIN_TITLE_0 = "GUI_LOGIN_TITLE_0";
288:
289:            /** Message constant for key in the resource bundle. */
290:            public static final String GUI_LOGIN_TRADEMARKS_0 = "GUI_LOGIN_TRADEMARKS_0";
291:
292:            /** Message constant for key in the resource bundle. */
293:            public static final String GUI_LOGIN_UNKNOWN_RESOURCE_1 = "GUI_LOGIN_UNKNOWN_RESOURCE_1";
294:
295:            /** Message constant for key in the resource bundle. */
296:            public static final String GUI_LOGIN_USERNAME_0 = "GUI_LOGIN_USERNAME_0";
297:
298:            /** Message constant for key in the resource bundle. */
299:            public static final String INIT_ADD_DIALOG_HANDLER_2 = "INIT_ADD_DIALOG_HANDLER_2";
300:
301:            /** Message constant for key in the resource bundle. */
302:            public static final String INIT_ADD_EXPORT_POINT_2 = "INIT_ADD_EXPORT_POINT_2";
303:
304:            /** Message constant for key in the resource bundle. */
305:            public static final String INIT_ADD_MENURULE_1 = "INIT_ADD_MENURULE_1";
306:
307:            /** Message constant for key in the resource bundle. */
308:            public static final String INIT_ADD_TYPE_SETTING_1 = "INIT_ADD_TYPE_SETTING_1";
309:
310:            /** Message constant for key in the resource bundle. */
311:            public static final String INIT_ADD_TYPE_SETTING_FAILED_1 = "INIT_ADD_TYPE_SETTING_FAILED_1";
312:
313:            /** Message constant for key in the resource bundle. */
314:            public static final String INIT_ADV_PROP_DIALOG_HIDE_TABS_0 = "INIT_ADV_PROP_DIALOG_HIDE_TABS_0";
315:
316:            /** Message constant for key in the resource bundle. */
317:            public static final String INIT_ADV_PROP_DIALOG_SHOW_TABS_0 = "INIT_ADV_PROP_DIALOG_SHOW_TABS_0";
318:
319:            /** Message constant for key in the resource bundle. */
320:            public static final String INIT_AUTO_LOCK_DISABLED_0 = "INIT_AUTO_LOCK_DISABLED_0";
321:
322:            /** Message constant for key in the resource bundle. */
323:            public static final String INIT_AUTO_LOCK_ENABLED_0 = "INIT_AUTO_LOCK_ENABLED_0";
324:
325:            /** Message constant for key in the resource bundle. */
326:            public static final String INIT_DEFAULT_LOCALE_1 = "INIT_DEFAULT_LOCALE_1";
327:
328:            /** Message constant for key in the resource bundle. */
329:            public static final String INIT_DEFAULT_USER_SETTINGS_1 = "INIT_DEFAULT_USER_SETTINGS_1";
330:
331:            /** Message constant for key in the resource bundle. */
332:            public static final String INIT_DIRECT_EDIT_PROVIDER_1 = "INIT_DIRECT_EDIT_PROVIDER_1";
333:
334:            /** Message constant for key in the resource bundle. */
335:            public static final String INIT_EDITOR_ACTION_CLASS_1 = "INIT_EDITOR_ACTION_CLASS_1";
336:
337:            /** Message constant for key in the resource bundle. */
338:            public static final String INIT_EDITOR_CSSHANDLER_CLASS_1 = "INIT_EDITOR_CSSHANDLER_CLASS_1";
339:
340:            /** Message constant for key in the resource bundle. */
341:            public static final String INIT_EDITOR_DISPLAY_OPTS_1 = "INIT_EDITOR_DISPLAY_OPTS_1";
342:
343:            /** Message constant for key in the resource bundle. */
344:            public static final String INIT_EDITOR_HANDLER_CLASS_1 = "INIT_EDITOR_HANDLER_CLASS_1";
345:
346:            /** Message constant for key in the resource bundle. */
347:            public static final String INIT_EDITOR_PRE_ACTION_2 = "INIT_EDITOR_PRE_ACTION_2";
348:
349:            /** Message constant for key in the resource bundle. */
350:            public static final String INIT_LABEL_LINKS_IN_FOLDER_1 = "INIT_LABEL_LINKS_IN_FOLDER_1";
351:
352:            /** Message constant for key in the resource bundle. */
353:            public static final String INIT_MAX_FILE_UPLOAD_SIZE_1 = "INIT_MAX_FILE_UPLOAD_SIZE_1";
354:
355:            /** Message constant for key in the resource bundle. */
356:            public static final String INIT_MAX_FILE_UPLOAD_SIZE_UNLIMITED_0 = "INIT_MAX_FILE_UPLOAD_SIZE_UNLIMITED_0";
357:
358:            /** Message constant for key in the resource bundle. */
359:            public static final String INIT_NONCRIT_ERROR_0 = "INIT_NONCRIT_ERROR_0";
360:
361:            /** Message constant for key in the resource bundle. */
362:            public static final String INIT_PROP_ON_STRUCT_FALSE_0 = "INIT_PROP_ON_STRUCT_FALSE_0";
363:
364:            /** Message constant for key in the resource bundle. */
365:            public static final String INIT_PROP_ON_STRUCT_TRUE_0 = "INIT_PROP_ON_STRUCT_TRUE_0";
366:
367:            /** Message constant for key in the resource bundle. */
368:            public static final String INIT_REMOVE_EXPLORER_TYPE_SETTING_1 = "INIT_REMOVE_EXPLORER_TYPE_SETTING_1";
369:
370:            /** Message constant for key in the resource bundle. */
371:            public static final String INIT_USER_MANAGEMENT_ICON_DISABLED_0 = "INIT_USER_MANAGEMENT_ICON_DISABLED_0";
372:
373:            /** Message constant for key in the resource bundle. */
374:            public static final String INIT_USER_MANAGEMENT_ICON_ENABLED_0 = "INIT_USER_MANAGEMENT_ICON_ENABLED_0";
375:
376:            /** Message constant for key in the resource bundle. */
377:            public static final String INIT_VFS_ACCESS_INITIALIZED_0 = "INIT_VFS_ACCESS_INITIALIZED_0";
378:
379:            /** Message constant for key in the resource bundle. */
380:            public static final String INIT_WORKPLACE_INITIALIZE_START_0 = "INIT_WORKPLACE_INITIALIZE_START_0";
381:
382:            /** Message constant for key in the resource bundle. */
383:            public static final String INIT_WORKPLACE_LOCALIZED_1 = "INIT_WORKPLACE_LOCALIZED_1";
384:
385:            /** Message constant for key in the resource bundle. */
386:            public static final String INIT_WORKPLACE_VIEW_1 = "INIT_WORKPLACE_VIEW_1";
387:
388:            /** Message constant for key in the resource bundle. */
389:            public static final String INIT_XMLCONTENT_AUTOCORRECT_DISABLED_0 = "INIT_XMLCONTENT_AUTOCORRECT_DISABLED_0";
390:
391:            /** Message constant for key in the resource bundle. */
392:            public static final String INIT_XMLCONTENT_AUTOCORRECT_ENABLED_0 = "INIT_XMLCONTENT_AUTOCORRECT_ENABLED_0";
393:
394:            /** Message constant for key in the resource bundle. */
395:            public static final String LOG_DIALOG_HANDLER_CLASS_2 = "LOG_DIALOG_HANDLER_CLASS_2";
396:
397:            /** Message constant for key in the resource bundle. */
398:            public static final String LOG_EVENT_CLEAR_CACHES_0 = "LOG_EVENT_CLEAR_CACHES_0";
399:
400:            /** Message constant for key in the resource bundle. */
401:            public static final String LOG_INCLUDE_ERRORPAGE_FAILED_0 = "LOG_INCLUDE_ERRORPAGE_FAILED_0";
402:
403:            /** Message constant for key in the resource bundle. */
404:            public static final String LOG_INVALID_EDITOR_CSSHANDLER_1 = "LOG_INVALID_EDITOR_CSSHANDLER_1";
405:
406:            /** Message constant for key in the resource bundle. */
407:            public static final String LOG_INVALID_EDITOR_PRE_ACTION_1 = "LOG_INVALID_EDITOR_PRE_ACTION_1";
408:
409:            /** Message constant for key in the resource bundle. */
410:            public static final String LOG_LOGIN_NO_STARTUP_PROJECT_2 = "LOG_LOGIN_NO_STARTUP_PROJECT_2";
411:
412:            /** Message constant for key in the resource bundle. */
413:            public static final String LOG_NO_TEMP_FILE_PROJECT_0 = "LOG_NO_TEMP_FILE_PROJECT_0";
414:
415:            /** Message constant for key in the resource bundle. */
416:            public static final String LOG_PARAM_RESOURCE_2 = "LOG_PARAM_RESOURCE_2";
417:
418:            /** Message constant for key in the resource bundle. */
419:            public static final String LOG_READING_VIEW_FOLDER_FAILED_1 = "LOG_READING_VIEW_FOLDER_FAILED_1";
420:
421:            /** Message constant for key in the resource bundle. */
422:            public static final String LOG_SET_PARAM_2 = "LOG_SET_PARAM_2";
423:
424:            /** Message constant for key in the resource bundle. */
425:            public static final String LOG_THREAD_CREATION_FAILED_1 = "LOG_THREAD_CREATION_FAILED_1";
426:
427:            /** Message constant for key in the resource bundle. */
428:            public static final String LOG_UNSUPPORTED_ENCODING_SET_1 = "LOG_UNSUPPORTED_ENCODING_SET_1";
429:
430:            /** Message constant for key in the resource bundle. */
431:            public static final String LOG_WORKPLACE_INIT_NO_LOCALES_1 = "LOG_WORKPLACE_INIT_NO_LOCALES_1";
432:
433:            /** Message constant for key in the resource bundle. */
434:            public static final String LOG_WORKPLACE_INIT_NO_VIEWS_1 = "LOG_WORKPLACE_INIT_NO_VIEWS_1";
435:
436:            /** Name of the used resource bundle. */
437:            private static final String BUNDLE_NAME = "org.opencms.workplace.messages";
438:
439:            /** Static instance member. */
440:            private static final I_CmsMessageBundle INSTANCE = new Messages();
441:
442:            /**The part of  state constant. */
443:            private static final String STATE_POSTFIX = "_0";
444:
445:            /**The part of  state constant. */
446:            private static final String STATE_PREFIX = "GUI_EXPLORER_STATE";
447:
448:            /**
449:             * Hides the public constructor for this utility class.<p>
450:             */
451:            private Messages() {
452:
453:                // hide the constructor
454:            }
455:
456:            /**
457:             * Returns an instance of this localized message accessor.<p>
458:             * 
459:             * @return an instance of this localized message accessor
460:             */
461:            public static I_CmsMessageBundle get() {
462:
463:                return INSTANCE;
464:            }
465:
466:            /**
467:             * Create constant name.
468:             * @param state  STATE_UNCHANGED, STATE_CHANGED, STATE_NEW or STATE_DELETED.
469:             * @return cconstanname as String
470:             */
471:            public static String getStateKey(CmsResourceState state) {
472:
473:                StringBuffer sb = new StringBuffer(STATE_PREFIX);
474:                sb.append(state);
475:                sb.append(STATE_POSTFIX);
476:                return sb.toString();
477:
478:            }
479:
480:            /**
481:             * Returns the bundle name for this OpenCms package.<p>
482:             * 
483:             * @return the bundle name for this OpenCms package
484:             */
485:            public String getBundleName() {
486:
487:                return BUNDLE_NAME;
488:            }
489:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.