-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkeys.go
32 lines (23 loc) · 885 Bytes
/
keys.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
package localization
const (
//
// Section: Legacy Push Notifications (don't follow key conventions)
//
PushTitleDepositReceived = "push.title.depositReceived"
PushSubtitleDepositReceived = "push.subtitle.depositReceived"
PushTitleKinReturned = "push.title.kinReturned"
PushSubtitleKinReturned = "push.subtitle.kinReturned"
//
// Section: Chats
//
// Chat Titles
ChatTitleCashTransactions = "title.chat.cashTransactions"
ChatTitleCodeTeam = "title.chat.codeTeam"
ChatTitlePayments = "title.chat.payments"
// Message Bodies
ChatMessageReferralBonus = "subtitle.chat.referralBonus"
ChatMessageWelcomeBonus = "subtitle.chat.welcomeBonus"
ChatMessageUsdcDeposited = "subtitle.chat.usdcDeposited"
ChatMessageUsdcBeingConverted = "subtitle.chat.usdcBeingConverted"
ChatMessageKinAvailableForUse = "subtitle.chat.kinAvailableForUse"
)