26 lines
443 B
Go
26 lines
443 B
Go
package common
|
|
|
|
const (
|
|
//button
|
|
BUTTON_LOGIN = "login"
|
|
BUTTON_REGISTE = "registe"
|
|
BUTTON_RANDOM = "random"
|
|
BUTTON_OK = "ok"
|
|
BUTTON_CANCEL = "cancel"
|
|
|
|
//label
|
|
LABEL_WELCOME = "welcom,The service you choose is "
|
|
LABEL_NICKNAME = "nickname"
|
|
LABEL_ACCOUNT = "account"
|
|
|
|
// form title
|
|
FORM_TITLE_CREATEROLE = "create role"
|
|
FORM_TITLE_LOGIN = "login"
|
|
|
|
// info
|
|
INFO_WAIT = "Please wait"
|
|
|
|
// menu
|
|
MENU_FILE = "file"
|
|
)
|