001/* 002 * This library is part of OpenCms - 003 * the Open Source Content Management System 004 * 005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com) 006 * 007 * This library is free software; you can redistribute it and/or 008 * modify it under the terms of the GNU Lesser General Public 009 * License as published by the Free Software Foundation; either 010 * version 2.1 of the License, or (at your option) any later version. 011 * 012 * This library is distributed in the hope that it will be useful, 013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 015 * Lesser General Public License for more details. 016 * 017 * For further information about Alkacon Software, please see the 018 * company website: http://www.alkacon.com 019 * 020 * For further information about OpenCms, please see the 021 * project website: http://www.opencms.org 022 * 023 * You should have received a copy of the GNU Lesser General Public 024 * License along with this library; if not, write to the Free Software 025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 026 */ 027 028package org.opencms.ui.dialogs; 029 030import org.opencms.i18n.A_CmsMessageBundle; 031import org.opencms.i18n.I_CmsMessageBundle; 032 033/** 034 * Message bundle class.<p> 035 */ 036public class Messages extends A_CmsMessageBundle { 037 038 /** Message constant for key in the resource bundle. */ 039 public static final String ERR_DAILOG_INSTANTIATION_FAILED_1 = "ERR_DAILOG_INSTANTIATION_FAILED_1"; 040 041 /** Message constant for key in the resource bundle. */ 042 public static final String ERR_DIALOG_NOT_AVAILABLE_1 = "ERR_DIALOG_NOT_AVAILABLE_1"; 043 044 /** Message constant for key in the resource bundle. */ 045 public static final String GUI_COPY_MOVE_AUTOMATIC_0 = "GUI_COPY_MOVE_AUTOMATIC_0"; 046 047 /** Message constant for key in the resource bundle. */ 048 public static final String GUI_COPY_MOVE_CONFIRM_OVERWRITE_MESSAGE_0 = "GUI_COPY_MOVE_CONFIRM_OVERWRITE_MESSAGE_0"; 049 050 /** Message constant for key in the resource bundle. */ 051 public static final String GUI_COPY_MOVE_CONFIRM_OVERWRITE_TITLE_0 = "GUI_COPY_MOVE_CONFIRM_OVERWRITE_TITLE_0"; 052 053 /** Message constant for key in the resource bundle. */ 054 public static final String GUI_COPY_MOVE_CONTAINERPAGE_COPY_0 = "GUI_COPY_MOVE_CONTAINERPAGE_COPY_0"; 055 056 /** Message constant for key in the resource bundle. */ 057 public static final String GUI_COPY_MOVE_CONTAINERPAGE_REUSE_0 = "GUI_COPY_MOVE_CONTAINERPAGE_REUSE_0"; 058 059 /** Message constant for key in the resource bundle. */ 060 public static final String GUI_COPY_MOVE_SELECT_TARGET_CAPTION_0 = "GUI_COPY_MOVE_SELECT_TARGET_CAPTION_0"; 061 062 /** Message constant for key in the resource bundle. */ 063 public static final String GUI_COPY_MOVE_SET_MACRO_VALUES_TITLE_0 = "GUI_COPY_MOVE_SET_MACRO_VALUES_TITLE_0"; 064 065 /** Message constant for key in the resource bundle. */ 066 public static final String GUI_COPY_MOVE_SUBSITEMAP_0 = "GUI_COPY_MOVE_SUBSITEMAP_0"; 067 068 /** Message constant for key in the resource bundle. */ 069 public static final String GUI_DIALOG_0 = "GUI_DIALOG_0"; 070 071 /** Message constant for key in the resource bundle. */ 072 public static final String GUI_USER_DATA_ADDRESS_0 = "GUI_USER_DATA_ADDRESS_0"; 073 074 /** Message constant for key in the resource bundle. */ 075 public static final String GUI_USER_DATA_CHECK_INFO_0 = "GUI_USER_DATA_CHECK_INFO_0"; 076 077 /** Message constant for key in the resource bundle. */ 078 public static final String GUI_USER_DATA_CITY_0 = "GUI_USER_DATA_CITY_0"; 079 080 /** Message constant for key in the resource bundle. */ 081 public static final String GUI_USER_DATA_COUNTRY_0 = "GUI_USER_DATA_COUNTRY_0"; 082 083 /** Message constant for key in the resource bundle. */ 084 public static final String GUI_USER_DATA_DELETE_IMAGE_0 = "GUI_USER_DATA_DELETE_IMAGE_0"; 085 086 /** Message constant for key in the resource bundle. */ 087 public static final String GUI_USER_DATA_EMAIL_0 = "GUI_USER_DATA_EMAIL_0"; 088 089 /** Message constant for key in the resource bundle. */ 090 public static final String GUI_USER_DATA_EMAIL_VALIDATION_ERROR_0 = "GUI_USER_DATA_EMAIL_VALIDATION_ERROR_0"; 091 092 /** Message constant for key in the resource bundle. */ 093 public static final String GUI_USER_DATA_FIRSTNAME_0 = "GUI_USER_DATA_FIRSTNAME_0"; 094 095 /** Message constant for key in the resource bundle. */ 096 public static final String GUI_USER_DATA_INSTITUTION_0 = "GUI_USER_DATA_INSTITUTION_0"; 097 098 /** Message constant for key in the resource bundle. */ 099 public static final String GUI_USER_DATA_LASTNAME_0 = "GUI_USER_DATA_LASTNAME_0"; 100 101 /** Message constant for key in the resource bundle. */ 102 public static final String GUI_USER_DATA_NOT_EMPTY_VALIDATION_ERROR_1 = "GUI_USER_DATA_NOT_EMPTY_VALIDATION_ERROR_1"; 103 104 /** Message constant for key in the resource bundle. */ 105 public static final String GUI_USER_DATA_ZIPCODE_0 = "GUI_USER_DATA_ZIPCODE_0"; 106 107 /** Name of the used resource bundle. */ 108 private static final String BUNDLE_NAME = "org.opencms.ui.dialogs.messages"; 109 110 /** Static instance member. */ 111 private static final I_CmsMessageBundle INSTANCE = new Messages(); 112 113 /** 114 * Hides the public constructor for this utility class.<p> 115 */ 116 private Messages() { 117 118 // hide the constructor 119 } 120 121 /** 122 * Returns an instance of this localized message accessor.<p> 123 * 124 * @return an instance of this localized message accessor 125 */ 126 public static I_CmsMessageBundle get() { 127 128 return INSTANCE; 129 } 130 131 /** 132 * Returns the bundle name for this OpenCms package.<p> 133 * 134 * @return the bundle name for this OpenCms package 135 */ 136 public String getBundleName() { 137 138 return BUNDLE_NAME; 139 } 140 141}