diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-07-23 10:19:42 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-07-23 10:19:42 +0300 |
| commit | 803099c73e6b1f4a5fb84c204ebb071ee1e350b8 (patch) | |
| tree | 4720a40e84fe828de8cbe48f6e4518e455311786 /go-src/windowMessages.go | |
| parent | 0b281b813a9ab00d7c69eb140ab5ac2952987316 (diff) | |
| download | ctfc-803099c73e6b1f4a5fb84c204ebb071ee1e350b8.tar ctfc-803099c73e6b1f4a5fb84c204ebb071ee1e350b8.tar.gz ctfc-803099c73e6b1f4a5fb84c204ebb071ee1e350b8.zip | |
Reworked user functions into methods, properly implemented account updating
Diffstat (limited to 'go-src/windowMessages.go')
| -rw-r--r-- | go-src/windowMessages.go | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/go-src/windowMessages.go b/go-src/windowMessages.go index 21dd094..e4f2c54 100644 --- a/go-src/windowMessages.go +++ b/go-src/windowMessages.go @@ -9,17 +9,22 @@ const ( 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" + 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]" |
