mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
style and i18n adjust
This commit is contained in:
@@ -546,8 +546,10 @@
|
|||||||
"auto_login_delay_button": "Set delay seconds"
|
"auto_login_delay_button": "Set delay seconds"
|
||||||
},
|
},
|
||||||
"automation": {
|
"automation": {
|
||||||
"auto_change_status": "Auto Change Status",
|
"auto_change_status": "Auto Status & Invites",
|
||||||
"auto_state_change_tooltip": "Automatically change status when there are other people in the instance (Alone / Company)",
|
"auto_change_status_switch": "Auto Change Status",
|
||||||
|
"auto_state_change_tooltip": "Configure automatic status changes and invite request handling",
|
||||||
|
"auto_state_change_switch_tooltip": "Automatically change status when there are other people in the instance (Alone / Company)",
|
||||||
"alone_condition": "Consider alone when",
|
"alone_condition": "Consider alone when",
|
||||||
"alone": "No other user",
|
"alone": "No other user",
|
||||||
"no_friends": "No friend in instance",
|
"no_friends": "No friend in instance",
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-else-if="item.row.type === 'me-item'">
|
<template v-else-if="item.row.type === 'me-item'">
|
||||||
<div class="x-friend-item" @click="showUserDialog(currentUser.id)">
|
<div class="x-friend-item hover:bg-muted/50" @click="showUserDialog(currentUser.id)">
|
||||||
<div class="avatar" :class="userStatusClass(currentUser)">
|
<div class="avatar" :class="userStatusClass(currentUser)">
|
||||||
<img :src="userImage(currentUser)" loading="lazy" />
|
<img :src="userImage(currentUser)" loading="lazy" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
|
|
||||||
<FieldGroup class="gap-4">
|
<FieldGroup class="gap-4">
|
||||||
<SimpleSwitch
|
<SimpleSwitch
|
||||||
:label="t('view.settings.general.automation.auto_change_status')"
|
:label="t('view.settings.general.automation.auto_change_status_switch')"
|
||||||
:value="autoStateChangeEnabled"
|
:value="autoStateChangeEnabled"
|
||||||
:tooltip="t('view.settings.general.automation.auto_state_change_tooltip')"
|
:tooltip="t('view.settings.general.automation.auto_state_change_switch_tooltip')"
|
||||||
@change="setAutoStateChangeEnabled" />
|
@change="setAutoStateChangeEnabled" />
|
||||||
|
|
||||||
<Field>
|
<Field>
|
||||||
|
|||||||
Reference in New Issue
Block a user