Renamed lang references, switched to zutil UserMessageManager

This commit is contained in:
Ziver Koc 2018-08-06 18:53:40 +02:00
parent b84f583d1c
commit 9c91d96ce7
27 changed files with 245 additions and 295 deletions

View file

@ -0,0 +1,19 @@
package zall;
import java.util.Locale;
/**
* Zallery globally defined constants
*/
public interface ZalleryConstants {
/** Session Constants **/
public static final String SESSION_KEY_USER_MSG = "zall_user_message";
/** Language Key Constants **/
String LANG_BASENAME = "zall.lang.zallery_lang";
Locale LANG_DEFAULT = Locale.ENGLISH;
}