Beta #30

Merged
didirus merged 990 commits from beta into release 2026-06-20 05:06:18 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit d87f93fdd5 - Show all commits
@@ -303,7 +303,7 @@
"message": "This project is already installed"
},
"app.project.install-context.back-to-browse": {
"message": "Back to browse"
"message": "Back to discover"
},
"app.project.install-context.install-content-to-instance": {
"message": "Install content to instance"
@@ -334,7 +334,7 @@ const { formatMessage } = useVIntl()
const messages = defineMessages({
backToBrowse: {
id: 'app.project.install-context.back-to-browse',
defaultMessage: 'Back to browse',
defaultMessage: 'Back to discover',
},
installContentToInstance: {
id: 'app.project.install-context.install-content-to-instance',
@@ -415,7 +415,7 @@ const projectGalleryHref = computed(() => buildProjectHref(`/project/${route.par
const projectBrowseBackUrl = computed(() => {
const browsePath = route.query.b
if (typeof browsePath === 'string' && browsePath.startsWith('/browse/')) return browsePath
const type = data.value?.project_type ? `${data.value.project_type}s` : 'mods'
const type = data.value?.project_type ? `${data.value.project_type}` : 'mod'
return `/browse/${type}`
})