37 lines
612 B
Go
37 lines
612 B
Go
package common
|
|
|
|
const (
|
|
// app
|
|
APP_NAME = "protocol"
|
|
|
|
// toolbar
|
|
TOOLBAR_WELCOME = "welcome"
|
|
TOOLBAR_TESTER = "tester"
|
|
|
|
//button
|
|
BUTTON_LOGIN = "login"
|
|
BUTTON_REGISTE = "registe"
|
|
BUTTON_RANDOM = "random"
|
|
BUTTON_OK = "ok"
|
|
BUTTON_CANCEL = "cancel"
|
|
|
|
//label
|
|
LABEL_CHOOSE = "welcome,The service you choose is "
|
|
LABEL_NICKNAME = "nickname"
|
|
LABEL_ACCOUNT = "account"
|
|
LABEL_WELCOME = "welcome "
|
|
|
|
// form title
|
|
FORM_TITLE_CREATEROLE = "create role"
|
|
FORM_TITLE_LOGIN = "login"
|
|
|
|
// info
|
|
INFO_WAIT = "Please wait"
|
|
|
|
// menu
|
|
MENU_FILE = "file"
|
|
|
|
// datetiem
|
|
DATETIME = "datetime"
|
|
)
|