mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
feat: add descriptions to settings items
This commit is contained in:
@@ -832,7 +832,7 @@
|
|||||||
"theme_mode_material3": "Material 3",
|
"theme_mode_material3": "Material 3",
|
||||||
"zoom": "Zoom",
|
"zoom": "Zoom",
|
||||||
"vrcplus_profile_icons": "VRCPlus Profile Icons",
|
"vrcplus_profile_icons": "VRCPlus Profile Icons",
|
||||||
"show_instance_id": "Show Instance Name",
|
"show_instance_id": "Show Instance ID",
|
||||||
"show_status_bar": "Show Status Bar",
|
"show_status_bar": "Show Status Bar",
|
||||||
"age_gated_instances": "Age Gated Instances",
|
"age_gated_instances": "Age Gated Instances",
|
||||||
"nicknames": "Memo Nicknames",
|
"nicknames": "Memo Nicknames",
|
||||||
@@ -856,7 +856,8 @@
|
|||||||
"table_density_standard": "Standard",
|
"table_density_standard": "Standard",
|
||||||
"table_density_comfortable": "Comfortable",
|
"table_density_comfortable": "Comfortable",
|
||||||
"table_density_compact": "Compact",
|
"table_density_compact": "Compact",
|
||||||
"table_entries_settings": "Table Entries Settings"
|
"table_entries_settings": "Table Entries Settings",
|
||||||
|
"table_entries_settings_description": "Adjust how many entries are loaded and displayed in large lists"
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"header": "Display"
|
"header": "Display"
|
||||||
@@ -898,7 +899,9 @@
|
|||||||
"user_dialog": {
|
"user_dialog": {
|
||||||
"header": "User Dialog",
|
"header": "User Dialog",
|
||||||
"vrchat_notes": "VRChat Notes",
|
"vrchat_notes": "VRChat Notes",
|
||||||
|
"vrchat_notes_description": "Shows notes stored in VRChat",
|
||||||
"vrcx_memos": "VRCX Memos",
|
"vrcx_memos": "VRCX Memos",
|
||||||
|
"vrcx_memos_description": "Shows notes saved locally in VRCX",
|
||||||
"recent_action_cooldown": "Recent Action Indicator",
|
"recent_action_cooldown": "Recent Action Indicator",
|
||||||
"recent_action_cooldown_description": "Show a clock icon on invite/request actions that were recently performed",
|
"recent_action_cooldown_description": "Show a clock icon on invite/request actions that were recently performed",
|
||||||
"recent_action_cooldown_minutes": "Cooldown (minutes)"
|
"recent_action_cooldown_minutes": "Cooldown (minutes)"
|
||||||
@@ -1082,6 +1085,7 @@
|
|||||||
"remote_database": {
|
"remote_database": {
|
||||||
"header": "Remote Avatar Database",
|
"header": "Remote Avatar Database",
|
||||||
"enable": "Enable",
|
"enable": "Enable",
|
||||||
|
"enable_description": "Enables fetching avatar data from a remote database",
|
||||||
"avatar_database_provider": "Avatar Database Provider"
|
"avatar_database_provider": "Avatar Database Provider"
|
||||||
},
|
},
|
||||||
"youtube_api": {
|
"youtube_api": {
|
||||||
|
|||||||
@@ -127,7 +127,9 @@
|
|||||||
|
|
||||||
<!-- Remote Database -->
|
<!-- Remote Database -->
|
||||||
<SettingsGroup :title="t('view.settings.advanced.advanced.remote_database.header')">
|
<SettingsGroup :title="t('view.settings.advanced.advanced.remote_database.header')">
|
||||||
<SettingsItem :label="t('view.settings.advanced.advanced.remote_database.enable')">
|
<SettingsItem
|
||||||
|
:label="t('view.settings.advanced.advanced.remote_database.enable')"
|
||||||
|
:description="t('view.settings.advanced.advanced.remote_database.enable_description')">
|
||||||
<Switch
|
<Switch
|
||||||
:model-value="avatarRemoteDatabase"
|
:model-value="avatarRemoteDatabase"
|
||||||
@update:modelValue="setAvatarRemoteDatabase(!avatarRemoteDatabase)" />
|
@update:modelValue="setAvatarRemoteDatabase(!avatarRemoteDatabase)" />
|
||||||
|
|||||||
@@ -240,7 +240,9 @@
|
|||||||
</Popover>
|
</Popover>
|
||||||
</SettingsItem>
|
</SettingsItem>
|
||||||
|
|
||||||
<SettingsItem :label="t('view.settings.appearance.appearance.table_entries_settings')">
|
<SettingsItem
|
||||||
|
:label="t('view.settings.appearance.appearance.table_entries_settings')"
|
||||||
|
:description="t('view.settings.appearance.appearance.table_entries_settings_description')">
|
||||||
<Button size="sm" variant="outline" @click="showTableLimitsDialog">{{
|
<Button size="sm" variant="outline" @click="showTableLimitsDialog">{{
|
||||||
t('view.settings.appearance.appearance.table_entries_settings')
|
t('view.settings.appearance.appearance.table_entries_settings')
|
||||||
}}</Button>
|
}}</Button>
|
||||||
@@ -275,11 +277,15 @@
|
|||||||
</SettingsGroup>
|
</SettingsGroup>
|
||||||
|
|
||||||
<SettingsGroup :title="t('view.settings.appearance.user_dialog.header')">
|
<SettingsGroup :title="t('view.settings.appearance.user_dialog.header')">
|
||||||
<SettingsItem :label="t('view.settings.appearance.user_dialog.vrchat_notes')">
|
<SettingsItem
|
||||||
|
:label="t('view.settings.appearance.user_dialog.vrchat_notes')"
|
||||||
|
:description="t('view.settings.appearance.user_dialog.vrchat_notes_description')">
|
||||||
<Switch :model-value="!hideUserNotes" @update:modelValue="setHideUserNotes" />
|
<Switch :model-value="!hideUserNotes" @update:modelValue="setHideUserNotes" />
|
||||||
</SettingsItem>
|
</SettingsItem>
|
||||||
|
|
||||||
<SettingsItem :label="t('view.settings.appearance.user_dialog.vrcx_memos')">
|
<SettingsItem
|
||||||
|
:label="t('view.settings.appearance.user_dialog.vrcx_memos')"
|
||||||
|
:description="t('view.settings.appearance.user_dialog.vrcx_memos_description')">
|
||||||
<Switch :model-value="!hideUserMemos" @update:modelValue="setHideUserMemos" />
|
<Switch :model-value="!hideUserMemos" @update:modelValue="setHideUserMemos" />
|
||||||
</SettingsItem>
|
</SettingsItem>
|
||||||
</SettingsGroup>
|
</SettingsGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user