mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 22:46:06 +02:00
Renamed "VRCX Favorite Friends" → "Favorite Groups for Filtering"
This commit is contained in:
@@ -534,7 +534,8 @@
|
|||||||
"startup_linux": "Add \"--startup\" arg to startup VRCX.desktop file to start VRCX minimized at system startup"
|
"startup_linux": "Add \"--startup\" arg to startup VRCX.desktop file to start VRCX minimized at system startup"
|
||||||
},
|
},
|
||||||
"favorites": {
|
"favorites": {
|
||||||
"header": "VRCX Favorite Friends",
|
"header": "Favorite Groups for Filtering",
|
||||||
|
"header_tooltip": "Choose which favorite groups are treated as VIP for filtering in Feed, Game Log, Notifications, and VR Overlay",
|
||||||
"group_placeholder": "Choose Groups"
|
"group_placeholder": "Choose Groups"
|
||||||
},
|
},
|
||||||
"logging": {
|
"logging": {
|
||||||
|
|||||||
@@ -109,7 +109,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="options-container">
|
<div class="options-container">
|
||||||
<span class="header">{{ t('view.settings.general.favorites.header') }}</span>
|
<span class="header inline-flex items-center"
|
||||||
|
>{{ t('view.settings.general.favorites.header') }}
|
||||||
|
<TooltipWrapper side="top" :content="t('view.settings.general.favorites.header_tooltip')">
|
||||||
|
<Info style="width: 12px; height: 12px; margin-left: 4px; vertical-align: middle; cursor: help" />
|
||||||
|
</TooltipWrapper>
|
||||||
|
</span>
|
||||||
<br />
|
<br />
|
||||||
<Select
|
<Select
|
||||||
:model-value="localFavoriteFriendsGroups"
|
:model-value="localFavoriteFriendsGroups"
|
||||||
@@ -199,6 +204,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { computed, defineAsyncComponent, ref } from 'vue';
|
import { computed, defineAsyncComponent, ref } from 'vue';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { Info } from 'lucide-vue-next';
|
||||||
import { storeToRefs } from 'pinia';
|
import { storeToRefs } from 'pinia';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
@@ -217,6 +223,7 @@
|
|||||||
import { openExternalLink } from '../../../../shared/utils';
|
import { openExternalLink } from '../../../../shared/utils';
|
||||||
|
|
||||||
import SimpleSwitch from '../SimpleSwitch.vue';
|
import SimpleSwitch from '../SimpleSwitch.vue';
|
||||||
|
import TooltipWrapper from '../../../../components/ui/tooltip/TooltipWrapper.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user