]> git.argeo.org Git - lgpl/argeo-commons.git/blob - cms/CmsMsg.java
Prepare next development cycle
[lgpl/argeo-commons.git] / cms / CmsMsg.java
1 package org.argeo.cms;
2
3 import org.argeo.cms.i18n.DefaultsResourceBundle;
4 import org.argeo.cms.i18n.Msg;
5
6 /** Standard CMS messages. */
7 public class CmsMsg extends DefaultsResourceBundle {
8 public final static Msg username = new Msg("username");
9 public final static Msg password = new Msg("password");
10 public final static Msg logout = new Msg("log out");
11 public final static Msg login = new Msg("sign in");
12 public final static Msg register = new Msg("register");
13
14 public final static Msg changePassword = new Msg("change password");
15 public final static Msg currentPassword = new Msg("current password");
16 public final static Msg newPassword = new Msg("new password");
17 public final static Msg repeatNewPassword = new Msg("repeat new password");
18 public final static Msg passwordChanged = new Msg("password changed");
19
20 static {
21 Msg.init(CmsMsg.class);
22 }
23 }