/** * * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. * 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.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * Copyright (c) 2009-2014 Câmara dos Deputados. Todos os direitos reservados. * * e-Democracia é um software livre; você pode redistribuí-lo e/ou modificá-lo dentro * dos termos da Licença Pública Geral Menor GNU como publicada pela Fundação do * Software Livre (FSF); na versão 2.1 da Licença, ou (na sua opinião) qualquer versão. * * Este programa é distribuído na esperança de que possa ser útil, mas SEM NENHUMA GARANTIA; * sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. * Veja a Licença Pública Geral Menor GNU para maiores detalhes. * */ package com.liferay.portlet.messageboards.util; public class MBLabelKeys { public static final String RECENT_POSTS = "recent-posts"; public static final String FORUM_ADD_CATEGORY = "forum-add-category"; public static final String FORUM_ADD_SUBCATEGORY = "forum-add-subcategory"; public static final String POST_NEW_THREAD = "post-new-thread"; public static final String FORUM_CATEGORIES = "forum-categories"; public static final String FORUM_SUBCATEGORIES = "forum-subcategories"; public static final String THREADS = "threads"; public static final String FORUM_CATEGORY = "forum-category"; public static final String POSTS = "posts"; public static final String THREAD = "thread"; public static final String LOCK_THREAD = "lock-thread"; public static final String UNLOCK_THREAD = "unlock-thread"; public static final String MOVE_THREAD = "move-thread"; public static final String NUM_OF_CATEGORIES = "forum-num-of-categories"; public static final String NO_THREADS_IN_THIS_CATEGORY = "there-are-no-threads-in-this-category"; public static final String NO_SUBSCRIBED_TO_ANY_CATEGORIES = "you-are-not-subscribed-to-any-categories"; public static final String NO_SUBSCRIBED_TO_ANY_THREADS = "you-are-not-subscribed-to-any-threads"; public static final String FORUM_NEW_CATEGORY = "forum-new-category"; public static final String FORUM_PARENT_CATEGORY = "forum-parent-category"; public static final String MERGE_WITH_PARENT_CATEGORY = "merge-with-parent-category"; public static final String NEW_MESSAGE = "new-message"; }