2020-05-28 14:58:25 +00:00
|
|
|
|
pragma Singleton
|
|
|
|
|
|
2020-06-17 19:18:31 +00:00
|
|
|
|
import QtQuick 2.13
|
2020-05-28 14:58:25 +00:00
|
|
|
|
|
|
|
|
|
QtObject {
|
2020-06-04 18:56:04 +00:00
|
|
|
|
readonly property int chatTypeOneToOne: 1
|
|
|
|
|
readonly property int chatTypePublic: 2
|
|
|
|
|
readonly property int chatTypePrivateGroupChat: 3
|
2020-12-10 11:53:39 +00:00
|
|
|
|
readonly property int chatTypeStatusUpdate: 4
|
2020-12-11 20:38:10 +00:00
|
|
|
|
readonly property int chatTypeCommunity: 6
|
|
|
|
|
|
|
|
|
|
readonly property int communityChatPublicAccess: 1
|
|
|
|
|
readonly property int communityChatInvitationOnlyAccess: 2
|
|
|
|
|
readonly property int communityChatOnRequestAccess: 3
|
2020-05-28 21:34:04 +00:00
|
|
|
|
|
2021-02-12 19:27:37 +00:00
|
|
|
|
readonly property int maxNbDaysToFetch: 30
|
2020-10-14 12:10:21 +00:00
|
|
|
|
readonly property int fetchRangeLast24Hours: 86400
|
|
|
|
|
readonly property int fetchRangeLast2Days: 172800
|
|
|
|
|
readonly property int fetchRangeLast3Days: 259200
|
|
|
|
|
readonly property int fetchRangeLast7Days: 604800
|
|
|
|
|
|
2020-09-25 19:44:40 +00:00
|
|
|
|
readonly property int limitLongChatText: 500
|
|
|
|
|
readonly property int limitLongChatTextCompactMode: 1000
|
|
|
|
|
|
2020-12-07 17:37:39 +00:00
|
|
|
|
readonly property int notificationPopupTTL: 5000
|
|
|
|
|
|
2021-03-16 19:19:48 +00:00
|
|
|
|
readonly property string lightThemeName: "light"
|
|
|
|
|
readonly property string darkThemeName: "dark"
|
|
|
|
|
|
2020-10-21 14:45:28 +00:00
|
|
|
|
readonly property string chat: "chat"
|
|
|
|
|
readonly property string wallet: "wallet"
|
2021-02-17 16:31:59 +00:00
|
|
|
|
readonly property string timeline: "timeline"
|
2020-10-21 14:45:28 +00:00
|
|
|
|
readonly property string browser: "browser"
|
|
|
|
|
readonly property string profile: "profile"
|
|
|
|
|
readonly property string node: "node"
|
|
|
|
|
readonly property string ui: "ui"
|
2021-02-17 16:31:59 +00:00
|
|
|
|
readonly property string community: "community"
|
2020-10-21 14:45:28 +00:00
|
|
|
|
|
2020-11-25 10:46:18 +00:00
|
|
|
|
readonly property int fontSizeXS: 0
|
|
|
|
|
readonly property int fontSizeS: 1
|
|
|
|
|
readonly property int fontSizeM: 2
|
|
|
|
|
readonly property int fontSizeL: 3
|
|
|
|
|
readonly property int fontSizeXL: 4
|
|
|
|
|
readonly property int fontSizeXXL: 5
|
|
|
|
|
|
2020-10-15 11:53:27 +00:00
|
|
|
|
readonly property int notifyAllMessages: 0
|
|
|
|
|
readonly property int notifyJustMentions: 1
|
|
|
|
|
readonly property int notifyNone: 2
|
2020-11-17 19:01:50 +00:00
|
|
|
|
readonly property int notificationPreviewAnonymous: 0
|
|
|
|
|
readonly property int notificationPreviewNameOnly: 1
|
|
|
|
|
readonly property int notificationPreviewNameAndMessage: 2
|
2020-09-04 11:55:24 +00:00
|
|
|
|
readonly property int fetchMoreMessagesButton: -2
|
2020-06-08 17:29:28 +00:00
|
|
|
|
readonly property int chatIdentifier: -1
|
2020-06-10 15:14:12 +00:00
|
|
|
|
readonly property int unknownContentType: 0
|
2020-06-04 18:56:04 +00:00
|
|
|
|
readonly property int messageType: 1
|
|
|
|
|
readonly property int stickerType: 2
|
2020-06-10 15:14:12 +00:00
|
|
|
|
readonly property int statusType: 3
|
|
|
|
|
readonly property int emojiType: 4
|
|
|
|
|
readonly property int transactionType: 5
|
|
|
|
|
readonly property int systemMessagePrivateGroupType: 6
|
2020-07-17 19:44:25 +00:00
|
|
|
|
readonly property int imageType: 7
|
2020-07-30 16:07:41 +00:00
|
|
|
|
readonly property int audioType: 8
|
2020-12-11 20:38:10 +00:00
|
|
|
|
readonly property int communityInviteType: 9
|
2020-06-04 18:56:04 +00:00
|
|
|
|
|
2020-06-10 15:55:24 +00:00
|
|
|
|
readonly property string watchWalletType: "watch"
|
|
|
|
|
readonly property string keyWalletType: "key"
|
|
|
|
|
readonly property string seedWalletType: "seed"
|
|
|
|
|
readonly property string generatedWalletType: "generated"
|
|
|
|
|
|
2021-03-30 14:35:53 +00:00
|
|
|
|
readonly property string windows: "windows"
|
|
|
|
|
readonly property string linux: "linux"
|
|
|
|
|
readonly property string mac: "mac"
|
|
|
|
|
|
2020-08-25 18:44:29 +00:00
|
|
|
|
// Transaction states
|
2020-09-03 20:43:08 +00:00
|
|
|
|
readonly property int addressRequested: 1
|
|
|
|
|
readonly property int declined: 2
|
|
|
|
|
readonly property int addressReceived: 3
|
|
|
|
|
readonly property int transactionRequested: 4
|
|
|
|
|
readonly property int transactionDeclined: 5
|
|
|
|
|
readonly property int pending: 6
|
|
|
|
|
readonly property int confirmed: 7
|
2020-08-25 18:44:29 +00:00
|
|
|
|
|
2020-09-25 16:52:06 +00:00
|
|
|
|
readonly property int maxTokens: 200
|
|
|
|
|
|
2020-09-03 20:14:44 +00:00
|
|
|
|
readonly property string zeroAddress: "0x0000000000000000000000000000000000000000"
|
|
|
|
|
|
2020-10-15 19:08:56 +00:00
|
|
|
|
readonly property string networkMainnet: "mainnet_rpc"
|
2020-11-23 19:14:48 +00:00
|
|
|
|
readonly property string networkPOA: "poa_rpc"
|
|
|
|
|
readonly property string networkXDai: "xdai_rpc"
|
|
|
|
|
readonly property string networkGoerli: "goerli_rpc"
|
|
|
|
|
readonly property string networkRinkeby: "rinkeby_rpc"
|
|
|
|
|
readonly property string networkRopsten: "testnet_rpc"
|
2020-09-25 19:05:07 +00:00
|
|
|
|
|
|
|
|
|
readonly property string api_request: "api-request"
|
2020-10-02 17:30:27 +00:00
|
|
|
|
readonly property string web3SendAsyncReadOnly: "web3-send-async-read-only"
|
2020-12-14 20:43:46 +00:00
|
|
|
|
readonly property string web3DisconnectAccount: "web3-disconnect-account"
|
2020-09-25 19:05:07 +00:00
|
|
|
|
|
|
|
|
|
readonly property string permission_web3: "web3"
|
|
|
|
|
readonly property string permission_contactCode: "contact-code"
|
|
|
|
|
|
2020-10-05 16:24:43 +00:00
|
|
|
|
readonly property string personal_sign: "personal_sign"
|
|
|
|
|
readonly property string eth_sign: "eth_sign"
|
|
|
|
|
readonly property string eth_signTypedData: "eth_signTypedData"
|
|
|
|
|
readonly property string eth_signTypedData_v3: "eth_signTypedData_v3"
|
2020-11-03 21:04:57 +00:00
|
|
|
|
|
|
|
|
|
readonly property string eth_prod: "eth.prod"
|
|
|
|
|
readonly property string eth_staging: "eth.staging"
|
|
|
|
|
readonly property string eth_test: "eth.test"
|
2021-01-04 21:06:38 +00:00
|
|
|
|
|
|
|
|
|
readonly property int browserSearchEngineNone: 0
|
|
|
|
|
readonly property int browserSearchEngineGoogle: 1
|
|
|
|
|
readonly property int browserSearchEngineYahoo: 2
|
|
|
|
|
readonly property int browserSearchEngineDuckDuckGo: 3
|
2021-01-04 21:23:20 +00:00
|
|
|
|
|
|
|
|
|
readonly property int browserEthereumExplorerNone: 0
|
|
|
|
|
readonly property int browserEthereumExplorerEtherscan: 1
|
|
|
|
|
readonly property int browserEthereumExplorerEthplorer: 2
|
|
|
|
|
readonly property int browserEthereumExplorerBlockchair: 3
|
2021-02-09 14:53:54 +00:00
|
|
|
|
|
|
|
|
|
readonly property int repeatHeaderInterval: 2
|
2021-02-25 19:32:39 +00:00
|
|
|
|
|
|
|
|
|
readonly property string deepLinkPrefix: 'statusim://'
|
|
|
|
|
readonly property string joinStatusLink: 'join.status.im'
|
2021-03-09 17:59:41 +00:00
|
|
|
|
readonly property string communityLinkPrefix: 'https://join.status.im/cc/'
|
|
|
|
|
readonly property string userLinkPrefix: 'https://join.status.im/u/'
|
2021-03-10 04:59:01 +00:00
|
|
|
|
|
|
|
|
|
readonly property int maxUploadFiles: 5
|
|
|
|
|
readonly property double maxUploadFilesizeMB: 0.5
|
|
|
|
|
|
|
|
|
|
readonly property var acceptedImageExtensions: [".png", ".jpg", ".jpeg", ".svg", ".gif"]
|
|
|
|
|
readonly property var acceptedDragNDropImageExtensions: [".png", ".jpg", ".jpeg", ".heif", "tif", ".tiff"]
|
2021-03-19 20:13:12 +00:00
|
|
|
|
|
|
|
|
|
readonly property string mentionSpanTag: `<span style="color:${Style.current.mentionColor}; background-color: ${Style.current.mentionBgColor};">`
|
2021-03-23 16:34:52 +00:00
|
|
|
|
|
|
|
|
|
readonly property string ens_taken: "taken"
|
|
|
|
|
readonly property string ens_taken_custom: "taken-custom"
|
|
|
|
|
readonly property string ens_owned: "owned"
|
|
|
|
|
readonly property string ens_availabe: "available"
|
|
|
|
|
readonly property string ens_already_connected: "already-connected"
|
|
|
|
|
readonly property string ens_connected: "connected"
|
|
|
|
|
readonly property string ens_connected_dkey: "connected-different-key"
|
|
|
|
|
|
|
|
|
|
readonly property var ensState: {
|
|
|
|
|
//% "Username already taken :("
|
|
|
|
|
"taken": qsTrId("ens-username-taken"),
|
|
|
|
|
//% "Username doesn’t belong to you :("
|
|
|
|
|
"taken-custom": qsTrId("ens-custom-username-taken"),
|
|
|
|
|
//% "Continuing will connect this username with your chat key."
|
|
|
|
|
"owned": qsTrId("ens-username-owned-continue"),
|
|
|
|
|
//% "✓ Username available!"
|
2021-03-25 02:17:33 +00:00
|
|
|
|
"available": qsTrId("ens-username-available"),
|
2021-03-23 16:34:52 +00:00
|
|
|
|
//% "Username is already connected with your chat key and can be used inside Status."
|
|
|
|
|
"already-connected": qsTrId("ens-username-already-added"),
|
|
|
|
|
//% "This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`."
|
|
|
|
|
"connected": qsTrId("this-user-name-is-owned-by-you-and-connected-with-your-chat-key--continue-to-set--show-my-ens-username-in-chats--"),
|
|
|
|
|
//% "Continuing will require a transaction to connect the username with your current chat key."
|
|
|
|
|
"connected-different-key": qsTrId("ens-username-connected-with-different-key"),
|
|
|
|
|
}
|
2020-06-04 18:56:04 +00:00
|
|
|
|
}
|