@dydxprotocol/v4-localization 1.1.387 → 1.1.388
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -904,6 +904,26 @@
|
|
|
904
904
|
"TERMS_OF_USE": "Terms of Use",
|
|
905
905
|
"TESTNET": "Testnet"
|
|
906
906
|
},
|
|
907
|
+
"GLOBAL_CHAT": {
|
|
908
|
+
"GLOBAL_CHAT": "Global Chat",
|
|
909
|
+
"COUNT_ONLINE": "{COUNT} Online",
|
|
910
|
+
"TRADE_TO_UNLOCK_CHAT": "Trade to unlock chat",
|
|
911
|
+
"SEND_A_MESSAGE": "Send a message...",
|
|
912
|
+
"MESSAGE_TOO_LONG": "Message is too long. Please keep it under {CHARACTER_LIMIT} characters.",
|
|
913
|
+
"THIRTY_DAY_VOLUME": "30D Vol:",
|
|
914
|
+
"VOLUME_TO_UNLOCK": "vol. to unlock",
|
|
915
|
+
"WALLET_NOT_CONNECTED": "Wallet not connected",
|
|
916
|
+
"FAILED_TO_SEND_MESSAGE": "Failed to send message: {ERROR}",
|
|
917
|
+
"ERROR_MESSAGE_TOO_LARGE": "Your message is too long. Please keep it under 255 characters.",
|
|
918
|
+
"ERROR_MESSAGE_EMPTY": "Message cannot be empty.",
|
|
919
|
+
"ERROR_MISSING_FIELD": "Message is missing required fields.",
|
|
920
|
+
"ERROR_INVALID_ADDRESS": "Invalid dYdX address.",
|
|
921
|
+
"ERROR_INVALID_SIGNATURE": "Signature verification failed. Please try again.",
|
|
922
|
+
"ERROR_INVALID_TIMESTAMP": "Message expired. Please try again.",
|
|
923
|
+
"ERROR_RATE_LIMIT": "You're sending messages too fast. Please wait before trying again.",
|
|
924
|
+
"ERROR_INSUFFICIENT_VOLUME": "You need at least {MINIMUM_VOLUME} in trading volume to chat.",
|
|
925
|
+
"ERROR_VALIDATION": "Failed to send message. Please try again."
|
|
926
|
+
},
|
|
907
927
|
"WALLETS": {
|
|
908
928
|
"BACKPACK": "Backpack",
|
|
909
929
|
"BACKPACK_SOL": "Backpack (Solana)",
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -867,6 +867,27 @@ export const APP_STRING_KEYS = {
|
|
|
867
867
|
YOUR_POSITIONS: 'APP.GENERAL.YOUR_POSITIONS',
|
|
868
868
|
YOUR_TOKENS: 'APP.GENERAL.YOUR_TOKENS',
|
|
869
869
|
|
|
870
|
+
// GLOBAL_CHAT
|
|
871
|
+
|
|
872
|
+
COUNT_ONLINE: 'APP.GLOBAL_CHAT.COUNT_ONLINE',
|
|
873
|
+
ERROR_INSUFFICIENT_VOLUME: 'APP.GLOBAL_CHAT.ERROR_INSUFFICIENT_VOLUME',
|
|
874
|
+
ERROR_INVALID_ADDRESS: 'APP.GLOBAL_CHAT.ERROR_INVALID_ADDRESS',
|
|
875
|
+
ERROR_INVALID_SIGNATURE: 'APP.GLOBAL_CHAT.ERROR_INVALID_SIGNATURE',
|
|
876
|
+
ERROR_INVALID_TIMESTAMP: 'APP.GLOBAL_CHAT.ERROR_INVALID_TIMESTAMP',
|
|
877
|
+
ERROR_MESSAGE_EMPTY: 'APP.GLOBAL_CHAT.ERROR_MESSAGE_EMPTY',
|
|
878
|
+
ERROR_MESSAGE_TOO_LARGE: 'APP.GLOBAL_CHAT.ERROR_MESSAGE_TOO_LARGE',
|
|
879
|
+
ERROR_MISSING_FIELD: 'APP.GLOBAL_CHAT.ERROR_MISSING_FIELD',
|
|
880
|
+
ERROR_RATE_LIMIT: 'APP.GLOBAL_CHAT.ERROR_RATE_LIMIT',
|
|
881
|
+
ERROR_VALIDATION: 'APP.GLOBAL_CHAT.ERROR_VALIDATION',
|
|
882
|
+
FAILED_TO_SEND_MESSAGE: 'APP.GLOBAL_CHAT.FAILED_TO_SEND_MESSAGE',
|
|
883
|
+
GLOBAL_CHAT: 'APP.GLOBAL_CHAT.GLOBAL_CHAT',
|
|
884
|
+
MESSAGE_TOO_LONG: 'APP.GLOBAL_CHAT.MESSAGE_TOO_LONG',
|
|
885
|
+
SEND_A_MESSAGE: 'APP.GLOBAL_CHAT.SEND_A_MESSAGE',
|
|
886
|
+
THIRTY_DAY_VOLUME: 'APP.GLOBAL_CHAT.THIRTY_DAY_VOLUME',
|
|
887
|
+
TRADE_TO_UNLOCK_CHAT: 'APP.GLOBAL_CHAT.TRADE_TO_UNLOCK_CHAT',
|
|
888
|
+
VOLUME_TO_UNLOCK: 'APP.GLOBAL_CHAT.VOLUME_TO_UNLOCK',
|
|
889
|
+
WALLET_NOT_CONNECTED: 'APP.GLOBAL_CHAT.WALLET_NOT_CONNECTED',
|
|
890
|
+
|
|
870
891
|
// GLOBAL_COMMANDS
|
|
871
892
|
|
|
872
893
|
COMMANDS: 'APP.GLOBAL_COMMANDS.COMMANDS',
|