-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings.go
33 lines (30 loc) · 1.57 KB
/
strings.go
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
//go:build !lang_en && !lang_zh
// +build !lang_en,!lang_zh
package main
// English
const (
trnDirectVoiceBlock = "string:DirectVoiceBlock"
trnCertRequired = "string:CertRequired"
trnInvalidUsername = "string:InvalidUsername "
trnAuthenticatorFail = "string:AuthenticatorFail"
trnAuthenticatorNoUser = "string:AuthenticatorNoUser"
trnAuthenticatorInvalidCred = "string:AuthenticatorInvalidCred"
trnRequiredGroupNotMet = "string:RequiredGroupNotMet"
trnSimultaneousLoginDifferentIP = "string:SimultaneousLoginDifferentIP"
trnTooManySimultaneousLogin = "string:TooManySimultaneousLogin"
trnNoCELTSupport = "string:NoCELTSupport"
trnNoOpusSupport = "string:NoOpusSupport"
trnVersionTooOld = "string:VersionTooOld"
trnServerIsFull = "string:ServerIsFull"
trnPlatformInfoMissing = "string:PlatformInfoMissing"
trnDisableGroupShout = "string:DisableGroupShout"
trnEnableGroupShout = "string:EnableGroupShout"
trnEnableGuestMode = "string:EnableGuestMode"
trnDisableGuestMode = "string:DisableGuestMode"
trnCollapseToThisChannel = "string:CollapseToThisChannel"
trnChannelMemberMoveTo = "string:ChannelMemberMoveTo"
trnChannelMemberMoveFrom = "string:ChannelMemberMoveFrom"
trnEnablePromiscuousMode = "string:EnablePromiscuousMode"
trnDisablePromiscuousMode = "string:DisablePromiscuousMode"
trnPermissionReload = "string:PermissionReload"
)