blob: e4f2c54d2d7bd52cf37be131d50e6f495fca930b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package ctfc
const (
// Navgiation
loginNavTitle = "Login"
registerNavTitle = "Register"
directMessagesNavTitle = "Direct Messages"
accountNavTitle = "Account"
logoutNavTitle = "Logout"
createChatNavTitle = "Creating a new chat"
chatNavTitle = "Chats"
editPasswordNavTitle = "Editing Password"
editNameNavTitle = "Editing Name"
// Help messages
chatsWindowHelpMsg = "Chats page options: [(D)irect messages/(A)ccount/(L)ogout/(<) for previous page/(>) for next page/(C) for create chat/(name) for go to chat room by name/(number) for go to chat room by number/(H)elp]"
chatWindowHelpMsg = "Help info"
// Input names
usernameInName = "Username"
passwordInName = "Password"
nameInName = "Name"
chatNameInName = "Chat name"
chatDescInName = "Description"
currentPasswordInName = "Current password"
newPasswordInName = "New password"
newNameInName = "New name"
// Input specifications
startupWindowSpec = "[L/R]"
chatWindowSpec = "Message or [C/D/A/L/</>/H]"
accountWindowSpec = "[C/D/L/number/H]"
logoutWindowSpec = "[Y/N]"
inputBackSpec = " or [B for Back to start page]"
usernameSpec = " [A-z, 0-9, *, ., _, -; at least 1 letter] or [B for Back to start page]"
passwordSpec = " [5-40 characters; at least 1 number]"
nameSpec = " [2-60 characters]"
chatsSpec = "[D/A/L/</>/C/E/name/number/H]"
chatNameSpec = " [2-20 characters; A-z, 0-9, spaces, _, -] or [B for Back to chats page]"
chatDescSpec = " [0-30 characters]"
// Other
hiddenValue = "[HIDDEN]"
)
|