-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathStringSubKeys.kt
More file actions
70 lines (67 loc) · 4.86 KB
/
StringSubKeys.kt
File metadata and controls
70 lines (67 loc) · 4.86 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package org.session.libsession.utilities
typealias StringSubKey = String
// String substitution keys for use with the Phrase library.
// Note: The substitution will be to {app_name} etc. in the strings - but do NOT include the curly braces in these keys!
object StringSubstitutionConstants {
const val ACCOUNT_ID_KEY: StringSubKey = "account_id"
const val APP_NAME_KEY: StringSubKey = "app_name"
const val AUTHOR_KEY: StringSubKey = "author"
const val COMMUNITY_NAME_KEY: StringSubKey = "community_name"
const val CONVERSATION_COUNT_KEY: StringSubKey = "conversation_count"
const val CONVERSATION_NAME_KEY: StringSubKey = "conversation_name"
const val COUNT_KEY: StringSubKey = "count"
const val DATE_KEY: StringSubKey = "date"
const val DATE_TIME_KEY: StringSubKey = "date_time"
const val DISAPPEARING_MESSAGES_TYPE_KEY: StringSubKey = "disappearing_messages_type"
const val DOWNLOAD_URL_KEY: StringSubKey = "session_download_url" // Used to invite people to download Session
const val EMOJI_KEY: StringSubKey = "emoji"
const val ETHEREUM_KEY: StringSubKey = "ethereum"
const val FILE_TYPE_KEY: StringSubKey = "file_type"
const val GROUP_NAME_KEY: StringSubKey = "group_name"
const val ICON_KEY: StringSubKey = "icon"
const val MEMBERS_KEY: StringSubKey = "members"
const val MESSAGE_COUNT_KEY: StringSubKey = "message_count"
const val MESSAGE_SNIPPET_KEY: StringSubKey = "message_snippet"
const val NAME_KEY: StringSubKey = "name"
const val NETWORK_NAME_KEY: StringSubKey = "network_name"
const val OTHER_NAME_KEY: StringSubKey = "other_name"
const val PRICE_DATA_POWERED_BY_KEY: StringSubKey = "price_data_powered_by"
const val QUERY_KEY: StringSubKey = "query"
const val RELATIVE_TIME_KEY: StringSubKey = "relative_time"
const val SECONDS_KEY: StringSubKey = "seconds"
const val SESSION_DOWNLOAD_URL_KEY: StringSubKey = "session_download_url"
const val STAKING_REWARD_POOL_KEY: StringSubKey = "staking_reward_pool"
const val TIME_KEY: StringSubKey = "time"
const val TIME_LARGE_KEY: StringSubKey = "time_large"
const val TIME_SMALL_KEY: StringSubKey = "time_small"
const val TOKEN_BONUS_TITLE_KEY: StringSubKey = "token_bonus_title"
const val TOKEN_NAME_LONG_KEY: StringSubKey = "token_name_long"
const val TOKEN_NAME_LONG_PLURAL_KEY: StringSubKey = "token_name_long_plural"
const val TOKEN_NAME_SHORT_KEY: StringSubKey = "token_name_short"
const val TOTAL_COUNT_KEY: StringSubKey = "total_count"
const val URL_KEY: StringSubKey = "url"
const val VALUE_KEY: StringSubKey = "value"
const val VERSION_KEY: StringSubKey = "version"
const val LIMIT_KEY: StringSubKey = "limit"
const val STORE_VARIANT_KEY: StringSubKey = "storevariant"
const val BUILD_VARIANT_KEY: StringSubKey = "build_variant"
const val APP_PRO_KEY: StringSubKey = "app_pro"
const val PRO_KEY: StringSubKey = "pro"
const val CURRENT_PLAN_LENGTH_KEY: StringSubKey = "current_plan_length"
const val SELECTED_PLAN_LENGTH_KEY: StringSubKey = "selected_plan_length"
const val SELECTED_PLAN_LENGTH_SINGULAR_KEY: StringSubKey = "selected_plan_length_singular"
const val PLATFORM_KEY: StringSubKey = "platform"
const val PLATFORM_STORE_KEY: StringSubKey = "platform_store"
const val PLATFORM_STORE2_KEY: StringSubKey = "platform_store_other"
const val PLATFORM_ACCOUNT_KEY: StringSubKey = "platform_account"
const val MONTHLY_PRICE_KEY: StringSubKey = "monthly_price"
const val PRICE_KEY: StringSubKey = "price"
const val PERCENT_KEY: StringSubKey = "percent"
const val DEVICE_TYPE_KEY: StringSubKey = "device_type"
const val SESSION_FOUNDATION_KEY: StringSubKey = "session_foundation"
const val ACTION_TYPE_KEY: StringSubKey = "action_type"
const val ACTIVATION_TYPE_KEY: StringSubKey = "activation_type"
const val ENTITY_KEY: StringSubKey = "entity"
const val DONATE_APPEAL_KEY: StringSubKey = "donate_appeal_name"
const val ENTITY_STF_SHORT_KEY: StringSubKey = "entity_stf_short"
}