@@ -121,7 +125,8 @@
stickers: true,
pedestals: true,
prints: true,
- drones: true
+ drones: true,
+ props: true
}
};
},
@@ -203,6 +208,9 @@
case 'feature_drones_disabled':
D.drones = false;
break;
+ case 'feature_props_disabled':
+ D.props = false;
+ break;
}
});
D.authorTags = authorTags.toString();
@@ -272,6 +280,9 @@
if (!D.drones) {
tags.unshift('feature_drones_disabled');
}
+ if (!D.props) {
+ tags.unshift('feature_props_disabled');
+ }
worldRequest
.saveWorld({
id: this.worldId,
diff --git a/src/components/dialogs/WorldDialog/WorldDialog.vue b/src/components/dialogs/WorldDialog/WorldDialog.vue
index d859f45c..1823284b 100644
--- a/src/components/dialogs/WorldDialog/WorldDialog.vue
+++ b/src/components/dialogs/WorldDialog/WorldDialog.vue
@@ -267,7 +267,7 @@
{{ $t('dialog.world.actions.change_preview') }}
- {{ $t('dialog.world.actions.change_tags') }}
+ {{ $t('dialog.world.actions.change_warnings_settings_tags') }}
{{ $t('dialog.world.actions.change_allowed_video_player_domains') }}
diff --git a/src/localization/en/en.json b/src/localization/en/en.json
index 00a15c11..80765d97 100644
--- a/src/localization/en/en.json
+++ b/src/localization/en/en.json
@@ -257,7 +257,7 @@
"vrchat_credits": "VRChat Credits",
"refresh": "Click to refresh",
"logout": "Logout",
- "manage_gallery_icon": "Manage VRC+ Images",
+ "manage_gallery_inventory_icon": "Manage VRC+ Images & Inventory",
"export_friend_list": "Export Friends List",
"export_own_avatars": "Export Own Avatars",
"discord_names": "Discord Names",
@@ -713,7 +713,7 @@
"request_invite_with_message": "Request Invite With Message",
"invite_to_group": "Invite To Group",
"send_boop": "Send Boop",
- "manage_gallery_icon": "Manage VRC+ Images",
+ "manage_gallery_inventory_icon": "Manage VRC+ Images & Inventory",
"accept_friend_request": "Accept Friend Request",
"decline_friend_request": "Decline Friend Request",
"cancel_friend_request": "Cancel Friend Request",
@@ -874,7 +874,7 @@
"change_capacity": "Change Capacity",
"change_recommended_capacity": "Change Recommended Capacity",
"change_preview": "Change Youtube Preview",
- "change_tags": "Change Tags",
+ "change_warnings_settings_tags": "Change Content Warnings, Settings and Tags",
"change_image": "Change Image",
"change_allowed_video_player_domains": "Change Allowed Video Player Domains",
"download_package": "Download Unity Package",
@@ -1157,6 +1157,7 @@
"content_pedestals": "Pedestals",
"content_prints": "Prints",
"content_drones": "Drones",
+ "content_items": "Items",
"world_id": "World ID",
"instance_id": "Instance ID",
"instance_id_placeholder": "Random",
diff --git a/src/views/Profile/Profile.vue b/src/views/Profile/Profile.vue
index 1f26ee8b..cad77cd4 100644
--- a/src/views/Profile/Profile.vue
+++ b/src/views/Profile/Profile.vue
@@ -50,7 +50,7 @@
icon="el-icon-picture-outline"
style="margin-left: 0; margin-right: 5px; margin-top: 10px"
@click="showGalleryDialog()"
- >{{ t('view.profile.profile.manage_gallery_icon') }}{{ t('view.profile.profile.manage_gallery_inventory_icon') }}