001/* 002 * This library is part of OpenCms - 003 * the Open Source Content Management System 004 * 005 * Copyright (C) Alkacon Software (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.gwt.client.seo; 029 030/** 031 * Message accessor class for the alias dialog.<p> 032 */ 033public class CmsAliasMessages { 034 035 /** 036 * Message accessor.<p> 037 * 038 * @return the message string 039 */ 040 public String addAlias() { 041 042 return Messages.get().key(Messages.GUI_ADD_ALIAS_0); 043 } 044 045 /** 046 * Message accessor.<p> 047 * 048 * @return the message string 049 */ 050 public String aliases() { 051 052 return Messages.get().key(Messages.GUI_ALIASES_0); 053 } 054 055 /** 056 * Message accessor.<p> 057 * 058 * @return the message string 059 */ 060 public String enterAlias() { 061 062 return Messages.get().key(Messages.GUI_ENTER_ALIAS_0); 063 } 064 065 /** 066 * Message accessor.<p> 067 * 068 * @return the message string 069 */ 070 public String existingAliases() { 071 072 return Messages.get().key(Messages.GUI_EXISTING_ALIASES_0); 073 } 074 075 /** 076 * Message accessor.<p> 077 * 078 * @return the message string 079 */ 080 public String movedDescription() { 081 082 return Messages.get().key(Messages.GUI_ALIAS_MOVED_DESCRIPTION_0); 083 } 084 085 /** 086 * Message accessor.<p> 087 * 088 * @return the message string 089 */ 090 public String newAlias() { 091 092 return Messages.get().key(Messages.GUI_NEW_ALIAS_0); 093 } 094 095 /** 096 * Message accessor.<p> 097 * 098 * @return the message string 099 */ 100 public String optionMoved() { 101 102 return Messages.get().key(Messages.GUI_ALIAS_MOVED_0); 103 } 104 105 /** 106 * Message accessor.<p> 107 * 108 * @return the message string 109 */ 110 public String optionPage() { 111 112 return Messages.get().key(Messages.GUI_ALIAS_PAGE_0); 113 114 } 115 116 /** 117 * Message accessor.<p> 118 * 119 * @return the message string 120 */ 121 public String optionRedirect() { 122 123 return Messages.get().key(Messages.GUI_ALIAS_REDIRECT_0); 124 } 125 126 /** 127 * Message accessor.<p> 128 * 129 * @return the message string 130 */ 131 public String pageDescription() { 132 133 return Messages.get().key(Messages.GUI_ALIAS_PAGE_DESCRIPTION_0); 134 } 135 136 /** 137 * Message accessor.<p> 138 * 139 * @return the message string 140 */ 141 public String redirectDescription() { 142 143 return Messages.get().key(Messages.GUI_ALIAS_REDIRECT_DESCRIPTION_0); 144 } 145 146 /** 147 * Message accessor.<p> 148 * 149 * @return the message string 150 */ 151 public String removeAlias() { 152 153 return Messages.get().key(Messages.GUI_REMOVE_ALIAS_0); 154 } 155 156 /** 157 * Message accessor.<p> 158 * 159 * @return the message string 160 */ 161 public String seoOptions() { 162 163 return Messages.get().key(Messages.GUI_SEO_OPTIONS_0); 164 } 165 166}